]> git.street.me.uk Git - andy/viking.git/blobdiff - autogen.sh
Allow for getting more Wikipedia Waypoints (up to 20).
[andy/viking.git] / autogen.sh
index 1a953ded697eebb1293c602be00c0491461f1bd0..a5b137d9254228c2f44cf41879f2077b1785cf8a 100755 (executable)
@@ -1,10 +1,24 @@
 #!/bin/sh
+# Run this to generate all the initial makefiles, etc.
 
-# This file allows to 'bootstrap' the generation envir.
-# It must be used the first time the project is downloaded from the CVS.
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+PKG_NAME="viking"
+
+(test -f $srcdir/configure.ac \
+  && test -f $srcdir/README \
+  && test -d $srcdir/src) || {
+    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
+    echo " top-level $PKG_NAME directory"
+    exit 1
+}
+
+which gnome-autogen.sh || {
+    echo "You need to install gnome-common module and make"
+    echo "sure the gnome-autogen.sh script is in your \$PATH."
+    exit 1
+}
+
+ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I m4" REQUIRED_AUTOMAKE_VERSION=1.8 USE_GNOME2_MACROS=1 USE_COMMON_DOC_BUILD=yes . gnome-autogen.sh
 
-#libtoolize || exit 1
-aclocal -I m4 || exit 1
-autoheader || exit 1
-automake --add-missing || exit 1
-autoconf || exit 1