r14675 - in /trunk/libtk-pod-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sun Feb 10 02:32:35 UTC 2008


Author: gregoa-guest
Date: Sun Feb 10 02:32:34 2008
New Revision: 14675

URL: http://svn.debian.org/wsvn/?sc=1&rev=14675
Log:
debian/rules:
  - use $(QUILT_STAMPFN) as a target dependency
  - use $(PERL) instead of hard-coding perl
  - don't install README (doesn't provide any useful information)

Modified:
    trunk/libtk-pod-perl/debian/changelog
    trunk/libtk-pod-perl/debian/rules

Modified: trunk/libtk-pod-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libtk-pod-perl/debian/changelog?rev=14675&op=diff
==============================================================================
--- trunk/libtk-pod-perl/debian/changelog (original)
+++ trunk/libtk-pod-perl/debian/changelog Sun Feb 10 02:32:34 2008
@@ -7,8 +7,12 @@
   * Set debhelper compatibility level to 6.
   * Set Standards-Version to 3.7.3 (no changes needed).
   * Refresh patch invalid_char_pod.patch.
+  * debian/rules:
+    - use $(QUILT_STAMPFN) as a target dependency
+    - use $(PERL) instead of hard-coding perl
+    - don't install README (doesn't provide any useful information)
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 10 Feb 2008 03:24:42 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sun, 10 Feb 2008 03:25:52 +0100
 
 libtk-pod-perl (0.9937-1) unstable; urgency=low
 

Modified: trunk/libtk-pod-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libtk-pod-perl/debian/rules?rev=14675&op=diff
==============================================================================
--- trunk/libtk-pod-perl/debian/rules (original)
+++ trunk/libtk-pod-perl/debian/rules Sun Feb 10 02:32:34 2008
@@ -8,12 +8,16 @@
 package := $(shell dh_listpackages)
 debtmp  := $(CURDIR)/debian/$(package)
 
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
 include /usr/share/quilt/quilt.make
 
 build: build-stamp
-build-stamp: debian/stamp-patched
+build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
-	perl Makefile.PL verbose INSTALLDIRS=vendor
+	$(PERL) Makefile.PL verbose INSTALLDIRS=vendor
 	$(MAKE)
 	xvfb-run $(MAKE) test
 
@@ -36,8 +40,8 @@
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-	dh_perl	
-	dh_installdocs README TODO
+	dh_perl
+	dh_installdocs TODO
 	dh_installchangelogs Changes
 	dh_compress
 	dh_fixperms




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