2 # Run this to generate all the initial makefiles, etc.
5 package=gst-plugins-good
8 # a quick cvs co to ease the transition
11 echo "+ getting common/ from cvs"
14 TAG="-r `tail -c +2 CVS/Tag`"
19 # source helper functions
20 if test ! -f common/gst-autogen.sh;
22 echo There is something wrong with your source tree.
23 echo You are missing common/gst-autogen.sh
26 . common/gst-autogen.sh
28 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc --enable-plugin-docs'
32 echo -n "+ check for build tools"
33 if test ! -z "$NOCHECK"; then echo " skipped"; else echo; fi
34 version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53 autoconf-2.52" \
35 "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
36 version_check "automake" "$AUTOMAKE automake automake-1.9 automake-1.7 automake-1.6 automake-1.5" \
37 "ftp://ftp.gnu.org/pub/gnu/automake/" 1 7 || DIE=1
38 version_check "autopoint" "autopoint" \
39 "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 11 5 || DIE=1
40 version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \
41 "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
42 version_check "pkg-config" "" \
43 "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
47 autoconf_2_52d_check || DIE=1
48 aclocal_check || DIE=1
49 autoheader_check || DIE=1
53 # if no arguments specified then this will be printed
55 echo "+ checking for autogen.sh options"
56 echo " This autogen script will automatically run ./configure as:"
57 echo " ./configure $CONFIGURE_DEF_OPT"
58 echo " To pass any additional options, please specify them on the $0"
62 toplevel_check $srcfile
65 # older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
66 if test -x mkinstalldirs; then rm mkinstalldirs; fi
67 # first remove patch if necessary, then run autopoint, then reapply
68 if test -f po/Makefile.in.in;
70 patch -p0 -R < common/gettext.patch
72 tool_run "$autopoint --force"
73 patch -p0 < common/gettext.patch
75 tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
76 tool_run "$libtoolize" "--copy --force"
77 tool_run "$autoheader"
79 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
80 echo timestamp > stamp-h.in 2> /dev/null
83 tool_run "$automake" "-a -c"
85 # if enable exists, add an -enable option for each of the lines in that file
86 if test -f enable; then
87 for a in `cat enable`; do
88 CONFIGURE_FILE_OPT="--enable-$a"
92 # if disable exists, add an -disable option for each of the lines in that file
93 if test -f disable; then
94 for a in `cat disable`; do
95 CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
99 test -n "$NOCONFIGURE" && {
100 echo "+ skipping configure stage for package $package, as requested."
101 echo "+ autogen.sh done."
105 echo "+ running configure ... "
106 test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT"
107 test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT"
108 test ! -z "$CONFIGURE_FILE_OPT" && echo " ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
111 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
112 echo " configure failed"
116 echo "Now type 'make' to compile $package."