From b7594213dc071c81e0e5013f3ec8ef17f9023dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 28 Sep 2011 14:02:02 +0000 Subject: autotools svn path=/trunk/externals/zexy/; revision=15373 --- autogen.sh | 156 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100755 autogen.sh (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..19d1361 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,156 @@ +#!/bin/sh + +package=zexy + + +AUTORECONF=$(which autoreconf) + +AUTOHEADER=$(which autoheader) +AUTOMAKE=$(which automake) +ACLOCAL=$(which aclocal) +LIBTOOL=$(which libtool) +LIBTOOLIZE=$(which libtoolize) +AUTOCONF=$(which autoconf) + + +KERN=$(uname -s) +case "${KERN}" in + Darwin) + PATH=/sw/bin:${PATH} + ;; + MINGW*) + AUTORECONF="" + ;; + *) + echo "kernel $KERN" + ;; +esac + +echo PATH: $PATH + + +#check whether the system supports pushd/popd +if pushd . > /dev/null 2>&1 +then + popd > /dev/null 2>&1 +else +## some shells (namely dash) don't support pushd/popd +## here we provide some dummies +pushd () { + echo "ignoring pushd to $@" +} + +popd () { + echo "ignoring popd ..." +} +fi + + +autoconf_getsubdirs () { + if [ -e configure.ac ]; then + cat configure.ac | sed -e 's|#.*$||' | grep AC_CONFIG_SUBDIRS | \ + sed -e 's|^.*AC_CONFIG_SUBDIRS(\[\(.*\)\]).*$|\1|' + fi +} + +runit () { +echo " $@" +$@ +} + +manual_autoreconf_doit () { + echo faking autoreconf for $1 + pushd $1 + + runit $ACLOCAL -I . -I $BASEDIR/m4 || exit 1 + + runit $LIBTOOLIZE --automake -c || exit 1 + + runit $AUTOCONF || exit 1 + + if test -e configure.ac && grep AC_CONFIG_HEADER configure.ac > /dev/null 2>&1; then + runit $AUTOHEADER --force || exit 1 + fi + + if [ -e Makefile.am ]; then + runit $AUTOMAKE --add-missing -c || exit 1 + fi + popd +} + +manual_autoreconf () { + echo faking autoreconf.. + BASEDIR=${0%/*} + pushd $BASEDIR + BASEDIR=$(pwd) + popd + + if [ "x${SUBDIRS}" = "x" ]; then + #SUBDIRS=autoconf_getsubdirs + + SUBDIRS="." + fi + + +# check for all the needed helpers + DIE=0 +($AUTOCONF --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have autoconf installed to compile $package." + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" + DIE=1 +} + +($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have automake installed to compile $package." + echo "Download the appropriate package for your system," + echo "or get the source from one of the GNU ftp sites" + echo "listed in http://www.gnu.org/order/ftp.html" + DIE=1 +} + +($ACLOCAL --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have aclocal installed to compile $package." + echo "Download the appropriate package for your system," + echo "or get the source from one of the GNU ftp sites" + echo "listed in http://www.gnu.org/order/ftp.html" + DIE=1 +} + +($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have libtool installed to compile $package." + echo "Download the appropriate package for your system," + echo "or get the source from one of the GNU ftp sites" + echo "listed in http://www.gnu.org/order/ftp.html" + DIE=1 +} +($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || { + echo + echo "You must have libtoolize installed to compile $package." + echo "Download the appropriate package for your system," + echo "or get the source from one of the GNU ftp sites" + echo "listed in http://www.gnu.org/order/ftp.html" + DIE=1 +} + +if test "$DIE" -eq 1; then + exit 1 +fi + +for s in ${SUBDIRS}; do + manual_autoreconf_doit ${BASEDIR}/${s} +done +} + + +if test x$AUTORECONF != x; then + echo running autoreconf + $AUTORECONF --force --verbose --install +else + echo not running autoreconf... + manual_autoreconf +fi -- cgit v1.2.1