[114862] trunk/dports

ryandesign at macports.org ryandesign at macports.org
Wed Dec 18 00:12:35 PST 2013


Revision: 114862
          https://trac.macports.org/changeset/114862
Author:   ryandesign at macports.org
Date:     2013-12-18 00:12:35 -0800 (Wed, 18 Dec 2013)
Log Message:
-----------
use eq instead of == for string comparisons

Modified Paths:
--------------
    trunk/dports/devel/webkit-sharp/Portfile
    trunk/dports/gnome/devhelp/Portfile
    trunk/dports/gnome/empathy/Portfile
    trunk/dports/gnome/epiphany/Portfile
    trunk/dports/gnome/gnome-online-accounts/Portfile
    trunk/dports/gnome/gnucash/Portfile
    trunk/dports/gnome/gnucash-devel/Portfile
    trunk/dports/gnome/liferea/Portfile
    trunk/dports/gnome/seed/Portfile
    trunk/dports/gnome/yelp/Portfile
    trunk/dports/gnome/zenity/Portfile
    trunk/dports/graphics/birdfont/Portfile
    trunk/dports/graphics/gimp2/Portfile
    trunk/dports/graphics/gimp2-devel/Portfile
    trunk/dports/graphics/gimp3-devel/Portfile
    trunk/dports/mail/claws-mail/Portfile
    trunk/dports/multimedia/gtkpod/Portfile
    trunk/dports/python/py26-webkitgtk/Portfile
    trunk/dports/python/py27-webkitgtk/Portfile
    trunk/dports/science/root/Portfile
    trunk/dports/textproc/bibledit/Portfile
    trunk/dports/www/midori/Portfile
    trunk/dports/www/uzbl/Portfile
    trunk/dports/www/webkit-gtk/Portfile
    trunk/dports/www/webkit-gtk-2.0/Portfile

Modified: trunk/dports/devel/webkit-sharp/Portfile
===================================================================
--- trunk/dports/devel/webkit-sharp/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/devel/webkit-sharp/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -43,7 +43,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/gnome/devhelp/Portfile
===================================================================
--- trunk/dports/gnome/devhelp/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/devhelp/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -49,7 +49,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} 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
     }

Modified: trunk/dports/gnome/empathy/Portfile
===================================================================
--- trunk/dports/gnome/empathy/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/empathy/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -77,7 +77,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} 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
     }

Modified: trunk/dports/gnome/epiphany/Portfile
===================================================================
--- trunk/dports/gnome/epiphany/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/epiphany/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -62,7 +62,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} 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
     }

Modified: trunk/dports/gnome/gnome-online-accounts/Portfile
===================================================================
--- trunk/dports/gnome/gnome-online-accounts/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/gnome-online-accounts/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -51,7 +51,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} 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
     }

Modified: trunk/dports/gnome/gnucash/Portfile
===================================================================
--- trunk/dports/gnome/gnucash/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/gnucash/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -72,7 +72,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/gnome/gnucash-devel/Portfile
===================================================================
--- trunk/dports/gnome/gnucash-devel/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/gnucash-devel/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -74,7 +74,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/gnome/liferea/Portfile
===================================================================
--- trunk/dports/gnome/liferea/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/liferea/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -48,7 +48,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/gnome/seed/Portfile
===================================================================
--- trunk/dports/gnome/seed/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/seed/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -52,7 +52,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} 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
     }

Modified: trunk/dports/gnome/yelp/Portfile
===================================================================
--- trunk/dports/gnome/yelp/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/yelp/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -73,7 +73,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} 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
     }

Modified: trunk/dports/gnome/zenity/Portfile
===================================================================
--- trunk/dports/gnome/zenity/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/gnome/zenity/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -52,7 +52,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} 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
     }

