Adding gst-python package
[platform/upstream/gst-python.git] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 DIE=0
5 package=gst-python
6 srcfile=gi/overrides/gstmodule.c
7
8 # Make sure we have common
9 if test ! -f common/gst-autogen.sh; 
10 then 
11   echo "+ Setting up common submodule"
12   git submodule init
13 fi
14 git submodule update
15
16 # ensure that we have the dirs we put ext libs in to appease automake
17 mkdir -p gst-libs/ext/ffmpeg/ffmpeg
18
19 # source helper functions
20 if test ! -f common/gst-autogen.sh;
21 then
22   echo There is something wrong with your source tree.
23   echo You are missing common/gst-autogen.sh
24   exit 1
25 fi
26 . common/gst-autogen.sh
27
28 # install pre-commit hook for doing clean commits
29 if test ! \( -x .git/hooks/pre-commit -a -L .git/hooks/pre-commit \);
30 then
31     rm -f .git/hooks/pre-commit
32     ln -s ../../common/hooks/pre-commit.hook .git/hooks/pre-commit
33 fi
34
35
36 CONFIGURE_DEF_OPT='--enable-maintainer-mode'
37
38 autogen_options $@
39
40 echo -n "+ check for build tools"
41 if test ! -z "$NOCHECK"; then echo " skipped"; else  echo; fi
42 version_check "autoconf" "$AUTOCONF autoconf autoconf270 autoconf269 autoconf268 autoconf267 autoconf266 autoconf265 autoconf264 autoconf263 autoconf262 autoconf261 autoconf260" \
43               "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 60 || DIE=1
44 version_check "automake" "$AUTOMAKE automake automake-1.11 automake-1.10" \
45               "ftp://ftp.gnu.org/pub/gnu/automake/" 1 10 || DIE=1
46 version_check "libtoolize" "$LIBTOOLIZE libtoolize glibtoolize" \
47               "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
48 version_check "pkg-config" "" \
49               "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
50
51 die_check $DIE
52
53 aclocal_check || DIE=1
54 autoheader_check || DIE=1
55
56 die_check $DIE
57
58 # if no arguments specified then this will be printed
59 if test -z "$*"; then
60   echo "+ checking for autogen.sh options"
61   echo "  This autogen script will automatically run ./configure as:"
62   echo "  ./configure $CONFIGURE_DEF_OPT"
63   echo "  To pass any additional options, please specify them on the $0"
64   echo "  command line."
65 fi
66
67 toplevel_check $srcfile
68
69 tool_run "$libtoolize" "--copy --force"
70 tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
71 tool_run "$autoheader"
72
73 # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode
74 echo timestamp > stamp-h.in 2> /dev/null
75
76 tool_run "$autoconf"
77 tool_run "$automake" "-a -c -Wno-portability"
78
79 # if enable exists, add an -enable option for each of the lines in that file
80 if test -f enable; then
81   for a in `cat enable`; do
82     CONFIGURE_FILE_OPT="--enable-$a"
83   done
84 fi
85
86 # if disable exists, add an -disable option for each of the lines in that file
87 if test -f disable; then
88   for a in `cat disable`; do
89     CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
90   done
91 fi
92
93 test -n "$NOCONFIGURE" && {
94   echo "+ skipping configure stage for package $package, as requested."
95   echo "+ autogen.sh done."
96   exit 0
97 }
98
99 echo "+ running configure ... "
100 test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
101 test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
102 test ! -z "$CONFIGURE_FILE_OPT" && echo "  ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
103 echo
104
105 ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
106         echo "  configure failed"
107         exit 1
108 }
109
110 echo "Now type 'make' to compile $package."