]> git.draconx.ca Git - slotifier.git/blob - bootstrap
Fix radius/diameter confusion in overlap search.
[slotifier.git] / bootstrap
1 #!/bin/sh
2 #
3 # Copyright © 2011-2012, 2021 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 () { printf '%s: %s\n' "$scriptname" "$*" 1>&2; }
14 die () { err "$@"; exit 1; }
15
16 : ${AUTORECONF=autoreconf}
17 : ${AUTOMAKE=automake}
18 : ${GNULIB=gnulib}
19 : ${GIT=git}
20 : ${PERL=perl}
21
22 $GIT submodule update --init || err "Failed to update submodules from git."
23
24 if test -x $GNULIB/gnulib-tool; then
25         $GNULIB/gnulib-tool --update -S || die "Failed to update Gnulib."
26 else
27   err "Gnulib sources are not properly installed in $GNULIB/"
28   cat >&2 <<'EOF'
29
30 To bootstrap this package using an external Gnulib, you can set the GNULIB
31 environment variable to indicate the location of the Gnulib sources.
32 EOF
33
34   test ! -f configure || cat >&2 <<'EOF'
35
36 However, it seems this package is already bootstrapped.  It should not
37 normally be necessary to run this script from a release tarball.
38 EOF
39   exit 1
40 fi
41
42 $PERL common/scripts/fix-gnulib.pl -o lib/gnulib.mk -i lib/gnulib.mk.in ||
43   die "Failed to fixup Gnulib makefile fragment."
44
45 # Rewrite if ! ... construts produced by gnulib conditional dependencies
46 # as these fail in heirloom-sh.
47 sed 's/if ! *\(.*gnulib_enabled[^;]*\); then/if \1; then :; else/' \
48   m4/gnulib-comp.m4 >m4/gnulib-comp.m4.new || exit
49 mv -f m4/gnulib-comp.m4.new m4/gnulib-comp.m4 || exit
50
51 # Punt some automake-generated files so that Gentoo's wrapper script doesn't
52 # try to detect the automake version in use.
53 rm -f Makefile.in aclocal.m4
54 $AUTORECONF -fis || exit
55
56 amdir=`$AUTOMAKE --print-libdir`
57 if test -f "$amdir/INSTALL"; then
58   ln -sf "$amdir/INSTALL" INSTALL
59 fi