Modified: trunk/dports/graphics/birdfont/Portfile
===================================================================
--- trunk/dports/graphics/birdfont/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/graphics/birdfont/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -72,7 +72,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/graphics/gimp2/Portfile
===================================================================
--- trunk/dports/graphics/gimp2/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/graphics/gimp2/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -207,7 +207,7 @@
 variant help_browser description {Enable Gimp help browser} {
     configure.args-delete   --without-webkit
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
             depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     } else {
             depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk

Modified: trunk/dports/graphics/gimp2-devel/Portfile
===================================================================
--- trunk/dports/graphics/gimp2-devel/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/graphics/gimp2-devel/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -200,7 +200,7 @@
 variant help_browser description {Enable Gimp help browser} {
     configure.args-delete   --without-webkit
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
             depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     } else {
             depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk

Modified: trunk/dports/graphics/gimp3-devel/Portfile
===================================================================
--- trunk/dports/graphics/gimp3-devel/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/graphics/gimp3-devel/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -202,7 +202,7 @@
 variant help_browser description {Enable Gimp help browser} {
     configure.args-delete   --without-webkit
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
             depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     } else {
             depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk

Modified: trunk/dports/mail/claws-mail/Portfile
===================================================================
--- trunk/dports/mail/claws-mail/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/mail/claws-mail/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -59,7 +59,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/multimedia/gtkpod/Portfile
===================================================================
--- trunk/dports/multimedia/gtkpod/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/multimedia/gtkpod/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -45,7 +45,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/python/py26-webkitgtk/Portfile
===================================================================
--- trunk/dports/python/py26-webkitgtk/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/python/py26-webkitgtk/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -39,7 +39,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/python/py27-webkitgtk/Portfile
===================================================================
--- trunk/dports/python/py27-webkitgtk/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/python/py27-webkitgtk/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -38,7 +38,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/science/root/Portfile
===================================================================
--- trunk/dports/science/root/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/science/root/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -125,7 +125,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libc++"} {
+    if {${cxx_stdlib} eq "libc++"} {
         configure.args-delete --disable-c++11
         configure.args-append --enable-c++11
     }

Modified: trunk/dports/textproc/bibledit/Portfile
===================================================================
--- trunk/dports/textproc/bibledit/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/textproc/bibledit/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -50,7 +50,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/www/midori/Portfile
===================================================================
--- trunk/dports/www/midori/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/www/midori/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -51,7 +51,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/www/uzbl/Portfile
===================================================================
--- trunk/dports/www/uzbl/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/www/uzbl/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -48,7 +48,7 @@
         set cxx_stdlib libstdc++
     }
 
-    if {${cxx_stdlib} == "libstdc++"} {
+    if {${cxx_stdlib} eq "libstdc++"} {
        depends_lib-delete path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk
        depends_lib-append path:lib/pkgconfig/webkit-1.0.pc:webkit-gtk-2.0
     }

Modified: trunk/dports/www/webkit-gtk/Portfile
===================================================================
--- trunk/dports/www/webkit-gtk/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/www/webkit-gtk/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -98,7 +98,7 @@
     }
 
     pre-configure {
-        if {${cxx_stdlib} == "libstdc++"} {
+        if {${cxx_stdlib} eq "libstdc++"} {
             ui_error "${subport} is not supported for this installation of MacPorts.  It requires libc++ be selected as your C++ runtime.  Please use ${subport}-2.0 instead"
             error "unsupported configuration"
         }
@@ -136,7 +136,7 @@
     }
 }
 
-if {${name} == ${subport}} {
+if {${name} eq ${subport}} {
     conflicts   webkit-gtk-2.0
     depends_lib-append      port:gtk2
     configure.args-append   --with-gtk=2.0
@@ -262,21 +262,21 @@
     }
 
     if {[string match "*10.5*" ${configure.sdkroot}] ||
-        (${os.major} == 9 && ${configure.sdkroot} == "")} {
+        (${os.major} == 9 && ${configure.sdkroot} eq "")} {
 
         # https://trac.macports.org/ticket/37418
         configure.cppflags-append -D__MAC_OS_X_VERSION_MAX_ALLOWED=1050
     }
 
     if {[string match "*10.4*" ${configure.sdkroot}] ||
-        (${os.major} == 8 && ${configure.sdkroot} == "")} {
+        (${os.major} == 8 && ${configure.sdkroot} eq "")} {
 
         # https://trac.macports.org/ticket/37828
         configure.cppflags-append -D__MAC_OS_X_VERSION_MAX_ALLOWED=1040
     }
 
-    if {$macosx_deployment_target == "10.4" ||
-        (${os.major} == 8 && $macosx_deployment_target == "")} {
+    if {$macosx_deployment_target eq "10.4" ||
+        (${os.major} == 8 && $macosx_deployment_target eq "")} {
 
         # https://trac.macports.org/ticket/37828
         configure.cppflags-append -D__MAC_OS_X_VERSION_MIN_REQUIRED=1040

Modified: trunk/dports/www/webkit-gtk-2.0/Portfile
===================================================================
--- trunk/dports/www/webkit-gtk-2.0/Portfile	2013-12-18 06:56:01 UTC (rev 114861)
+++ trunk/dports/www/webkit-gtk-2.0/Portfile	2013-12-18 08:12:35 UTC (rev 114862)
@@ -113,7 +113,7 @@
     }
 }
 
-if {${name} == ${subport}} {
+if {${name} eq ${subport}} {
     conflicts   webkit-gtk
 
     depends_lib-append      port:gtk2
@@ -224,21 +224,21 @@
     }
 
     if {[string match "*10.5*" ${configure.sdkroot}] ||
-        (${os.major} == 9 && ${configure.sdkroot} == "")} {
+        (${os.major} == 9 && ${configure.sdkroot} eq "")} {
 
         # https://trac.macports.org/ticket/37418
         configure.cppflags-append -D__MAC_OS_X_VERSION_MAX_ALLOWED=1050
     }
 
     if {[string match "*10.4*" ${configure.sdkroot}] ||
-        (${os.major} == 8 && ${configure.sdkroot} == "")} {
+        (${os.major} == 8 && ${configure.sdkroot} eq "")} {
 
         # https://trac.macports.org/ticket/37828
         configure.cppflags-append -D__MAC_OS_X_VERSION_MAX_ALLOWED=1040
     }
 
-    if {$macosx_deployment_target == "10.4" ||
-        (${os.major} == 8 && $macosx_deployment_target == "")} {
+    if {$macosx_deployment_target eq "10.4" ||
+        (${os.major} == 8 && $macosx_deployment_target eq "")} {
 
         # https://trac.macports.org/ticket/37828
         configure.cppflags-append -D__MAC_OS_X_VERSION_MIN_REQUIRED=1040
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20131218/b1166063/attachment-0001.html>


More information about the macports-changes mailing list