medit/autogen.sh
2008-09-16 10:14:26 -05:00

86 lines
2.1 KiB
Bash
Executable File

#! /bin/sh
builddir=`pwd`
rel_srcdir=`dirname $0`
test -z "$rel_srcdir" && rel_srcdir=.
srcdir=`cd $rel_srcdir && pwd`
echo "srcdir="$srcdir
aclocal_extra=
for d in m4 moo/m4 ugly/m4 intltool/aclocal; do
if [ -d $rel_srcdir/$d ]; then
aclocal_extra="$aclocal_extra -I $d"
fi
done
cd $srcdir
echo "Generating configuration files..."
ACLOCAL=${ACLOCAL:-aclocal-1.10}
ACLOCAL_FLAGS="$aclocal_extra $ACLOCAL_FLAGS"
AUTOMAKE=${AUTOMAKE:-automake-1.10}
AUTOHEADER=${AUTOHEADER:-autoheader}
AUTOCONF=${AUTOCONF:-autoconf}
LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
UGLY=${UGLY:-./ugly/ugly}
if [ -f Makefile.ug ]; then
echo $UGLY
$UGLY || exit $?
fi
if grep AC_PROG_LIBTOOL configure.ac > /dev/null; then
echo $LIBTOOLIZE --automake --copy --force
$LIBTOOLIZE --automake --copy --force || exit $?
fi
if [ -d po ]; then
echo glib-gettextize --force --copy
glib-gettextize --force --copy || exit $?
if [ -d intltool ]; then
for f in intltool-extract.in intltool-merge.in intltool-update.in; do
echo "rm -f $f && ln -s intltool/intltool/$f $f"
rm -f $f || exit $?
ln -s intltool/intltool/$f $f || exit $?
done
echo "rm -f po/Makefile.in.in && cp intltool/intltool/Makefile.in.in po/Makefile.in.in"
rm -f po/Makefile.in.in || exit $?
cp intltool/intltool/Makefile.in.in po/Makefile.in.in || exit $?
else
echo intltoolize --automake --force --copy
intltoolize --automake --force --copy || exit $?
fi
fi
if [ -d po-gsv ] ; then
echo sed 's/@GETTEXT_PACKAGE@/@GETTEXT_PACKAGE@-gsv/' po/Makefile.in.in '>' po-gsv/Makefile.in.in
sed 's/@GETTEXT_PACKAGE@/@GETTEXT_PACKAGE@-gsv/' po/Makefile.in.in > po-gsv/Makefile.in.in || exit $?
fi
echo $ACLOCAL $ACLOCAL_FLAGS
$ACLOCAL $ACLOCAL_FLAGS || exit $?
echo $AUTOHEADER
$AUTOHEADER || exit $?
echo $AUTOMAKE --add-missing --copy
$AUTOMAKE --add-missing --copy || exit $?
echo $AUTOCONF
$AUTOCONF || exit $?
if test -z $1; then
echo
echo "run '$rel_srcdir/configure ; make ; make install'"
echo
else
if test $1 = "do" -o $1 = "--do"; then
shift
fi
cd $builddir
$srcdir/configure $*
fi