X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=debian%2Frules;h=cea6176ad37d2dad1a80c428a50238d0e3eb539f;hp=58eb43abf692e1876afa6a044213a8f52a9880cd;hb=1d47db69329115bac31b3a282b04374375a2a8e8;hpb=952e745e0119f574a110b94bcf73a88e96aa682b diff --git a/debian/rules b/debian/rules index 58eb43a..cea6176 100755 --- a/debian/rules +++ b/debian/rules @@ -1,8 +1,8 @@ #!/usr/bin/make -f # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 +#export DH_COMPAT=5 +export DH_VERBOSE=1 # You can use gcc 2.7.2 if it's installed, # but I don't think that's necessary any more. @@ -13,8 +13,18 @@ DEBTMP := $(shell pwd)/debian/tmp build: build-stamp build-stamp: + # Debian source diffs don't reflect removals. + # This kludge will suffice until the next upstream version. *sigh* + rm -f debian/nfs-common.config \ + debian/nfs-common.templates \ + debian/nfs-kernel-server.config \ + debian/nfs-kernel-server.templates + dh_testdir # Add here commands to compile the package. + -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 + autoconf $(SETGCC) ./configure \ --mandir='$${prefix}/share/man' \ --enable-secure-statd @@ -26,7 +36,10 @@ clean: dh_testroot rm -f build-stamp # Add here commands to clean up after the build process. + -test -r /usr/share/misc/config.sub && rm -f config.sub + -test -r /usr/share/misc/config.guess && rm -f config.guess -$(MAKE) distclean + rm -f config.log configure dh_clean # Build architecture-independent files here. @@ -39,6 +52,7 @@ binary-arch: build dh_testroot dh_clean -k dh_installdirs + dh_install # Add here commands to install the files into debian/tmp $(MAKE) install_prefix='$(DEBTMP)' install dh_movefiles @@ -51,18 +65,18 @@ binary-arch: build done; \ rm -f tmp/usr/sbin/*quota*; \ rm -f tmp/usr/share/man/man8/*quota*; \ - rm -rf tmp/var/lib/nfs/* + rm -rf tmp/var/lib/nfs/*; \ + cp --preserve=timestamps etc.exports tmp/etc/exports # Fixups End Here # - dh_installdocs ChangeLog README + dh_installdocs -A dh_installexamples # dh_installmenu dh_installinit -n # dh_installcron # dh_installmanpages # dh_undocumented - dh_installchangelogs + dh_installchangelogs ChangeLog dh_strip - dh_suidregister dh_compress dh_fixperms dh_installdeb