[135357] users/devans/GNOME-3/stable/dports/gnome/baobab

devans at macports.org devans at macports.org
Thu Apr 23 08:22:02 PDT 2015


Revision: 135357
          https://trac.macports.org/changeset/135357
Author:   devans at macports.org
Date:     2015-04-23 08:22:01 -0700 (Thu, 23 Apr 2015)
Log Message:
-----------
GNOME-3/stable: baobab, update to version 3.16.1, reconfigure using upstream autogen.sh for intltool 0.51 compatibility.

Modified Paths:
--------------
    users/devans/GNOME-3/stable/dports/gnome/baobab/Portfile

Added Paths:
-----------
    users/devans/GNOME-3/stable/dports/gnome/baobab/files/autogen.sh

Removed Paths:
-------------
    users/devans/GNOME-3/stable/dports/gnome/baobab/files/patch-configure.ac.diff

Property Changed:
----------------
    users/devans/GNOME-3/stable/dports/gnome/baobab/


Property changes on: users/devans/GNOME-3/stable/dports/gnome/baobab
___________________________________________________________________
Modified: svn:mergeinfo
   - /branches/mld-qt-481/dports/gnome/baobab:92720,92813,92891,92963,93522,93556,93699,93743,93771-93773,93806,93817-93818,93856
/trunk/dports/gnome/baobab:118272-122658
/users/devans/GNOME-3/unstable/dports/gnome/baobab:120511-125772
/users/rmstonecipher/gnome/baobab:102363-103172
   + /branches/mld-qt-481/dports/gnome/baobab:92720,92813,92891,92963,93522,93556,93699,93743,93771-93773,93806,93817-93818,93856
/trunk/dports/gnome/baobab:118272-122658
/users/devans/GNOME-3/unstable/dports/gnome/baobab:120511-125772,133197-134515
/users/rmstonecipher/gnome/baobab:102363-103172

Modified: users/devans/GNOME-3/stable/dports/gnome/baobab/Portfile
===================================================================
--- users/devans/GNOME-3/stable/dports/gnome/baobab/Portfile	2015-04-23 15:21:59 UTC (rev 135356)
+++ users/devans/GNOME-3/stable/dports/gnome/baobab/Portfile	2015-04-23 15:22:01 UTC (rev 135357)
@@ -4,7 +4,7 @@
 PortSystem          1.0
 
 name                baobab
-version             3.14.1
+version             3.16.1
 license             GPL-2 GFDL-1.1
 set branch          [join [lrange [split ${version} .] 0 1] .]
 description         GNOME disk usage analyzer.
@@ -23,13 +23,16 @@
 
 use_xz              yes
 
-checksums           rmd160  b6e4331da50d992373959f6af1018e553566c0df \
-                    sha256  76966521858f3c46fedbf38deb8f9847737ef0bc3c5f330c51d1feb68a711d17
+checksums           rmd160  ad10efb65e17229abbb3f001693eb4e604688b80 \
+                    sha256  1fe40433df3adda0bcc4d0a6edc2bc2501888798d7e8336ad51d443c9a1fcef2
 
 depends_build       port:pkgconfig \
                     port:intltool \
                     port:itstool \
-                    port:yelp-tools
+                    port:yelp-tools \
+                    port:autoconf \
+                    port:automake \
+                    port:libtool
 
 depends_lib         port:desktop-file-utils \
                     port:gtk3 \
@@ -38,17 +41,15 @@
 depends_run         port:gnome-settings-daemon \
                     port:yelp
 
-patchfiles          patch-configure.ac.diff \
-                    patch-warning-flags.diff
+patchfiles          patch-warning-flags.diff
 
-# update m4/intltool.m4 and autoreconf
+# reconfigure using upstream autogen.sh for intltool 0.51 compatibility
 
-pre-configure {
-    copy -force ${prefix}/share/aclocal/intltool.m4 ${worksrcpath}/m4
+post-patch {
+    xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath}
 }
 
-use_autoreconf      yes
-autoreconf.args     -fvi
+configure.cmd       ./autogen.sh
 
 configure.args      --disable-schemas-compile \
                     --disable-silent-rules

Added: users/devans/GNOME-3/stable/dports/gnome/baobab/files/autogen.sh
===================================================================
--- users/devans/GNOME-3/stable/dports/gnome/baobab/files/autogen.sh	                        (rev 0)
+++ users/devans/GNOME-3/stable/dports/gnome/baobab/files/autogen.sh	2015-04-23 15:22:01 UTC (rev 135357)
@@ -0,0 +1,34 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+test -n "$srcdir" || srcdir=`dirname "$0"`
+test -n "$srcdir" || srcdir=.
+
+OLDDIR=`pwd`
+cd $srcdir
+
+AUTORECONF=`which autoreconf`
+if test -z $AUTORECONF; then
+    echo "*** No autoreconf found, please install it ***"
+    exit 1
+fi
+
+INTLTOOLIZE=`which intltoolize`
+if test -z $INTLTOOLIZE; then
+    echo "*** No intltoolize found, please install the intltool package ***"
+    exit 1
+fi
+
+GNOMEDOC=`which yelp-build`
+if test -z $GNOMEDOC; then
+    echo "*** The tools to build the documentation are not found,"
+    echo "    please install the yelp-tools package ***"
+    exit 1
+fi
+
+autopoint --force || exit $?
+AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install --verbose
+
+cd $OLDDIR
+test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
+

Deleted: users/devans/GNOME-3/stable/dports/gnome/baobab/files/patch-configure.ac.diff
===================================================================
--- users/devans/GNOME-3/stable/dports/gnome/baobab/files/patch-configure.ac.diff	2015-04-23 15:21:59 UTC (rev 135356)
+++ users/devans/GNOME-3/stable/dports/gnome/baobab/files/patch-configure.ac.diff	2015-04-23 15:22:01 UTC (rev 135357)
@@ -1,14 +0,0 @@
---- configure.ac.orig	2014-03-28 07:40:20.000000000 -0700
-+++ configure.ac	2014-03-28 07:41:37.000000000 -0700
-@@ -17,8 +17,9 @@
- # i18n stuff
- IT_PROG_INTLTOOL(0.40.0)
- 
--AM_GNU_GETTEXT([external])
--AM_GNU_GETTEXT_VERSION([0.17])
-+dnl AM_GNU_GETTEXT macros cannot be used with IT_PROG_INTLTOOL
-+dnl AM_GNU_GETTEXT([external])
-+dnl AM_GNU_GETTEXT_VERSION([0.17])
- 
- GETTEXT_PACKAGE=AC_PACKAGE_NAME
- AC_SUBST([GETTEXT_PACKAGE])
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150423/faa74da9/attachment.html>


More information about the macports-changes mailing list