r11290 - in /trunk/libconfig-any-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Mon Dec 17 16:55:34 UTC 2007


Author: gregoa-guest
Date: Mon Dec 17 16:55:34 2007
New Revision: 11290

URL: http://svn.debian.org/wsvn/?sc=1&rev=11290
Log:
debian/rules:
  - call dh_clean before make clean
  - let install-stamp target depend on build-stamp (instead of install 
    on build)
  - use PREFIX and DESTDIR in make install
  - don't install README any more (duplicate of POD/manpage)
  - remove unused and commented out dh_* calls

Modified:
    trunk/libconfig-any-perl/debian/changelog
    trunk/libconfig-any-perl/debian/rules

Modified: trunk/libconfig-any-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libconfig-any-perl/debian/changelog?rev=11290&op=diff
==============================================================================
--- trunk/libconfig-any-perl/debian/changelog (original)
+++ trunk/libconfig-any-perl/debian/changelog Mon Dec 17 16:55:34 2007
@@ -8,6 +8,13 @@
   * Set Standards-Version to 3.7.3 (no further changes required).
   * debian/copyright: use generic download URL; be more verbose about
     author/contributors/copyright/.
+  * debian/rules:
+    - call dh_clean before make clean
+    - let install-stamp target depend on build-stamp (instead of install 
+      on build)
+    - use PREFIX and DESTDIR in make install
+    - don't install README any more (duplicate of POD/manpage)
+    - remove unused and commented out dh_* calls
 
  -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:28:16 +0200
 

Modified: trunk/libconfig-any-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libconfig-any-perl/debian/rules?rev=11290&op=diff
==============================================================================
--- trunk/libconfig-any-perl/debian/rules (original)
+++ trunk/libconfig-any-perl/debian/rules Mon Dec 17 16:55:34 2007
@@ -27,15 +27,15 @@
 clean:
 	dh_testdir
 	dh_testroot
+	dh_clean build-stamp install-stamp
 	[ ! -f Makefile ] || $(MAKE) distclean
-	dh_clean build-stamp install-stamp
 
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-	$(MAKE) install PREFIX=$(TMP)/usr
+	$(MAKE) install PREFIX=/usr DESTDIR=$(TMP)
 	rmdir --parents --ignore-fail-on-non-empty $(TMP)/usr/lib/perl5
 	touch install-stamp
 
@@ -45,12 +45,9 @@
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-#	dh_installexamples
-	dh_installdocs README
+	dh_installdocs
 	dh_installchangelogs Changes
 	dh_perl
-	dh_link
-	dh_strip
 	dh_compress
 	dh_fixperms
 	dh_installdeb




More information about the Pkg-perl-cvs-commits mailing list