2003-04-13 13:38:35 +00:00
|
|
|
#!/bin/sh
|
2000-01-30 09:03:00 +00:00
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
|
|
|
DIE=0
|
2002-02-09 21:05:12 +00:00
|
|
|
package=gstreamer
|
|
|
|
srcfile=gst/gst.c
|
2001-12-22 01:58:59 +00:00
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
# a quick cvs co to ease the transition
|
2002-02-06 22:28:25 +00:00
|
|
|
if test ! -d common; then
|
2004-02-06 17:54:40 +00:00
|
|
|
if test -f CVS/Tag; then
|
|
|
|
# get everything from CVS/Tag from second character on
|
|
|
|
TAG="-r `tail -c +2 CVS/Tag`"
|
|
|
|
fi
|
|
|
|
echo "+ getting common from cvs"; cvs co $TAG common
|
2002-02-06 22:28:25 +00:00
|
|
|
fi
|
2002-02-06 21:35:37 +00:00
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
# source helper functions
|
|
|
|
if test ! -f common/gst-autogen.sh;
|
|
|
|
then
|
|
|
|
echo There is something wrong with your source tree.
|
|
|
|
echo You are missing common/gst-autogen.sh
|
2001-12-10 17:59:35 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2002-02-09 21:05:12 +00:00
|
|
|
. common/gst-autogen.sh
|
2001-12-10 17:59:35 +00:00
|
|
|
|
2003-08-21 04:38:27 +00:00
|
|
|
CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-plugin-builddir --enable-failing-tests --enable-poisoning'
|
2002-05-27 13:37:37 +00:00
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
autogen_options $@
|
2001-12-10 17:59:35 +00:00
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
echo -n "+ check for build tools"
|
2003-05-01 13:11:08 +00:00
|
|
|
if test ! -z "$NOCHECK"; then echo ": skipped version checks"; else echo; fi
|
2002-11-01 22:03:56 +00:00
|
|
|
version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53 autoconf-2.52" \
|
2002-09-30 07:17:40 +00:00
|
|
|
"ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
|
2003-08-21 04:38:27 +00:00
|
|
|
version_check "automake" "$AUTOMAKE automake automake-1.7 automake17 automake-1.6" \
|
2003-08-06 01:15:48 +00:00
|
|
|
"ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || DIE=1
|
2004-01-13 11:30:00 +00:00
|
|
|
version_check "autopoint" "autopoint" \
|
2004-02-13 16:43:03 +00:00
|
|
|
"ftp://ftp.gnu.org/pub/gnu/gettext/" 0 11 5 || DIE=1
|
2004-02-29 08:34:03 +00:00
|
|
|
version_check "libtoolize" "libtoolize" \
|
|
|
|
"ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
|
2002-09-30 07:17:40 +00:00
|
|
|
version_check "pkg-config" "" \
|
|
|
|
"http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-02-13 12:18:10 +00:00
|
|
|
die_check $DIE
|
|
|
|
|
2003-04-13 20:12:21 +00:00
|
|
|
autoconf_2_52d_check || DIE=1
|
2002-04-18 20:47:00 +00:00
|
|
|
aclocal_check || DIE=1
|
2002-05-27 13:37:37 +00:00
|
|
|
autoheader_check || DIE=1
|
2002-02-09 21:05:12 +00:00
|
|
|
|
2002-02-13 12:18:10 +00:00
|
|
|
die_check $DIE
|
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
# if no arguments specified then this will be printed
|
|
|
|
if test -z "$*"; then
|
|
|
|
echo "+ checking for autogen.sh options"
|
|
|
|
echo " This autogen script will automatically run ./configure as:"
|
|
|
|
echo " ./configure $CONFIGURE_DEF_OPT"
|
|
|
|
echo " To pass any additional options, please specify them on the $0"
|
|
|
|
echo " command line."
|
2000-01-30 09:03:00 +00:00
|
|
|
fi
|
|
|
|
|
2002-02-09 21:05:12 +00:00
|
|
|
toplevel_check $srcfile
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-01-13 15:13:11 +00:00
|
|
|
# autopoint
|
|
|
|
# older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
|
2004-02-22 15:55:29 +00:00
|
|
|
if test -x mkinstalldirs; then rm mkinstalldirs; fi
|
2004-01-13 15:13:11 +00:00
|
|
|
# first remove patch if necessary, then run autopoint, then reapply
|
2004-01-13 11:30:00 +00:00
|
|
|
if test -f po/Makefile.in.in;
|
|
|
|
then
|
2005-04-10 18:18:44 +00:00
|
|
|
patch -p0 -R --forward < common/gettext.patch
|
2004-01-13 11:30:00 +00:00
|
|
|
fi
|
2004-12-08 09:18:38 +00:00
|
|
|
tool_run "$autopoint" "--force" "patch -p0 < common/gettext.patch"
|
2004-01-13 11:30:00 +00:00
|
|
|
patch -p0 < common/gettext.patch
|
|
|
|
|
|
|
|
# aclocal
|
2003-05-01 13:17:34 +00:00
|
|
|
if test -f acinclude.m4; then rm acinclude.m4; fi
|
2002-04-18 20:47:00 +00:00
|
|
|
tool_run "$aclocal" "-I common/m4 $ACLOCAL_FLAGS"
|
2001-12-14 11:30:50 +00:00
|
|
|
|
2004-02-12 12:09:28 +00:00
|
|
|
tool_run "$libtoolize" "--copy --force"
|
2002-05-27 13:37:37 +00:00
|
|
|
tool_run "$autoheader"
|
2002-02-09 21:05:12 +00:00
|
|
|
|
2001-12-20 01:20:22 +00:00
|
|
|
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
|
|
|
|
echo timestamp > stamp-h.in 2> /dev/null
|
2002-02-09 21:05:12 +00:00
|
|
|
|
2002-03-02 12:01:32 +00:00
|
|
|
tool_run "$autoconf"
|
|
|
|
debug "automake: $automake"
|
2004-02-12 19:07:33 +00:00
|
|
|
tool_run "$automake" "--add-missing --copy"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2001-12-22 01:58:59 +00:00
|
|
|
test -n "$NOCONFIGURE" && {
|
2002-02-09 21:05:12 +00:00
|
|
|
echo "skipping configure stage for package $package, as requested."
|
|
|
|
echo "autogen.sh done."
|
|
|
|
exit 0
|
2001-12-22 01:58:59 +00:00
|
|
|
}
|
|
|
|
|
2001-12-10 14:05:50 +00:00
|
|
|
echo "+ running configure ... "
|
2002-02-09 21:05:12 +00:00
|
|
|
test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT"
|
|
|
|
test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT"
|
2001-10-17 10:21:27 +00:00
|
|
|
echo
|
|
|
|
|
2004-02-05 13:34:10 +00:00
|
|
|
echo ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT
|
2002-02-10 15:54:09 +00:00
|
|
|
./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT || {
|
2002-02-09 21:05:12 +00:00
|
|
|
echo " configure failed"
|
|
|
|
exit 1
|
2001-05-29 16:40:07 +00:00
|
|
|
}
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
echo "Now type 'make' to compile $package."
|
2002-02-09 21:05:12 +00:00
|
|
|
|