[134253] trunk/dports/gnome/gnome-control-center

devans at macports.org devans at macports.org
Fri Mar 20 09:49:38 PDT 2015


Revision: 134253
          https://trac.macports.org/changeset/134253
Author:   devans at macports.org
Date:     2015-03-20 09:49:38 -0700 (Fri, 20 Mar 2015)
Log Message:
-----------
gnome-control-center: update to version 3.14.4, reconfigure using autogen.sh for intltool 0.51 conpatibility.

Modified Paths:
--------------
    trunk/dports/gnome/gnome-control-center/Portfile

Added Paths:
-----------
    trunk/dports/gnome/gnome-control-center/files/autogen.sh

Property Changed:
----------------
    trunk/dports/gnome/gnome-control-center/


Property changes on: trunk/dports/gnome/gnome-control-center
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/mld-qt-481/dports/gnome/gnome-control-center:92720,92813,92891,92963,93522,93556,93699,93743,93771-93773,93806,93817-93818,93856
/users/devans/GNOME-3/stable/dports/gnome/gnome-control-center:108269-133825
/users/devans/GNOME-3/unstable/dports/gnome/gnome-control-center:116416-118152,119539-125802
/users/rmstonecipher/gnome/gnome-control-center:102363-103172
   + /branches/mld-qt-481/dports/gnome/gnome-control-center:92720,92813,92891,92963,93522,93556,93699,93743,93771-93773,93806,93817-93818,93856
/users/devans/GNOME-3/stable/dports/gnome/gnome-control-center:108269-134252
/users/devans/GNOME-3/unstable/dports/gnome/gnome-control-center:116416-118152,119539-125802
/users/rmstonecipher/gnome/gnome-control-center:102363-103172

Modified: trunk/dports/gnome/gnome-control-center/Portfile
===================================================================
--- trunk/dports/gnome/gnome-control-center/Portfile	2015-03-20 16:35:23 UTC (rev 134252)
+++ trunk/dports/gnome/gnome-control-center/Portfile	2015-03-20 16:49:38 UTC (rev 134253)
@@ -8,7 +8,7 @@
 if {${os.platform} eq "darwin" && ${os.major} >= 13} {
 
     set mavericks_or_better yes
-    version 3.14.3
+    version 3.14.4
 
 } else {
 
@@ -33,13 +33,16 @@
 
 if {$mavericks_or_better} {
 
-    checksums       rmd160  3c9da13a74d489b1a4e60678adcd7ae26c631d08 \
-                    sha256  21f49787cf708e591f53b6d2a6e1c059037a62726f23b9513b0d116996066e15
+    checksums       rmd160  4c08181b0e3efb522ed3d0ca92fda02e9acbfa49 \
+                    sha256  7fd9a38dce30658a4f80e1fe18b732e362ca64d4b4f3cdcc4a83828cbd69b384
 
     depends_build   port:pkgconfig \
                     port:intltool \
                     port:libxslt \
                     port:gnome-common \
+                    port:autoconf \
+                    port:automake \
+                    port:libtool \
                     port:gtk-doc
 
     depends_lib     port:desktop-file-utils \
@@ -72,12 +75,13 @@
                     patch-disable-shell-test-hostname.diff \
                     patch-panels-user-accounts.diff
 
-    pre-configure {
-        copy -force ${prefix}/share/aclocal/intltool.m4 ${worksrcpath}/m4
+# reconfigure using autogen.sh for intltool 0.51 conpatibility
+
+    post-patch {
+        xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath}
     }
 
-    use_autoreconf  yes
-    autoreconf.args -fvi
+    configure.cmd       ./autogen.sh
 
     configure.args  --x-includes=${prefix}/include \
                     --x-libraries=${prefix}/lib \
@@ -96,6 +100,9 @@
                     port:intltool \
                     port:libxslt \
                     port:gnome-common \
+                    port:autoconf \
+                    port:automake \
+                    port:libtool \
                     port:gtk-doc
 
     depends_lib     port:desktop-file-utils \
@@ -136,12 +143,13 @@
                     patch-disable-power-panel.diff \
                     patch-panels-user-accounts-3.8.6.diff
 
-    pre-configure {
-        copy -force ${prefix}/share/aclocal/intltool.m4 ${worksrcpath}/m4
+# reconfigure using autogen.sh for intltool 0.51 conpatibility
+
+    post-patch {
+        xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath}
     }
 
-    use_autoreconf  yes
-    autoreconf.args -fvi
+    configure.cmd       ./autogen.sh
 
     configure.args  --x-includes=${prefix}/include \
                     --x-libraries=${prefix}/lib \

Copied: trunk/dports/gnome/gnome-control-center/files/autogen.sh (from rev 134252, users/devans/GNOME-3/stable/dports/gnome/gnome-control-center/files/autogen.sh)
===================================================================
--- trunk/dports/gnome/gnome-control-center/files/autogen.sh	                        (rev 0)
+++ trunk/dports/gnome/gnome-control-center/files/autogen.sh	2015-03-20 16:49:38 UTC (rev 134253)
@@ -0,0 +1,28 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+PKG_NAME="control-center"
+ACLOCAL_FLAGS="-I libgd $ACLOCAL_FLAGS"
+
+(test -f $srcdir/configure.ac \
+  && test -f $srcdir/autogen.sh \
+  && test -d $srcdir/shell) || {
+    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+    echo " top-level $PKG_NAME directory"
+    exit 1
+}
+
+DIE=0
+
+rm -f .using-gnome-libs-package
+
+if ! which gnome-autogen.sh ; then
+  echo "You need to install the gnome-common module and make"
+  echo "sure the gnome-autogen.sh script is in your \$PATH."
+  exit 1
+fi
+
+. gnome-autogen.sh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150320/e0dcd49a/attachment-0001.html>


More information about the macports-changes mailing list