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