3 # Extended Template Library Bootstrap Script
4 # $Id: bootstrap,v 1.2 2005/01/04 01:54:14 darco Exp $
6 # This script creates the configure script and Makefile.in files,
7 # and also fixes a few things in both to ensure a smooth build
8 # on all compilers and platforms.
11 # Grab the current directory and move to our own
15 # Environment Variables
16 BOOTSTRAP_NAME="$(basename $0)"
20 [ -x /bin/cygpath ] && CONFIG_DIR="`cygpath -m -s "$CONFIG_DIR"`"
21 [ -x /bin/cygpath ] && CONFIG_DIR="`cygpath -u "$CONFIG_DIR"`"
22 [ -x /bin/cygpath ] && CURR_DIR="`cygpath -m -s "$CURR_DIR"`"
23 [ -x /bin/cygpath ] && CURR_DIR="`cygpath -u "$CURR_DIR"`"
25 . "$CONFIG_DIR/build.cfg"
28 s/@PACKAGE@/$PACKAGE/g;
29 s/@PACKAGE_NAME@/$PACKAGE_NAME/g;
30 s/@PACKAGE_BUGREPORT@/$PACKAGE_BUGREPORT/g;
31 s/@PACKAGE_TARNAME@/$PACKAGE_TARNAME/g;
32 s/@PACKAGE_VERSION@/$PACKAGE_VERSION/g;
33 s/@VERSION@/$VERSION/g;
34 s/@VERSION_MAJ@/$VERSION_MAJ/g;
35 s/@VERSION_MIN@/$VERSION_MIN/g;
36 s/@VERSION_REV@/$VERSION_REV/g;
37 s/@VERSION_REL@/$VERSION_REL/g;
38 s'@SVN_REPOSITORY@'$SVN_REPOSITORY'g;
42 # Required automake and autoconf versions
46 export WANT_AUTOMAKE=1.6;
47 export WANT_AUTOCONF_2_5=1;
49 # Define the output function
51 echo $BOOTSTRAP_NAME: $*
54 # Define the cleanup function
57 rm -fr config.cache autom4te.cache configure.in $TEMPFILE
60 output Prepairing build environment for $PACKAGE-$VERSION...
62 # Look for the CVS directory. If we don't find it, we need to
63 # ask the user if they know what they are doing.
64 ( test -d CVS || test -d .svn ) ||
67 $BOOTSTRAP_NAME: warning: This shell script is intended for those
68 $BOOTSTRAP_NAME: warning: who either know what they are doing or
69 $BOOTSTRAP_NAME: warning: or downloaded this program from the CVS
70 $BOOTSTRAP_NAME: warning: repository. See README for more details.
71 $BOOTSTRAP_NAME: warning: To avoid seeing this message in the future,
72 $BOOTSTRAP_NAME: warning: create an empty directory called 'CVS'."
73 echo Waiting for 15 seconds...
77 # Create the temporary file
78 output Creating temporary file...
79 TEMPFILE=`mktemp /tmp/$BOOTSTRAP_NAME.XXXXXX` ||
81 output ERROR: Unable to create temporary file!
86 (which autoconf > /dev/null 2>&1 ) ||
88 output error: 'Could not find GNU autoconf!'
89 output You need to download and install GNU autoconf v2.52 or higher.
90 output '<ftp://ftp.gnu.org/gnu/autoconf>'
95 # Check autoconf version
96 output Using $(autoconf --version | grep utoconf)
97 autoconf --version | grep -q "$AUTOCONF_VERSION" || echo \
98 "$BOOTSTRAP_NAME: warning: Unexpected version of GNU Autoconf (expected $AUTOCONF_VERSION)
99 $BOOTSTRAP_NAME: warning: *** Bootstrap process may fail!"
102 (which automake > /dev/null 2>&1 ) ||
104 output error: 'Could not find GNU automake!'
105 output You need to download and install GNU automake v1.5 or higher.
106 output '<ftp://ftp.gnu.org/gnu/automake>'
111 # Check automake version
112 output Using $(automake --version | grep utomake)
113 automake --version | grep -q "$AUTOMAKE_VERSION" || echo \
114 "$BOOTSTRAP_NAME: warning: Unexpected version of GNU Automake (expected $AUTOMAKE_VERSION)
115 $BOOTSTRAP_NAME: warning: *** Bootstrap process may fail!"
117 for FILENAME in doxygen.cfg pkgconfig.pc project.spec ; do {
118 output Creating $FILENAME...
119 sed "$SED_SCRIPT" < "$CONFIG_DIR/$FILENAME.in" > $FILENAME;
122 output Renaming pkgconfig.pc to $PACKAGE_TARNAME.pc.in...
123 mv pkgconfig.pc "$PACKAGE_TARNAME.pc.in"
125 output Renaming project.spec to $PACKAGE.spec...
126 mv project.spec "$PACKAGE.spec"
128 output Finishing up $PACKAGE.spec...
129 echo %changelog >> "$PACKAGE.spec"
130 cat NEWS >> "$PACKAGE.spec"
132 output Creating configure.in from configure.ac...
133 sed "$SED_SCRIPT" < "$CONFIG_DIR/configure.ac" > configure.in;
135 output Setting up build environment...
137 # Set the shell to output what we are doing
140 # Create all of the build environment files
142 aclocal -I "$CONFIG_DIR" $ACLOCAL_FLAGS &&
144 autoconf -o configure &&
145 automake --foreign --add-missing --copy --include-deps
148 # Something went wrong...
150 echo $BOOTSTRAP_NAME: Failure.
155 # Turn off echoing of commands
158 #output Patching configure script to look for gcc3...
160 #s/g++ c++/g++3 g++ c++/;
161 #s/gcc cc/gcc3 gcc cc/;
162 #s:PREFIX/include:PREFIX/include/ETL:;
163 #" < configure > $TEMPFILE
164 #cp $TEMPFILE configure
166 # Patch the Makefile.am files
167 for filename in $(find Makefile.in ETL test -name Makefile.in) ; do {
168 echo $BOOTSTRAP_NAME: Patching $filename
170 cp $filename $TEMPFILE &&
173 s;-I"'$(srcdir)'" ;-I"'$(top_srcdir)'" ;
174 s;configure.in;config/configure.ac;
175 " < $TEMPFILE > $filename
179 echo $BOOTSTRAP_NAME: Failure. Unable to patch $filename.
185 echo $BOOTSTRAP_NAME: Creating Makefile...
188 ./configure --enable-maintainer-mode
192 ./configure --enable-maintainer-mode
196 ./configure --enable-maintainer-mode
200 ./configure --enable-maintainer-mode
204 ./configure --enable-maintainer-mode
211 echo $BOOTSTRAP_NAME: Complete.
215 # Move back to the current directory