]> git.draconx.ca Git - cdecl99.git/blob - bootstrap
Release 1.3.
[cdecl99.git] / bootstrap
1 #!/bin/sh
2 #
3 # Copyright © 2011-2012, 2021-2023 Nick Bowler
4 #
5 # Simple script to get started from a fresh git checkout.
6 #
7 # License WTFPL2: Do What The Fuck You Want To Public License, version 2.
8 # This is free software: you are free to do what the fuck you want to.
9 # There is NO WARRANTY, to the extent permitted by law.
10
11 scriptname=$0
12
13 err() {
14         printf '%s: %s\n' "$scriptname" "$*" 1>&2
15 }
16
17 die() {
18         err "$@"
19         exit 1
20 }
21
22 : ${AUTORECONF=autoreconf}
23 : ${AUTOMAKE=automake}
24 : ${GNULIB=gnulib}
25 : ${GIT=git}
26 : ${PERL=perl}
27
28 $GIT submodule update --init || err "Failed to update submodules from git."
29
30 if test -x $GNULIB/gnulib-tool; then
31   $GNULIB/gnulib-tool --update -S || die "Failed to update Gnulib."
32
33   exec 3>lib/symfiles.tmp 4<lib/symfiles.tmp
34   rm -f lib/symfiles.tmp
35
36   shared_modules='threadlib'
37   set x --extract-recursive-dependencies $shared_modules; shift
38   (set -x; $GNULIB/gnulib-tool "$@" >&3 ) || die "gnulib-tool failed"
39   shared_modules=`LC_ALL=C sort -u <&4`
40
41   set x --extract-filelist $shared_modules; shift
42   ( set -x; $GNULIB/gnulib-tool "$@" >&3 ) || die "gnulib-tool failed"
43   <&4 grep '^lib/.*[.][^vh][^.]*$' | LC_ALL=C sort -u >lib/symfiles
44 else
45   err "Gnulib sources are not properly installed in $GNULIB/"
46   cat >&2 <<'EOF'
47
48 To bootstrap this package using an external Gnulib, you can set the GNULIB
49 environment variable to indicate the location of the Gnulib sources.
50 EOF
51
52   test ! -f configure || cat >&2 <<'EOF'
53
54 However, it seems this package is already bootstrapped.  It should not
55 normally be necessary to run this script from a release tarball.
56 EOF
57   exit 1
58 fi
59
60 $PERL common/scripts/fix-gnulib.pl -o lib/gnulib.mk -i lib/gnulib.mk.in \
61         || die "Failed to fixup Gnulib makefile fragment."
62
63 # Punt some automake-generated files so that Gentoo's wrapper script doesn't
64 # try to detect the automake version in use.
65 rm -f Makefile.in aclocal.m4
66 $AUTORECONF -fis || exit
67
68 amdir=`$AUTOMAKE --print-libdir`
69 if test -f "$amdir/INSTALL"; then
70   ln -sf "$amdir/INSTALL" INSTALL
71 fi