Modified: users/devans/GNOME-3/unstable/dports/gnome/devhelp/Portfile (116643 => 116644)
--- users/devans/GNOME-3/unstable/dports/gnome/devhelp/Portfile 2014-02-01 00:24:32 UTC (rev 116643)
+++ users/devans/GNOME-3/unstable/dports/gnome/devhelp/Portfile 2014-02-01 00:32:35 UTC (rev 116644)
@@ -17,7 +17,7 @@
maintainers devans openmaintainer
categories gnome
platforms darwin
-homepage http://live.gnome.org/Apps/Devhelp
+homepage https://wiki.gnome.org/Apps/Devhelp
master_sites gnome:sources/${name}/${branch}/
use_xz yes
@@ -35,21 +35,22 @@
port:gtk3 \
path:lib/pkgconfig/webkitgtk-3.0.pc:webkit-gtk3
+# TODO: Check ${configure.cxx_stdlib} directly once MacPorts 2.3 is released
platform darwin {
- set cxx_stdlib {}
+ set cxxstdlib {}
if {[info exists configure.cxx_stdlib] &&
${configure.cxx_stdlib} ne {} &&
[string match *clang* ${configure.cxx}]} {
- set cxx_stdlib ${configure.cxx_stdlib}
+ set cxxstdlib ${configure.cxx_stdlib}
} elseif {[string match *clang* ${configure.cxx}] &&
${os.major} >= 13} {
- set cxx_stdlib libc++
+ set cxxstdlib libc++
} else {
- set cxx_stdlib libstdc++
+ set cxxstdlib libstdc++
}
- if {${cxx_stdlib} eq "libstdc++"} {
+ if {${cxxstdlib} eq "libstdc++"} {
depends_lib-delete path:lib/pkgconfig/webkitgtk-3.0.pc:webkit-gtk3
depends_lib-append path:lib/pkgconfig/webkitgtk-3.0.pc:webkit-gtk3-2.0
}