author | melunko |
Wed Aug 01 14:50:29 2007 +0100 (2007-08-01) | |
branch | trunk |
changeset 790 | 7a914b3fafc1 |
parent 21 | maemo-ui/autogen.sh@3c4daefe377f |
permissions | -rwxr-xr-x |
renatofilho@21 | 1 |
#!/bin/sh |
renatofilho@21 | 2 |
# Run this to generate all the initial makefiles, etc. |
renatofilho@21 | 3 |
|
renatofilho@21 | 4 |
DIE=0 |
renatofilho@21 | 5 |
package=gmyth |
renatofilho@21 | 6 |
srcfile=configure.ac |
renatofilho@21 | 7 |
|
renatofilho@21 | 8 |
# a quick cvs co if necessary to alleviate the pain - may remove this |
renatofilho@21 | 9 |
# when developers get a clue ;) |
renatofilho@21 | 10 |
if test ! -d common; |
renatofilho@21 | 11 |
then |
renatofilho@21 | 12 |
echo "+ getting common/ from svn" |
renatofilho@21 | 13 |
svn co common |
renatofilho@21 | 14 |
fi |
renatofilho@21 | 15 |
|
renatofilho@21 | 16 |
# source helper functions |
renatofilho@21 | 17 |
if test ! -f common/autogen-helper.sh; |
renatofilho@21 | 18 |
then |
renatofilho@21 | 19 |
echo There is something wrong with your source tree. |
renatofilho@21 | 20 |
echo You are missing common/autogen-helper.sh |
renatofilho@21 | 21 |
exit 1 |
renatofilho@21 | 22 |
fi |
renatofilho@21 | 23 |
. common/autogen-helper.sh |
renatofilho@21 | 24 |
|
renatofilho@21 | 25 |
CONFIGURE_DEF_OPT='--enable-maintainer-mode' |
renatofilho@21 | 26 |
|
renatofilho@21 | 27 |
autogen_options |
renatofilho@21 | 28 |
|
renatofilho@21 | 29 |
echo -n "+ check for build tools" |
renatofilho@21 | 30 |
if test ! -z "$NOCHECK"; then echo " skipped"; else echo; fi |
renatofilho@21 | 31 |
version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53" \ |
renatofilho@21 | 32 |
"ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 53 || DIE=1 |
renatofilho@21 | 33 |
version_check "automake" "$AUTOMAKE automake automake-1.9 automake-1.8 automake-1.7 automake-1.6" \ |
renatofilho@21 | 34 |
"ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || DIE=1 |
renatofilho@21 | 35 |
version_check "libtoolize" "$LIBTOOLIZE libtoolize" \ |
renatofilho@21 | 36 |
"ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1 |
renatofilho@21 | 37 |
version_check "pkg-config" "" \ |
renatofilho@21 | 38 |
"http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1 |
renatofilho@21 | 39 |
|
renatofilho@21 | 40 |
die_check $DIE |
renatofilho@21 | 41 |
|
renatofilho@21 | 42 |
aclocal_check || DIE=1 |
renatofilho@21 | 43 |
autoheader_check || DIE=1 |
renatofilho@21 | 44 |
|
renatofilho@21 | 45 |
die_check $DIE |
renatofilho@21 | 46 |
|
renatofilho@21 | 47 |
# if no arguments specified then this will be printed |
renatofilho@21 | 48 |
if test -z "$*"; then |
renatofilho@21 | 49 |
echo "+ checking for autogen.sh options" |
renatofilho@21 | 50 |
echo " This autogen script will automatically run ./configure as:" |
renatofilho@21 | 51 |
echo " ./configure $CONFIGURE_DEF_OPT" |
renatofilho@21 | 52 |
echo " To pass any additional options, please specify them on the $0" |
renatofilho@21 | 53 |
echo " command line." |
renatofilho@21 | 54 |
fi |
renatofilho@21 | 55 |
|
renatofilho@21 | 56 |
toplevel_check $srcfile |
renatofilho@21 | 57 |
|
renatofilho@21 | 58 |
tool_run "$aclocal" "-I m4 $ACLOCAL_FLAGS" |
renatofilho@21 | 59 |
tool_run "$libtoolize" "--copy --force" |
renatofilho@21 | 60 |
tool_run "$autoheader" |
renatofilho@21 | 61 |
|
renatofilho@21 | 62 |
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo |
renatofilho@21 | 63 |
echo timestamp > stamp-h.in 2> /dev/null |
renatofilho@21 | 64 |
|
renatofilho@21 | 65 |
tool_run "$autoconf" |
renatofilho@21 | 66 |
tool_run "$automake" "-a -c" |
renatofilho@21 | 67 |
|
renatofilho@21 | 68 |
# if enable exists, add an -enable option for each of the lines in that file |
renatofilho@21 | 69 |
if test -f enable; then |
renatofilho@21 | 70 |
for a in `cat enable`; do |
renatofilho@21 | 71 |
CONFIGURE_FILE_OPT="--enable-$a" |
renatofilho@21 | 72 |
done |
renatofilho@21 | 73 |
fi |
renatofilho@21 | 74 |
|
renatofilho@21 | 75 |
# if disable exists, add an -disable option for each of the lines in that file |
renatofilho@21 | 76 |
if test -f disable; then |
renatofilho@21 | 77 |
for a in `cat disable`; do |
renatofilho@21 | 78 |
CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a" |
renatofilho@21 | 79 |
done |
renatofilho@21 | 80 |
fi |
renatofilho@21 | 81 |
|
renatofilho@21 | 82 |
test -n "$NOCONFIGURE" && { |
renatofilho@21 | 83 |
echo "+ skipping configure stage for package $package, as requested." |
renatofilho@21 | 84 |
echo "+ autogen.sh done." |
renatofilho@21 | 85 |
exit 0 |
renatofilho@21 | 86 |
} |
renatofilho@21 | 87 |
|
renatofilho@21 | 88 |
echo "+ running configure ... " |
renatofilho@21 | 89 |
test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT" |
renatofilho@21 | 90 |
test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT" |
renatofilho@21 | 91 |
test ! -z "$CONFIGURE_FILE_OPT" && echo " ./configure enable/disable flags: $CONFIGURE_FILE_OPT" |
renatofilho@21 | 92 |
echo |
renatofilho@21 | 93 |
|
renatofilho@21 | 94 |
./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || { |
renatofilho@21 | 95 |
echo " configure failed" |
renatofilho@21 | 96 |
exit 1 |
renatofilho@21 | 97 |
} |
renatofilho@21 | 98 |
|
renatofilho@21 | 99 |
echo "Now type 'make' to compile $package." |