view bootstrap.sh @ 438:4cad402fea71

Fixes
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 01 Jan 2007 08:50:03 +0000
parents 06f944263d9a
children f707bee41d0e
line wrap: on
line source

#! /bin/sh
WANT_AM_VERSION=1.9

echo "***"
echo "*** Now bootstrapping the package."
echo "*** This may take a while, please be patient ..."
echo "***"
ftest_msg()
{
echo "You do not have required GNU Autotools installed, please install"
echo "recent version of GNU autoconf, automake and libtool packages."
echo "(Could not find runnable $1)"
}

ftest_am_package()
{
PRG1=`which "$1-$WANT_AM_VERSION"`
PRG2=`which $1`
if test -n "$PRG1"  && test -x "$PRG1"; then
echo "* $1-$WANT_AM_VERSION $2"
eval $1-$WANT_AM_VERSION $2
else
if test -n "$PRG2"  && test -x "$PRG2"; then
echo "* Warning! Could not find $1-$WANT_AM_VERSION!"
echo "  Trying '$1', which may fail due to incompabilities."
echo "* $1 $2"
eval $1 $2
else
ftest_msg "'$1-$WANT_AM_VERSION' or '$1'"
exit 1
fi
fi
}

ftest_ac_package()
{
PRG1=`which $1`
if test -n "$PRG1"  && test -x "$PRG1"; then
echo "* $1 $2"
eval $1 $2
else
ftest_msg "'$1'"
exit 1
fi
}

ftest_package()
{
PRG1=`which $1`
if test -n "$PRG1"  && test -x "$PRG1"; then
echo "* $1 $2"
eval $1 $2
else
echo "Could not find runnable '$1', perhaps $3 package is not installed"
echo "or it is not in the PATH. Please install $4."
exit 1
fi
}

ftest_package "autopoint" "-f" "gettext(-dev|-devel)" "GNU gettext 0.14.1 or later."
ftest_am_package "aclocal" "-I . -I /usr/share/aclocal -I /usr/local/share/aclocal"
ftest_ac_package "libtoolize" "--automake --force"
ftest_am_package "automake" "-a -c -f --foreign"
ftest_ac_package "autoconf" ""
ftest_package "glade" "-w xmms-sid.glade" "Glade" "Glade for Gtk+1 applications (Glade v0.6.4)"