r26620 - in /trunk/libdevel-ebug-perl/debian: changelog rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Mon Nov 3 22:19:52 UTC 2008


Author: gregoa
Date: Mon Nov  3 22:19:49 2008
New Revision: 26620

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26620
Log:
debian/rules: call `perl Build install' manually to work around
installation of .packlist file.

Modified:
    trunk/libdevel-ebug-perl/debian/changelog
    trunk/libdevel-ebug-perl/debian/rules

Modified: trunk/libdevel-ebug-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ebug-perl/debian/changelog?rev=26620&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/debian/changelog (original)
+++ trunk/libdevel-ebug-perl/debian/changelog Mon Nov  3 22:19:49 2008
@@ -29,6 +29,8 @@
       copy&paste error
   * Remove patches and quilt from build dependencies, dh7 handles the build
     just fine.
+  * debian/rules: call `perl Build install' manually to work around
+    installation of .packlist file.
 
  -- Jose Luis Rivas <ghostbar38 at gmail.com>  Sat, 01 Nov 2008 22:43:04 -0430
 

Modified: trunk/libdevel-ebug-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-ebug-perl/debian/rules?rev=26620&op=diff
==============================================================================
--- trunk/libdevel-ebug-perl/debian/rules (original)
+++ trunk/libdevel-ebug-perl/debian/rules Mon Nov  3 22:19:49 2008
@@ -1,4 +1,8 @@
 #!/usr/bin/make -f
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
 build-stamp:
@@ -10,7 +14,9 @@
 
 install: install-stamp
 install-stamp: build-stamp
-	dh install
+	dh install --before dh_auto_install
+	$(PERL) Build install destdir=$(TMP) create_packlist=0
+	dh install --after dh_auto_install
 	touch $@
 
 binary-arch:




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