summaryrefslogtreecommitdiff
path: root/devel/configgen/files/patch-autotools-fix
diff options
context:
space:
mode:
authorAde Lovett <ade@FreeBSD.org>2007-07-28 06:33:59 +0000
committerAde Lovett <ade@FreeBSD.org>2007-07-28 06:33:59 +0000
commit3b3128196e8706c3616c88df7206b4a27f7b8959 (patch)
tree31433c1d06ed5be6756933b97f6d80a77f17b710 /devel/configgen/files/patch-autotools-fix
parentUpdate to SRC680_m222. (diff)
Update to the autotools new world order.
Tested by: numerous package build runs Approved by: portmgr Thanks to: des, kris, linimon, pav
Notes
Notes: svn path=/head/; revision=196437
Diffstat (limited to 'devel/configgen/files/patch-autotools-fix')
-rw-r--r--devel/configgen/files/patch-autotools-fix65
1 files changed, 65 insertions, 0 deletions
diff --git a/devel/configgen/files/patch-autotools-fix b/devel/configgen/files/patch-autotools-fix
new file mode 100644
index 000000000000..1ee8b7603503
--- /dev/null
+++ b/devel/configgen/files/patch-autotools-fix
@@ -0,0 +1,65 @@
+--- configgen.sh.orig Fri Apr 13 17:42:35 2007
++++ configgen.sh Fri Apr 13 17:47:09 2007
+@@ -44,21 +44,24 @@
+ x-bsd)
+- ACLOCAL_SUFX=${ACLOCAL_SUFX:=15}
+- AUTOCONF_SUFX=${AUTOCONF_SUFX:=253}
+- AUTOHEADER_SUFX=${AUTOHEADER_SUFX:=253}
+- AUTOMAKE_SUFX=${AUTOMAKE_SUFX:=15}
+- LIBTOOLIZE_SUFX=${LIBTOOLIZE_SUFX}
++ ACLOCAL_SUFX=${ACLOCAL_SUFX:=-1.5}
++ AUTOCONF_SUFX=${AUTOCONF_SUFX:=-2.53}
++ AUTOHEADER_SUFX=${AUTOHEADER_SUFX:=-2.53}
++ AUTOMAKE_SUFX=${AUTOMAKE_SUFX:=-1.5}
++ ;;
++ x-bsd110)
++ ACLOCAL_SUFX=${ACLOCAL_SUFX:=-1.10}
++ AUTOCONF_SUFX=${AUTOCONF_SUFX:=-2.61}
++ AUTOHEADER_SUFX=${AUTOHEADER_SUFX:=-2.61}
++ AUTOMAKE_SUFX=${AUTOMAKE_SUFX:=-1.10}
+ ;;
+ x-bsd19)
+- ACLOCAL_SUFX=${ACLOCAL_SUFX:=19}
+- AUTOCONF_SUFX=${AUTOCONF_SUFX:=259}
+- AUTOHEADER_SUFX=${AUTOHEADER_SUFX:=259}
+- AUTOMAKE_SUFX=${AUTOMAKE_SUFX:=19}
+- LIBTOOLIZE_SUFX=${LIBTOOLIZE_SUFX}
++ ACLOCAL_SUFX=${ACLOCAL_SUFX:=-1.9}
++ AUTOCONF_SUFX=${AUTOCONF_SUFX:=-2.59}
++ AUTOHEADER_SUFX=${AUTOHEADER_SUFX:=-2.59}
++ AUTOMAKE_SUFX=${AUTOMAKE_SUFX:=-1.9}
+ ;;
+ x-bsd14)
+- ACLOCAL_SUFX=${ACLOCAL_SUFX:=14}
+- AUTOCONF_SUFX=${AUTOCONF_SUFX:=213}
+- AUTOHEADER_SUFX=${AUTOHEADER_SUFX:=213}
+- AUTOMAKE_SUFX=${AUTOMAKE_SUFX:=14}
+- LIBTOOLIZE_SUFX=${LIBTOOLIZE_SUFX}
++ ACLOCAL_SUFX=${ACLOCAL_SUFX:=-1.4}
++ AUTOCONF_SUFX=${AUTOCONF_SUFX:=-2.13}
++ AUTOHEADER_SUFX=${AUTOHEADER_SUFX:=-2.13}
++ AUTOMAKE_SUFX=${AUTOMAKE_SUFX:=-1.4}
+ ;;
+@@ -78,3 +81,3 @@
+ AUTOMAKE=${AUTOMAKE:=automake}${AUTOMAKE_SUFX}
+-LIBTOOLIZE=${LIBTOOLIZE:=libtoolize}${LIBTOOLIZE_SUFX}
++LIBTOOLIZE=${LIBTOOLIZE:=libtoolize}
+ AUTOCONF=${AUTOCONF:=autoconf}${AUTOCONF_SUFX}
+@@ -103,3 +106,3 @@
+ echo "usage: Run `basename $0` in directory to create configure script"
+- echo "[-gnu] [-gnome] [-f] [-help] [-bsd] [-bsd14|19] [<config>] [config args...]"
++ echo "[-gnu] [-gnome] [-f] [-help] [-bsd] [-bsd14|19|110] [<config>] [config args...]"
+
+@@ -113,7 +116,9 @@
+ echo " -bsd Use FreeBSD auto-tools"
+- echo " (versions: libtool15, automake15, autoconf253)"
++ echo " (versions: libtool, automake-1.5, autoconf-2.53)"
+ echo " -bsd14 Use FreeBSD auto-tools"
+- echo " (versions: libtool15, automake14, autoconf213)"
++ echo " (versions: libtool, automake-1.4, autoconf-2.13)"
+ echo " -bsd19 Use FreeBSD auto-tools"
+- echo " (versions: libtool15, automake19, autoconf259)"
++ echo " (versions: libtool, automake-1.9, autoconf-2.59)"
++ echo " -bsd110 Use FreeBSD auto-tools"
++ echo " (versions: libtool, automake-1.10, autoconf-2.61)"
+ echo " -f Find config (fall back on generic gnu)"