[153465] trunk/dports/gnome/gnome3-apps/Portfile
devans at macports.org
devans at macports.org
Sat Oct 1 23:26:40 CEST 2016
Revision: 153465
https://trac.macports.org/changeset/153465
Author: devans at macports.org
Date: 2016-10-01 14:26:39 -0700 (Sat, 01 Oct 2016)
Log Message:
-----------
gnome3-apps: skip ports that require libc++ to build if default C++ stdlib is not libc++.
Modified Paths:
--------------
trunk/dports/gnome/gnome3-apps/Portfile
Modified: trunk/dports/gnome/gnome3-apps/Portfile
===================================================================
--- trunk/dports/gnome/gnome3-apps/Portfile 2016-10-01 19:59:50 UTC (rev 153464)
+++ trunk/dports/gnome/gnome3-apps/Portfile 2016-10-01 21:26:39 UTC (rev 153465)
@@ -68,6 +68,8 @@
# module set and have been ported to MacPorts but
# are currently broken and/or need to be updated
#
+# none at this point
+#
depends_lib port:dconf-editor \
port:devhelp \
@@ -78,11 +80,20 @@
port:gnome-chess \
port:gnome-devel-docs \
port:gnome-dictionary \
- port:gnome-sudoku \
port:polari \
port:rygel \
port:seahorse
+# ports that require libc++ to build
+# skip if default C++ stdlib is not libc++
+
+platform darwin {
+ if {${configure.cxx_stdlib} eq "libc++"} {
+ depends_lib-append \
+ port:gnome-sudoku
+ }
+}
+
use_configure no
build { }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macports.org/pipermail/macports-changes/attachments/20161001/502ec71f/attachment-0002.html>
More information about the macports-changes
mailing list