Codebase list libpoe-component-sslify-perl / 7ab53b2
[svn-inject] Applying Debian modifications to trunk Kees Cook 16 years ago
5 changed file(s) with 117 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 libpoe-component-sslify-perl (0.08-1) unstable; urgency=low
1
2 * Initial Release (Closes: #439853).
3
4 -- Kees Cook <kees@outflux.net> Mon, 27 Aug 2007 14:28:37 -0700
0 Source: libpoe-component-sslify-perl
1 Section: perl
2 Priority: optional
3 Build-Depends: debhelper (>= 5.0.0)
4 Build-Depends-Indep: perl (>= 5.8.8-7), libnet-ssleay-perl, libtest-pod-perl
5 Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
6 Uploaders: Kees Cook <kees@outflux.net>
7 Standards-Version: 3.7.2
8
9 Package: libpoe-component-sslify-perl
10 Architecture: all
11 Depends: ${perl:Depends}, ${misc:Depends},
12 Description: abstracts SSL connections for other POE components
13 This component represents the standard way to handle SSL connections
14 for other POE Components.
0 This is the debian package for the POE-Component-SSLify module.
1 It was created by Kees Cook <kees@outflux.net> using dh-make-perl.
2
3 The upstream author is: Apocalypse <APOCAL@cpan.org>
4 Copyright: (c) 2007 Apocalypse/Rocco Caputo
5 License:
6
7 This library is free software; you can redistribute it and/or modify
8 it under the same terms as Perl itself.
9
10
11 On Debian GNU/Linux systems, the complete text of the GNU General
12 Public License can be found in `/usr/share/common-licenses/GPL' and
13 the Artistic Licence in `/usr/share/common-licenses/Artistic'.
14
15 The Debian packaging is (C) 2007, Kees Cook <kees@outflux.net> and
16 is licensed under the same terms as the software itself (see above).
0 #!/usr/bin/make -f
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.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8
9 # If set to a true value then MakeMaker's prompt function will
10 # always return the default without waiting for user input.
11 export PERL_MM_USE_DEFAULT=1
12
13 PACKAGE=$(shell dh_listpackages)
14
15 ifndef PERL
16 PERL = /usr/bin/perl
17 endif
18
19 TMP =$(CURDIR)/debian/$(PACKAGE)
20
21 build: build-stamp
22 build-stamp:
23 dh_testdir
24
25 # Add commands to compile the package here
26 $(PERL) Makefile.PL INSTALLDIRS=vendor
27 $(MAKE)
28 $(MAKE) test
29
30 touch build-stamp
31
32 clean:
33 dh_testdir
34 dh_testroot
35
36 # Add commands to clean up after the build process here
37 [ ! -f Makefile ] || $(MAKE) realclean
38
39 dh_clean build-stamp install-stamp
40
41 install: build install-stamp
42 install-stamp:
43 dh_testdir
44 dh_testroot
45 dh_clean -k
46
47 # Add commands to install the package into debian/$PACKAGE_NAME here
48 $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
49
50 # As this is a architecture independent package, we are not
51 # supposed to install stuff to /usr/lib. MakeMaker creates
52 # the dirs, we delete them from the deb:
53 rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
54
55 touch install-stamp
56
57 binary-arch:
58 # We have nothing to do here for an architecture-independent package
59
60 binary-indep: build install
61 dh_testdir
62 dh_testroot
63 dh_installexamples
64 dh_installdocs README
65 dh_installchangelogs Changes
66 dh_perl
67 dh_compress
68 dh_fixperms
69 dh_installdeb
70 dh_gencontrol
71 dh_md5sums
72 dh_builddeb
73
74 source diff:
75 @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
76
77 binary: binary-indep binary-arch
78 .PHONY: build clean binary-indep binary-arch binary