r23766 - in /trunk/libperldoc-search-perl/debian: changelog rules

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Mon Aug 4 20:44:05 UTC 2008


Author: gregoa
Date: Mon Aug  4 20:43:53 2008
New Revision: 23766

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=23766
Log:
Refresh debian/rules, changes: don't ignore errors of make clean.

Modified:
    trunk/libperldoc-search-perl/debian/changelog
    trunk/libperldoc-search-perl/debian/rules

Modified: trunk/libperldoc-search-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperldoc-search-perl/debian/changelog?rev=23766&op=diff
==============================================================================
--- trunk/libperldoc-search-perl/debian/changelog (original)
+++ trunk/libperldoc-search-perl/debian/changelog Mon Aug  4 20:43:53 2008
@@ -11,6 +11,7 @@
   * Add debian/watch.
   * debian/rules: delete /usr/lib/perl5 only if it exists.
   * Switch patch system from dpatch to quilt.
+  * Refresh debian/rules, changes: don't ignore errors of make clean.
 
  -- gregor herrmann <gregoa at debian.org>  Sun, 15 Jun 2008 16:47:19 +0200
 

Modified: trunk/libperldoc-search-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libperldoc-search-perl/debian/rules?rev=23766&op=diff
==============================================================================
--- trunk/libperldoc-search-perl/debian/rules (original)
+++ trunk/libperldoc-search-perl/debian/rules Mon Aug  4 20:43:53 2008
@@ -1,43 +1,49 @@
 #!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
 
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
 export PERL_MM_USE_DEFAULT=1
 
 include /usr/share/quilt/quilt.make
 
-PACKAGE=$(shell dh_listpackages)
-
-ifndef PERL
-PERL = /usr/bin/perl
-endif
-
-TMP = $(CURDIR)/debian/$(PACKAGE)
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
 build-stamp: $(QUILT_STAMPFN)
 	dh_testdir
 	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE) OPTIMIZE="-Wall -O2 -g"
-	touch build-stamp
+	$(MAKE)
+	$(MAKE) test
+	touch $@
 
-clean: clean1 unpatch
-clean1:
+clean: unpatch
 	dh_testdir
 	dh_testroot
-	-$(MAKE) distclean
 	dh_clean build-stamp install-stamp
+	[ ! -f Makefile ] || $(MAKE) realclean
 
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
-	$(MAKE) test
 	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
-	touch install-stamp
+	[ ! -d $(TMP)/usr/lib/perl5 ] || \
+		rmdir --ignore-fail-on-non-empty --parents --verbose \
+		$(TMP)/usr/lib/perl5
+	touch $@
 
 binary-arch:
-# We have nothing to do by default.
+# We have nothing to do here for an architecture-independent package
 
 binary-indep: build install
 	dh_testdir
@@ -52,8 +58,5 @@
 	dh_md5sums
 	dh_builddeb
 
-source diff:                                                                  
-	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
-
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary patch unpatch clean1
+.PHONY: build clean binary-indep binary-arch binary install




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