1#!/bin/bash 2 3# This file is part of avahi. 4# 5# avahi is free software; you can redistribute it and/or modify it 6# under the terms of the GNU Lesser General Public License as 7# published by the Free Software Foundation; either version 2 of the 8# License, or (at your option) any later version. 9# 10# avahi is distributed in the hope that it will be useful, but WITHOUT 11# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 12# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 13# License for more details. 14# 15# You should have received a copy of the GNU Lesser General Public 16# License along with avahi; if not, write to the Free Software 17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 18# USA. 19 20AM_VERSION=1.11 21AC_VERSION=2.63 22 23run_versioned() { 24 local P 25 local V 26 27 V=$(echo "$2" | sed -e 's,\.,,g') 28 29 if [ -e "`which $1$V 2> /dev/null`" ] ; then 30 P="$1$V" 31 else 32 if [ -e "`which $1-$2 2> /dev/null`" ] ; then 33 P="$1-$2" 34 else 35 P="$1" 36 fi 37 fi 38 39 shift 2 40 "$P" "$@" 41} 42 43set -ex 44 45if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then 46 cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \ 47 chmod +x .git/hooks/pre-commit && \ 48 echo "Activated pre-commit hook." 49fi 50 51if [ "x$1" = "xam" ] ; then 52 run_versioned automake "$AM_VERSION" -a -c --foreign 53 ./config.status 54else 55 rm -rf autom4te.cache 56 rm -f config.cache 57 58 rm -f Makefile.am~ configure.ac~ 59 # Evil, evil, evil, evil hack 60 sed 's/read dummy/\#/' `which gettextize` | sh -s -- --copy --force 61 test -f Makefile.am~ && mv Makefile.am~ Makefile.am 62 test -f configure.ac~ && mv configure.ac~ configure.ac 63 64 test "x$LIBTOOLIZE" = "x" && LIBTOOLIZE=libtoolize 65 66 intltoolize --copy --force --automake 67 "$LIBTOOLIZE" -c --force 68 run_versioned aclocal "$AM_VERSION" -I common 69 run_versioned autoconf "$AC_VERSION" -Wall 70 run_versioned autoheader "$AC_VERSION" 71 run_versioned automake "$AM_VERSION" -a -c --foreign 72 73 if test "x$NOCONFIGURE" = "x"; then 74 ./configure "$@" 75 make clean 76 fi 77fi 78