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