aboutsummaryrefslogtreecommitdiff
path: root/graphics/libpano13
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2012-05-11 20:38:09 +0000
committerAde Lovett <ade@FreeBSD.org>2012-05-11 20:38:09 +0000
commit6d726b6c09094afd97f1528cfff8b27850279b0d (patch)
treeef9d4da0741b49a6a207e85f9ad78b89c296fdf5 /graphics/libpano13
parent9b4e4e3b2292946bd774693494465751f44fca20 (diff)
downloadports-6d726b6c09094afd97f1528cfff8b27850279b0d.tar.gz
ports-6d726b6c09094afd97f1528cfff8b27850279b0d.zip
Update autoconf to 2.69 and automake to 1.12
PR: 166836 Tested by: Multiple -exp runs (pav)
Notes
Notes: svn path=/head/; revision=296454
Diffstat (limited to 'graphics/libpano13')
-rw-r--r--graphics/libpano13/files/patch-bootstrap79
1 files changed, 66 insertions, 13 deletions
diff --git a/graphics/libpano13/files/patch-bootstrap b/graphics/libpano13/files/patch-bootstrap
index 6c239b7e74ee..897ecfa0c0b8 100644
--- a/graphics/libpano13/files/patch-bootstrap
+++ b/graphics/libpano13/files/patch-bootstrap
@@ -1,17 +1,70 @@
---- bootstrap.orig 2009-02-01 19:35:46.000000000 +0200
-+++ bootstrap 2011-02-27 08:26:52.000000000 +0200
-@@ -23,7 +23,7 @@
- libtool_version=`$LIBTOOLIZE --version | sed 's/.*) \([0-9.][0-9.]*\).*/\1/'`
- # echo libtool version: $libtool_version
- case $libtool_version in
-- 1.4*|1.5*|2.0*|2.2*|2.4*)
-+ 1.4*|1.5*|[2-9]*)
- have_libtool=true
- ;;
- esac
-@@ -96,27 +96,3 @@
- $AUTOMAKE --add-missing --copy || exit $?
+--- bootstrap.orig 2011-02-22 11:06:38.000000000 -0800
++++ bootstrap 2012-05-03 17:40:55.000000000 -0700
+@@ -18,63 +18,2 @@
+-DIE=0
+-
+-have_libtool=false
+-if $LIBTOOLIZE --version < /dev/null > /dev/null 2>&1 ; then
+- libtool_version=`$LIBTOOLIZE --version | sed 's/.*) \([0-9.][0-9.]*\).*/\1/'`
+-# echo libtool version: $libtool_version
+- case $libtool_version in
+- 1.4*|1.5*|2.0*|2.2*|2.4*)
+- have_libtool=true
+- ;;
+- esac
+-fi
+-if $have_libtool ; then : ; else
+- echo
+- echo "You must have libtool 1.4 or later installed to compile $PROJECT."
+- echo "Install the appropriate package for your distribution,"
+- echo "or get the source tarball at http://ftp.gnu.org/gnu/libtool/"
+- DIE=1
+-fi
+-
+-# Assume if we have this that aclocal and autoheader are available
+-have_autoconf=false
+-if $AUTOCONF --version < /dev/null > /dev/null 2>&1 ; then
+- autoconf_version=`$AUTOCONF --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
+-# echo autoconf version: $autoconf_version
+- case $autoconf_version in
+- 2.5*|2.6*)
+- have_autoconf=true
+- ;;
+- esac
+-fi
+-if $have_autoconf ; then : ; else
+- echo
+- echo "You must have autoconf installed to compile $PROJECT."
+- echo "Install the appropriate package for your distribution,"
+- echo "or get the source tarball at http://ftp.gnu.org/gnu/autoconf/"
+- DIE=1
+-fi
+-
+-have_automake=false
+-if $AUTOMAKE --version < /dev/null > /dev/null 2>&1 ; then
+- automake_version=`$AUTOMAKE --version | sed 's/^[^0-9]*\([0-9.][0-9.]*\).*/\1/'`
+-# echo automake version: $automake_version
+- case $automake_version in
+- 1.7*|1.8*|1.9*|1.10*|1.11*)
+- have_automake=true
+- ;;
+- esac
+-fi
+-if $have_automake ; then : ; else
+- echo
+- echo "You must have automake 1.7.x or later installed to compile $PROJECT."
+- echo "Install the appropriate package for your distribution,"
+- echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
+- DIE=1
+-fi
+-
+-if test "$DIE" -eq 1; then
+- exit 1
+-fi
+-
+ test $TEST_TYPE $FILE || {
+@@ -98,25 +37 @@
$AUTOCONF || exit $?
-
-cd $ORIGDIR || exit $?