File: autogen.sh

package info (click to toggle)
wflogs 0.9.8-6.2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 4,344 kB
  • ctags: 3,749
  • sloc: ansic: 12,166; sh: 8,185; cpp: 6,424; lex: 1,525; yacc: 1,431; makefile: 731; sed: 16
file content (101 lines) | stat: -rwxr-xr-x 2,800 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

srcdir=`dirname $0`

# name of the current package
PKG_NAME=`basename \`(cd $srcdir; pwd)\``

# default configure options
conf_flags="--enable-debug"

DIE=0
libtool=0
gettext=0

missing() {
  echo
  echo "**Error**: You must have \`$1' installed to compile $PKG_NAME."
  echo "Download the appropriate package for your distribution,"
  echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
  DIE=1
}

mygettextize() {
  local version=$(gettextize --version | sed -n '1s/.* //p')
  local major=$(echo $version | sed 's/^\([^.]*\)\..*/\1/')
  local minor=$(echo $version | sed 's/^[^.]*\.\([^.]*\)\..*/\1/')
  local version=$(gettextize --version | sed -n '1s/.* //;s/^.*\.\(.*\)\..*$/\1/;p;q')
  if test "$major" -eq 0 -a "$minor" -lt 11; then
    echo "no" | gettextize --force --copy
  else
    gettextize --no-changelog --intl --force --copy
    # restore the old files that should not have been modified
    cp Makefile.am~ Makefile.am
    cp configure.in~ configure.in
  fi
}

(automake --version) < /dev/null > /dev/null 2>&1 || missing automake

(autoconf --version) < /dev/null > /dev/null 2>&1 || missing autoconf

grep "^AM_GNU_GETTEXT" $srcdir/configure.in >/dev/null && gettext=1
grep "^AM_PROG_LIBTOOL" $srcdir/configure.in >/dev/null && libtool=1

if test "$gettext" -eq 1; then
  grep "sed.*POTFILES" $srcdir/configure.in >/dev/null || \
  (gettextize --version) < /dev/null > /dev/null 2>&1 || missing gettext
fi

if test "$libtool" -eq 1; then
  (libtoolize --version) < /dev/null > /dev/null 2>&1 || missing libtool
fi

if test "$DIE" -eq 1; then
  exit 1
fi

if test -z "$*"; then
  echo "**Warning**: I am going to run \`configure' with default arguments."
  echo "If you wish to pass any others to it, please specify them on the"
  echo \`$0\'" command line."
  echo
else
  unset conf_flags
fi

if test "$gettext" -eq 1; then
  # Apparently, gettextize should not be used automatically, thus not here.
  # See autopoint instead? RV@@8
  echo "Running gettextize...  Ignore non-fatal messages."
  mygettextize

  if test -d $srcdir/po -a ! -f $srcdir/po/POTFILES.in ; then
    echo "Creating $srcdir/po/POTFILES.in..."
    find $srcdir \( -path "./intl" -o -path "./po" \) -prune -o \
      -name "*.cc" -fprintf po/POTFILES.in "%P\n"
  fi
fi

if test  "$libtool" -eq 1; then
  echo "Running libtoolize..."
  libtoolize --force --copy
fi

echo "Running aclocal..."
aclocal
echo "Running autoheader..."
autoheader
echo "Running automake..."
automake
echo "Running autoconf ..."
autoconf

if test "x$NOCONFIGURE" = "x"; then
  echo Running $srcdir/configure $conf_flags "$@" ...
  $srcdir/configure $conf_flags "$@" &&
  echo Now type \`make\' to compile $PKG_NAME
else
  echo Skipping configure process.
fi