~ubuntu-branches/ubuntu/trusty/pitivi/trusty

« back to all changes in this revision

Viewing changes to autogen.sh

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-02-04 14:42:30 UTC
  • Revision ID: james.westby@ubuntu.com-20060204144230-9ihvyas6lhgn81k1
Tags: upstream-0.9.9.2
ImportĀ upstreamĀ versionĀ 0.9.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
DIE=0
 
4
package=pitivi
 
5
srcfile=pitivi/pitivi.py
 
6
 
 
7
# a quick cvs co to ease the transition
 
8
if test ! -d common;
 
9
then
 
10
  echo "+ getting common/ from cvs"
 
11
  if test -e CVS/Tag
 
12
  then
 
13
    TAG="-r `tail -c +2 CVS/Tag`"
 
14
  fi
 
15
  cvs -d:pserver:anoncvs@anoncvs.freedesktop.org:/cvs/gstreamer co $TAG common
 
16
fi
 
17
 
 
18
# source helper functions
 
19
if test ! -f common/gst-autogen.sh;
 
20
then
 
21
  echo There is something wrong with your source tree.
 
22
  echo You are missing common/gst-autogen.sh
 
23
  exit 1
 
24
fi
 
25
. common/gst-autogen.sh
 
26
 
 
27
CONFIGURE_DEF_OPT=''
 
28
 
 
29
autogen_options $@
 
30
 
 
31
echo -n "+ check for build tools"
 
32
if test ! -z "$NOCHECK"; then echo " skipped"; else  echo; fi
 
33
version_check "autoconf" "$AUTOCONF autoconf autoconf-2.54 autoconf-2.53 autoconf-2.52" \
 
34
              "ftp://ftp.gnu.org/pub/gnu/autoconf/" 2 52 || DIE=1
 
35
version_check "automake" "$AUTOMAKE automake automake-1.7 automake-1.6 automake-1.5" \
 
36
              "ftp://ftp.gnu.org/pub/gnu/automake/" 1 6 || DIE=1
 
37
version_check "autopoint" "autopoint" \
 
38
              "ftp://ftp.gnu.org/pub/gnu/gettext/" 0 11 5 || DIE=1
 
39
version_check "libtoolize" "$LIBTOOLIZE libtoolize" \
 
40
              "ftp://ftp.gnu.org/pub/gnu/libtool/" 1 5 0 || DIE=1
 
41
version_check "pkg-config" "" \
 
42
              "http://www.freedesktop.org/software/pkgconfig" 0 8 0 || DIE=1
 
43
 
 
44
die_check $DIE
 
45
 
 
46
autoconf_2_52d_check || DIE=1
 
47
aclocal_check || DIE=1
 
48
autoheader_check || DIE=1
 
49
 
 
50
die_check $DIE
 
51
 
 
52
# if no arguments specified then this will be printed
 
53
if test -z "$*"; then
 
54
  echo "+ checking for autogen.sh options"
 
55
  echo "  This autogen script will automatically run ./configure as:"
 
56
  echo "  ./configure $CONFIGURE_DEF_OPT"
 
57
  echo "  To pass any additional options, please specify them on the $0"
 
58
  echo "  command line."
 
59
fi
 
60
 
 
61
toplevel_check $srcfile
 
62
 
 
63
# autopoint
 
64
#    older autopoint (< 0.12) has a tendency to complain about mkinstalldirs
 
65
if test -x mkinstalldirs; then rm mkinstalldirs; fi
 
66
#    first remove patch if necessary, then run autopoint, then reapply
 
67
if test -f po/Makefile.in.in;
 
68
then
 
69
  patch -p0 -R < common/gettext.patch
 
70
fi
 
71
tool_run "$autopoint --force"
 
72
patch -p0 < common/gettext.patch
 
73
 
 
74
tool_run "$aclocal" "-I m4 -I common/m4 $ACLOCAL_FLAGS"
 
75
tool_run "$libtoolize" "--copy --force"
 
76
# tool_run "$autoheader"
 
77
 
 
78
# touch the stamp-h.in build stamp so we don't re-run autoheader in maintainer mode -- wingo
 
79
echo timestamp > stamp-h.in 2> /dev/null
 
80
 
 
81
tool_run "$autoconf"
 
82
tool_run "$automake" "-a -c"
 
83
 
 
84
# if enable exists, add an -enable option for each of the lines in that file
 
85
if test -f enable; then
 
86
  for a in `cat enable`; do
 
87
    CONFIGURE_FILE_OPT="--enable-$a"
 
88
  done
 
89
fi
 
90
 
 
91
# if disable exists, add an -disable option for each of the lines in that file
 
92
if test -f disable; then
 
93
  for a in `cat disable`; do
 
94
    CONFIGURE_FILE_OPT="$CONFIGURE_FILE_OPT --disable-$a"
 
95
  done
 
96
fi
 
97
 
 
98
test -n "$NOCONFIGURE" && {
 
99
  echo "+ skipping configure stage for package $package, as requested."
 
100
  echo "+ autogen.sh done."
 
101
  exit 0
 
102
}
 
103
 
 
104
echo "+ running configure ... "
 
105
test ! -z "$CONFIGURE_DEF_OPT" && echo "  ./configure default flags: $CONFIGURE_DEF_OPT"
 
106
test ! -z "$CONFIGURE_EXT_OPT" && echo "  ./configure external flags: $CONFIGURE_EXT_OPT"
 
107
test ! -z "$CONFIGURE_FILE_OPT" && echo "  ./configure enable/disable flags: $CONFIGURE_FILE_OPT"
 
108
echo
 
109
 
 
110
./configure $CONFIGURE_DEF_OPT $CONFIGURE_EXT_OPT $CONFIGURE_FILE_OPT || {
 
111
        echo "  configure failed"
 
112
        exit 1
 
113
}
 
114
 
 
115
# aclocal -I common || exit 1
 
116
# libtoolize --force || exit 1
 
117
# # autoheader || exit 1
 
118
# autoconf || exit 1
 
119
# automake -a || exit 1
 
120
# echo "./autogen.sh $@" > autoregen.sh
 
121
# chmod +x autoregen.sh
 
122
# ./configure $@