leo_sobral@2: #!/bin/sh leo_sobral@2: # Run this to generate all the initial makefiles, etc. leo_sobral@2: leo_sobral@2: DIE=0 leo_sobral@2: package=mythtvsrc leo_sobral@2: srcfile=configure.ac leo_sobral@2: leo_sobral@2: # a quick cvs co if necessary to alleviate the pain - may remove this leo_sobral@2: # when developers get a clue ;) leo_sobral@2: if test ! -d common; leo_sobral@2: then leo_sobral@2: echo "+ getting common/ from svn" leo_sobral@2: svn co common leo_sobral@2: fi leo_sobral@2: leo_sobral@2: # source helper functions leo_sobral@2: if test ! -f common/autogen-helper.sh; leo_sobral@2: then leo_sobral@2: echo There is something wrong with your source tree. leo_sobral@2: echo You are missing common/autogen-helper.sh leo_sobral@2: exit 1 leo_sobral@2: fi leo_sobral@2: . common/autogen-helper.sh leo_sobral@2: leo_sobral@2: CONFIGURE_DEF_OPT='--enable-maintainer-mode' leo_sobral@2: rosfran@87: CONFIGURE_EXT_OPT="$@" rosfran@87: leo_sobral@2: autogen_options leo_sobral@2: leo_sobral@2: echo -n "+ check for build tools" leo_sobral@2: if test ! -z "$NOCHECK"; then echo " skipped"; else echo; fi leo_sobral@2: version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53" \ leo_sobral@2: "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 53 || DIE=1 leo_sobral@2: version_check "automake" "$AUTOMAKE automake automake-1.9 automake-1.8 automake-1.7 automake-1.6" \ leo_sobral@2: "ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || DIE=1 leo_sobral@2: version_check "libtoolize" "$LIBTOOLIZE libtoolize" \ leo_sobral@2: "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1 leo_sobral@2: version_check "pkg-config" "" \ leo_sobral@2: "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1 leo_sobral@2: leo_sobral@2: die_check $DIE leo_sobral@2: leo_sobral@2: aclocal_check || DIE=1 leo_sobral@2: autoheader_check || DIE=1 leo_sobral@2: leo_sobral@2: die_check $DIE leo_sobral@2: leo_sobral@2: # if no arguments specified then this will be printed leo_sobral@2: if test -z "$*"; then leo_sobral@2: echo "+ checking for autogen.sh options" leo_sobral@2: echo " This autogen script will automatically run ./configure as:" leo_sobral@2: echo " ./configure $CONFIGURE_DEF_OPT" leo_sobral@2: echo " To pass any additional options, please specify them on the $0" leo_sobral@2: echo " command line." leo_sobral@2: fi leo_sobral@2: leo_sobral@2: toplevel_check $srcfile leo_sobral@2: leo_sobral@2: tool_run "$aclocal" "-I m4 $ACLOCAL_FLAGS" leo_sobral@2: tool_run "$libtoolize" "--copy --force" leo_sobral@2: tool_run "$autoheader" leo_sobral@2: leo_sobral@2: # touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo leo_sobral@2: echo timestamp > stamp-h.in 2> /dev/null leo_sobral@2: leo_sobral@2: tool_run "$autoconf" leo_sobral@2: tool_run "$automake" "-a -c" leo_sobral@2: leo_sobral@2: # if enable exists, add an -enable option for each of the lines in that file leo_sobral@2: if test -f enable; then leo_sobral@2: for a in `cat enable`; do leo_sobral@2: CONFIGURE_FILE_OPT="--enable-$a" leo_sobral@2: done leo_sobral@2: fi leo_sobral@2: leo_sobral@2: # if disable exists, add an -disable option for each of the lines in that file leo_sobral@2: if test -f disable; then leo_sobral@2: for a in `cat disable`; do leo_sobral@2: CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a" leo_sobral@2: done leo_sobral@2: fi leo_sobral@2: leo_sobral@2: test -n "$NOCONFIGURE" && { leo_sobral@2: echo "+ skipping configure stage for package $package, as requested." leo_sobral@2: echo "+ autogen.sh done." leo_sobral@2: exit 0 leo_sobral@2: } leo_sobral@2: leo_sobral@2: echo "+ running configure ... " leo_sobral@2: test ! -z "$CONFIGURE_DEF_OPT" && echo " ./configure default flags: $CONFIGURE_DEF_OPT" leo_sobral@2: test ! -z "$CONFIGURE_EXT_OPT" && echo " ./configure external flags: $CONFIGURE_EXT_OPT" leo_sobral@2: test ! -z "$CONFIGURE_FILE_OPT" && echo " ./configure enable/disable flags: $CONFIGURE_FILE_OPT" leo_sobral@2: echo leo_sobral@2: leo_sobral@2: ./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || { leo_sobral@2: echo " configure failed" leo_sobral@2: exit 1 leo_sobral@2: } leo_sobral@2: leo_sobral@2: echo "Now type 'make' to compile $package."