--- libperlio-via-symlink-perl-0.02.orig/debian/changelog +++ libperlio-via-symlink-perl-0.02/debian/changelog @@ -0,0 +1,6 @@ +libperlio-via-symlink-perl (0.02-1) unstable; urgency=low + + * Initial Release. + + -- Bastian Blank Sun, 4 Apr 2004 00:09:22 +0200 + --- libperlio-via-symlink-perl-0.02.orig/debian/control +++ libperlio-via-symlink-perl-0.02/debian/control @@ -0,0 +1,14 @@ +Source: libperlio-via-symlink-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 4.0.2) +Build-Depends-Indep: perl (>= 5.8.0-7) +Maintainer: Bastian Blank +Standards-Version: 3.6.1 + +Package: libperlio-via-symlink-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: PerlIO layers for create symlinks + The PerlIO layer C allows you to create a symbolic link by + writing to the file handle. --- libperlio-via-symlink-perl-0.02.orig/debian/compat +++ libperlio-via-symlink-perl-0.02/debian/compat @@ -0,0 +1 @@ +4 --- libperlio-via-symlink-perl-0.02.orig/debian/copyright +++ libperlio-via-symlink-perl-0.02/debian/copyright @@ -0,0 +1,20 @@ +This is the debian package for the PerlIO-via-dynamic module. + +It was downloaded from the Comprehensive Perl Archive Network (CPAN). +Visit to find a CPAN site near you. + +The upstream author is: + +Chia-liang Kao . + +Copyright 2004 by Chia-liang Kao . + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +See http://www.perl.com/perl/misc/Artistic.html + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. --- libperlio-via-symlink-perl-0.02.orig/debian/rules +++ libperlio-via-symlink-perl-0.02/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f + +# 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 + +PACKAGE = $(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + +# Build architecture-dependent files here. +binary-arch: build install +# We have nothing to do by default. + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot +# dh_installcron +# dh_installmenu +# dh_installexamples + dh_installdocs README + dh_installchangelogs CHANGES + dh_perl + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary