Remove some useless code
[yazproxy-moved-to-github.git] / buildconf.sh
index 17d2eeb..d6d56c2 100755 (executable)
@@ -1,16 +1,56 @@
 #!/bin/sh
-# $Id: buildconf.sh,v 1.1 2004-04-11 11:36:46 adam Exp $
-set -x
-dir=`aclocal --print-ac-dir`
-if [ -f $dir/yaz.m4 ]; then
-       aclocal
-else
-       aclocal -I . 
+
+if [ -d .git ]; then
+    git submodule init
+    git submodule update
 fi
-libtoolize --force 
-automake -a 
-automake -a 
-autoconf
-if [ -f config.cache ]; then
-       rm config.cache
+
+. m4/id-config.sh
+
+if $enable_help; then
+    cat <<EOF
+
+Build the Makefiles with the configure command.
+  ./configure [--someoption=somevalue ...]
+
+For help on options or configuring run
+  ./configure --help
+
+Build and install binaries with the usual
+  make
+  make check
+  make install
+
+Build distribution tarball with
+  make dist
+
+Verify distribution tarball with
+  make distcheck
+
+EOF
+    if [ -f /etc/debian_version ]; then
+        cat <<EOF
+Or just build the Debian packages without configuring
+  dpkg-buildpackage -rfakeroot
+
+When building from Git, you need these Debian packages:
+  autoconf, automake, libtool, gcc, bison, any tcl,
+  xsltproc, docbook, docbook-xml, docbook-xsl,
+  libxslt1-dev, libssl-dev, libreadline5-dev, libwrap0-dev,
+  libpcap0.8-dev
+
+Also perhaps: libgnutls-dev libicu-dev
+
+And if you want to make a Debian package: dpkg-dev fakeroot debhelper
+(Then run "dpkg-buildpackage -rfakeroot" in this directory.)
+
+EOF
+    fi
+    if [ "`uname -s`" = FreeBSD ]; then
+        cat <<EOF
+When building from a Git, you need these FreeBSD Ports:
+  autoconf259, automake19, libtool15, bison, tcl84,
+  docbook-xsl, libxml2, libxslt, g++-4.0, make
+EOF
+    fi
 fi