increase build verbosity, re-enable parallel builds
[debian/tar] / debian / rules
index 2dbe218722f84549e986bf226bc4d14aaf40bc07..98ee7e5b339bb92f0d7fc7736d2fc39902de1716 100755 (executable)
@@ -6,15 +6,30 @@ ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
 CONFARGS = --host=$(DEB_HOST_GNU_TYPE)
 endif
 
+CFLAGS = `dpkg-buildflags --get CFLAGS`
+CFLAGS += -Wall
+LDFLAGS += `dpkg-buildflags --get LDFLAGS`
+CPPFLAGS = `dpkg-buildflags --get CPPFLAGS`
+
+export BUILD_DATE = $(shell dpkg-parsechangelog | sed -n -e 's/^Date: //p')
+
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+  NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+  MAKEFLAGS += -j$(NUMJOBS)
+endif
+
 configure: configure-stamp
 configure-stamp:
        dh_testdir
        cp -f /usr/share/misc/config.sub build-aux/config.sub
        cp -f /usr/share/misc/config.guess build-aux/config.guess
-       RSH="/usr/bin/rsh" CFLAGS="-O2 -g -Wall" ./configure \
+       autoreconf --force -v --install
+       RSH="/usr/bin/rsh" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure \
                --prefix=/usr \
-               --libexecdir=/usr/sbin \
+               --libexecdir=/usr/lib/tar \
+               --enable-backup-scripts \
                --with-lzma=xz \
+               --disable-silent-rules \
                $(CONFARGS) 
        touch configure-stamp
 
@@ -23,7 +38,8 @@ build-arch: build-stamp
 build-indep: build-stamp
 build-stamp: configure-stamp
        dh_testdir
-       RSH="/usr/bin/rsh" CFLAGS="-O2 -g -Wall -fno-gnu89-inline" $(MAKE)
+       RSH="/usr/bin/rsh" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \
+               LDFLAGS="$(LDFLAGS)" $(MAKE) $(MAKEFLAGS)
 
 ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
 ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
@@ -33,7 +49,6 @@ ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
          echo "Sorry, but the test suite is not designed to be run as root."; \
          exit 1 ;\
        fi
-       (cd tests ; $(MAKE) clean)
        $(MAKE) check
 endif
 endif
@@ -55,9 +70,15 @@ install: build
        dh_installdirs
 
        make install bindir=`pwd`/debian/tar/bin prefix=`pwd`/debian/tar/usr \
-               libexecdir=`pwd`/debian/tar/usr/sbin 
+               libexecdir=`pwd`/debian/tar/usr/lib/tar 
        install -m 755 debian/rmt.sh debian/tar/etc/rmt
-       mv debian/tar/usr/sbin/rmt debian/tar/usr/sbin/rmt-tar
+       mv debian/tar/usr/lib/tar/rmt debian/tar/usr/sbin/rmt-tar
+       install -m 755 debian/tarcat debian/tar/usr/sbin/tarcat
+
+       mv debian/tar/usr/sbin/backup debian/tar-scripts/usr/sbin/tar-backup
+       mv debian/tar/usr/sbin/restore debian/tar-scripts/usr/sbin/tar-restore
+       mv debian/tar/usr/lib/tar/backup.sh debian/tar-scripts/usr/lib/tar/
+       mv debian/tar/usr/lib/tar/dump-remind debian/tar-scripts/usr/lib/tar/
 
 # Build architecture-independent files here.
 binary-indep: build install
@@ -74,7 +95,7 @@ binary-arch: build install
        dh_installexamples
        dh_installmenu
        dh_installcron
-       dh_installman debian/tar.1 debian/rmt.8
+       dh_installman debian/tar.1 debian/rmt.8 debian/tarcat.1
        mv debian/tar/usr/share/man/man8/rmt.8 \
           debian/tar/usr/share/man/man8/rmt-tar.8
        dh_installinfo