Codebase list libfreezethaw-perl / 658abd5
s/UNRELEASED/unstable/ Gregor Herrmann 16 years ago
2 changed file(s) with 29 addition(s) and 38 deletion(s). Raw diff Collapse all Expand all
0 libfreezethaw-perl (0.43-4) UNRELEASED; urgency=low
0 libfreezethaw-perl (0.43-4) unstable; urgency=low
11
22 * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
33 field (source stanza); Homepage field (source stanza). Removed: XS-
44 Vcs-Svn fields.
55 * debian/watch: use dist-based URL.
6 * debian/rules: delete /usr/lib/perl5 only if it exists (closes: #468025).
6 * debian/rules:
7 - delete /usr/lib/perl5 only if it exists (closes: #468025)
8 - update based on dh-make-perl's templates
9 - don't install README any more (contains only a copyright notice which
10 is in debian/copyright anyway)
711 * Set Standards-Version to 3.7.3 (no changes).
812 * debian/copyright: add upstream source location.
913
10 -- gregor herrmann <gregor+debian@comodo.priv.at> Sat, 08 Mar 2008 14:35:21 +0100
14 -- gregor herrmann <gregor+debian@comodo.priv.at> Sat, 08 Mar 2008 14:39:31 +0100
1115
1216 libfreezethaw-perl (0.43-3) unstable; urgency=low
1317
00 #!/usr/bin/make -f
1 #-*- makefile -*-
2 # Made with the aid of dh_make, by Craig Small
3 # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
4 # Some lines taken from debmake, by Christoph Lameter.
1 # This debian/rules file is provided as a template for normal perl
2 # packages. It was created by Marc Brockschmidt <marc@dch-faq.de> for
3 # the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
4 # be used freely wherever it is useful.
55
66 # Uncomment this to turn on verbose mode.
77 #export DH_VERBOSE=1
88
9 #for noninteractive installs
9 # If set to a true value then MakeMaker's prompt function will
10 # always return the default without waiting for user input.
1011 export PERL_MM_USE_DEFAULT=1
1112
1213 PACKAGE=$(shell dh_listpackages)
1516 PERL = /usr/bin/perl
1617 endif
1718
18 ifndef DESTDIR
19 DESTDIR=..
20 endif
21 TMP =`pwd`/debian/$(PACKAGE)
19 TMP =$(CURDIR)/debian/$(PACKAGE)
2220
2321 build: build-stamp
2422 build-stamp:
2523 dh_testdir
2624
27
28 # Add here commands to compile the package.
2925 $(PERL) Makefile.PL INSTALLDIRS=vendor
30 $(MAKE) OPTIMIZE="-O2 -g -Wall"
26 $(MAKE)
27 $(MAKE) test
3128
32 touch build-stamp
29 touch $@
3330
3431 clean:
3532 dh_testdir
3633 dh_testroot
37 rm -f build-stamp
3834
39 # Add here commands to clean up after the build process.
40 -$(MAKE) realclean
35 dh_clean build-stamp install-stamp
36 [ ! -f Makefile ] || $(MAKE) realclean
4137
42 dh_clean
43
44 install:
38 install: install-stamp
39 install-stamp: build-stamp
4540 dh_testdir
4641 dh_testroot
4742 dh_clean -k
48 dh_installdirs
4943
50 # Add here commands to install the package into debian/tmp.
51 $(MAKE) test
52 $(MAKE) install PREFIX=$(TMP)/usr
44 $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
5345 [ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
5446
47 touch $@
5548
56 # Build architecture-dependent files here.
57 binary-arch: build install
58 # We have nothing to do by default.
49 binary-arch:
50 # We have nothing to do here for an architecture-independent package
5951
60 # Build architecture-independent files here.
6152 binary-indep: build install
6253 dh_testdir
6354 dh_testroot
64 dh_installdocs README
65 dh_installman
55 dh_installdocs
6656 dh_installchangelogs Changes
67 dh_link
68 dh_strip
57 dh_perl
6958 dh_compress
7059 dh_fixperms
7160 dh_installdeb
72 dh_perl
73 dh_shlibdeps
7461 dh_gencontrol
7562 dh_md5sums
7663 dh_builddeb
7764
78 source diff:
65 source diff:
7966 @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
8067
8168 binary: binary-indep binary-arch
82 .PHONY: build clean binary-indep binary-arch binary
69 .PHONY: build clean binary-indep binary-arch binary install