Macro qtTrIdx() replaced by tr() and QT_TRANSLATE_NOOP()
[mafwsubrenderer] / gst-plugins-base-subtitles0.10 / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 DIE=0
5 package=gst-plugins-base
6 srcfile=gst/audiotestsrc/gstaudiotestsrc.c
7
8 # source helper functions
9 if test ! -f common/gst-autogen.sh;
10 then
11   echo There is something wrong with your source tree.
12   echo You are missing common/gst-autogen.sh
13   exit 1
14 fi
15 . common/gst-autogen.sh
16
17 CONFIGURE_DEF_OPT='--enable-maintainer-mode --enable-gtk-doc --enable-plugin-docs'
18
19 autogen_options $@
20
21 printf "+ check for build tools"
22 if test ! -z "$NOCHECK"; then echo " skipped"; else  echo; fi
23 version_check "autoconf" "$AUTOCONF autoconf autoconf270 autoconf269 autoconf268 autoconf267 autoconf266 autoconf265 autoconf264 autoconf263 autoconf262 autoconf261 autoconf260" \
24               "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 60 || DIE=1
25 version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10" \
26               "ftp://ftp.gnu.org/pub/gnu/automake/" 1 10 || DIE=1
27 version_check "autopoint" "autopoint" \
28               "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 14 || DIE=1
29 version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \
30               "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
31 version_check "pkg-config" "" \
32               "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
33
34 die_check $DIE
35
36 aclocal_check || DIE=1
37 autoheader_check || DIE=1
38
39 die_check $DIE
40
41 # if no arguments specified then this will be printed
42 if test -z "$*"; then
43   echo "+ checking for autogen.sh options"
44   echo "  This autogen script will automatically run ./configure as:"
45   echo "  ./configure $CONFIGURE_DEF_OPT"
46   echo "  To pass any additional options, please specify them on the $0"
47   echo "  command line."
48 fi
49
50 toplevel_check $srcfile
51
52 # autopoint
53 #    older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
54 if test -x mkinstalldirs; then rm mkinstalldirs; fi
55 #    first remove patch if necessary, then run autopoint, then reapply
56 if test -f po/Makefile.in.in;
57 then
58   patch -p0 -R --forward < common/gettext.patch
59 fi
60 tool_run "$autopoint --force"
61 patch -p0 < common/gettext.patch
62
63 tool_run "$libtoolize" "--copy --force"
64 tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
65 tool_run "$autoheader"
66
67 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode
68 echo timestamp > stamp-h.in 2> /dev/null
69
70 tool_run "$autoconf"
71 tool_run "$automake" "-a -c"
72
73 # if enable exists, add an -enable option for each of the lines in that file
74 if test -f enable; then
75   for a in `cat enable`; do
76     CONFIGURE_FILE_OPT="--enable-$a"
77   done
78 fi
79
80 # if disable exists, add an -disable option for each of the lines in that file
81 if test -f disable; then
82   for a in `cat disable`; do
83     CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
84   done
85 fi
86
87 test -n "$NOCONFIGURE" && {
88   echo "+ skipping configure stage for package $package, as requested."
89   echo "+ autogen.sh done."
90   exit 0
91 }
92
93 echo "+ running configure ... "
94 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
95 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
96 test ! -z "$CONFIGURE_FILE_OPT" && echo "  ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
97 echo
98
99 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
100         echo "  configure failed"
101         exit 1
102 }
103
104 echo "Now type 'make' to compile $package."