X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=debian%2Frules;h=f9a196a45207fde3176537ea88a4d928f1feb8e2;hp=0c5b9dea7ae9bcd077bf045614651b254bdba6c5;hb=7f1928b63d65cece25a445f9813a25e84893e08c;hpb=0a48a12183e728b39c37c65bc9a47da2933652f3 diff --git a/debian/rules b/debian/rules index 0c5b9de..f9a196a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,20 +1,29 @@ -#!/usr/bin/make -f -# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. +#! /usr/bin/make -f -export DH_VERBOSE=1 +# Parsing of DEB_BUILD_OPTIONS flags. +# Note that nostrip is handled automatically by debhelper. +CFLAGS := -g -Wall +ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + MAKEFLAGS += -j$(NUMJOBS) +endif # Temporary root -DEBTMP := $(shell pwd)/debian/tmp +DEBTMP := $(CURDIR)/debian/tmp build: build-stamp build-stamp: dh_testdir - -test -r /usr/share/misc/config.sub && cp -f /usr/share/misc/config.sub config.sub - -test -r /usr/share/misc/config.guess && cp -f /usr/share/misc/config.guess config.guess - ./configure \ + CFLAGS="$(CFLAGS)" ./configure \ --mandir='$${prefix}/share/man' \ - --enable-secure-statd - $(MAKE) + --disable-tirpc \ + --with-tcp-wrappers + $(MAKE) $(MAKEFLAGS) touch build-stamp clean: @@ -22,25 +31,18 @@ clean: dh_testroot rm -f build-stamp rm -rf $(DEBTMP) - -$(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) distclean dh_clean binary-indep: build binary-arch: build dh_testdir dh_testroot - dh_clean -k + dh_prep dh_installdirs mkdir $(DEBTMP) $(MAKE) DESTDIR='$(DEBTMP)' install dh_install - - # Fix up the manpages - for f in lockd statd showmount; do \ - perl -pi -e "s#/usr(/sbin/(rpc\\.)?$$f)#\$$1#g" \ - debian/tmp/usr/share/man/man8/$$f.8; \ - done; - dh_installdocs -A dh_installdocs -pnfs-common debian/README.Debian.nfsv4 install -m 0755 debian/nfs-common.init debian/nfs-common/etc/init.d/nfs-common @@ -51,6 +53,7 @@ binary-arch: build dh_strip dh_compress dh_fixperms + chmod u+s debian/nfs-common/sbin/mount.nfs dh_installdeb dh_shlibdeps dh_gencontrol