mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
- fixes from https://github.com/macos-powerpc/powerpc-ports/commit/53f3a65d731129441f09a8ddf41fde623273da82
80 lines
2.7 KiB
Tcl
80 lines
2.7 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup boost 1.0
|
|
|
|
boost.version 1.76
|
|
|
|
name agave
|
|
version 0.4.7
|
|
revision 3
|
|
|
|
license GPL-2+
|
|
categories graphics gnome
|
|
platforms {darwin < 13}
|
|
maintainers nomaintainer
|
|
|
|
description Generate a variety of colorschemes from a single starting color.
|
|
long_description \
|
|
Agave is a very simple application for the GNOME desktop that allows you \
|
|
to generate a variety of colorschemes from a single starting color. It is \
|
|
free software licensed under the open-source GPL License.
|
|
homepage https://web.archive.org/web/20170308183221/http://home.gna.org/colorscheme
|
|
master_sites https://web.archive.org/web/20170225200236/http://download.gna.org/colorscheme/releases/
|
|
checksums rmd160 a7d0294ab0ab318f1a654c48059659a50a32283a \
|
|
sha256 ee19f62287d03dfbc41bb2dd86683eb13e3f9664135f4108e9c93e68994402f2 \
|
|
size 500407
|
|
use_bzip2 yes
|
|
|
|
depends_build-append \
|
|
port:gnome-doc-utils \
|
|
port:intltool \
|
|
path:bin/pkg-config:pkgconfig
|
|
|
|
depends_lib-append \
|
|
port:cppunit \
|
|
port:gconfmm \
|
|
port:gtkmm \
|
|
port:libglademm \
|
|
port:libgnomeui \
|
|
port:rarian
|
|
|
|
depends_run-append \
|
|
port:desktop-file-utils
|
|
|
|
patchfiles src_core_compat-round.cc.patch
|
|
|
|
compiler.cxx_standard 2011
|
|
|
|
# TODO: Fix buggy C++ code that clang complains about
|
|
compiler.blacklist *clang*
|
|
|
|
# autoreconf to reconfigure with our intltool.m4
|
|
pre-configure {
|
|
file mkdir ${worksrcpath}/m4
|
|
}
|
|
|
|
use_autoreconf yes
|
|
autoreconf.args -fvi
|
|
|
|
configure.args-append \
|
|
--disable-scrollkeeper \
|
|
--disable-schemas-install
|
|
|
|
# palette.cc: error: ISO C++17 does not allow dynamic exception specifications
|
|
# gcs-schemebox.cc:48:33: error: cannot call constructor 'gcs::Widgets::SchemeBox::SchemeBox' directly [-fpermissive]
|
|
configure.cxxflags-append \
|
|
-std=c++11 -fpermissive
|
|
|
|
post-activate {
|
|
system "scrollkeeper-update"
|
|
system "export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` && \
|
|
gconftool-2 --makefile-install-rule ${prefix}/etc/gconf/schemas/*.schemas"
|
|
system "${prefix}/bin/update-desktop-database ${prefix}/share/applications"
|
|
system "${prefix}/bin/gtk-update-icon-cache-2.0 -f -t ${prefix}/share/icons/hicolor"
|
|
}
|
|
|
|
livecheck.type regex
|
|
livecheck.url ${master_sites}
|
|
livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
|