r9597 - in /trunk/libtree-simple-perl/debian: changelog rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Nov 19 21:41:24 UTC 2007


Author: dmn
Date: Mon Nov 19 21:41:24 2007
New Revision: 9597

URL: http://svn.debian.org/wsvn/?sc=1&rev=9597
Log:
* More debian/rules cleanup
  + Drop DESTDIR= setting and parameter to dh_builddeb
  + Properly use DESTDIR and PREFIX when invoking $(MAKE) install

Modified:
    trunk/libtree-simple-perl/debian/changelog
    trunk/libtree-simple-perl/debian/rules

Modified: trunk/libtree-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtree-simple-perl/debian/changelog?rev=9597&op=diff
==============================================================================
--- trunk/libtree-simple-perl/debian/changelog (original)
+++ trunk/libtree-simple-perl/debian/changelog Mon Nov 19 21:41:24 2007
@@ -1,5 +1,6 @@
 libtree-simple-perl (1.18-1) unstable; urgency=low
 
+  [ gregor herrmann ]
   * New upstream release.
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
     field (source stanza); Homepage field (source stanza). Removed: XS-
@@ -8,6 +9,11 @@
   * debian/rules: make install target depend on build-stamp.
   * Update debian/watch.
   * Add generic upstream URL to debian/copyright.
+
+  [ Damyan Ivanov ]
+  * More debian/rules cleanup
+    + Drop DESTDIR= setting and parameter to dh_builddeb
+    + Properly use DESTDIR and PREFIX when invoking $(MAKE) install
 
  -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 17 Nov 2007 23:13:01 +0100
 

Modified: trunk/libtree-simple-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtree-simple-perl/debian/rules?rev=9597&op=diff
==============================================================================
--- trunk/libtree-simple-perl/debian/rules (original)
+++ trunk/libtree-simple-perl/debian/rules Mon Nov 19 21:41:24 2007
@@ -6,8 +6,6 @@
 PACKAGE=$(shell dh_listpackages)
 
 PERL = /usr/bin/perl
-
-DESTDIR=..
 
 TMP     =$(CURDIR)/debian/$(PACKAGE)
 
@@ -42,7 +40,7 @@
 	dh_clean -k
 	dh_installdirs
 
-	$(MAKE) install PREFIX=$(TMP)/usr
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
 
 	# Remove any empty directories
 
@@ -66,7 +64,7 @@
 	dh_perl
 	dh_gencontrol
 	dh_md5sums
-	dh_builddeb --destdir=$(DESTDIR)
+	dh_builddeb
 
 binary: binary-indep binary-arch
 .PHONY: build clean binary-indep binary-arch binary




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