--- liblingua-de-ascii-perl-0.11.orig/debian/changelog +++ liblingua-de-ascii-perl-0.11/debian/changelog @@ -0,0 +1,15 @@ +liblingua-de-ascii-perl (0.11-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.22 in experimental (MakeMaker changes)": + use DESTDIR in debian/rules. + (Closes: #793536) + + -- gregor herrmann Wed, 26 Aug 2015 17:40:51 +0200 + +liblingua-de-ascii-perl (0.11-1) unstable; urgency=low + + * Initial release (Closes: #377220). + + -- Sebastian Harl Fri, 7 Jul 2006 15:09:35 +0200 + --- liblingua-de-ascii-perl-0.11.orig/debian/compat +++ liblingua-de-ascii-perl-0.11/debian/compat @@ -0,0 +1 @@ +4 --- liblingua-de-ascii-perl-0.11.orig/debian/control +++ liblingua-de-ascii-perl-0.11/debian/control @@ -0,0 +1,16 @@ +Source: liblingua-de-ascii-perl +Section: perl +Priority: optional +Maintainer: Sebastian Harl +Build-Depends: debhelper (>= 4.0.0) +Build-Depends-Indep: perl (>= 5.8.0-7) +Standards-Version: 3.7.2 + +Package: liblingua-de-ascii-perl +Architecture: all +Depends: ${perl:Depends} +Description: convert German umlauts to and from ascii + This module enables conversion from and to the ASCII format of German texts. + It has two methods: to_ascii and to_latin1 which each do exactly what they + say. + --- liblingua-de-ascii-perl-0.11.orig/debian/copyright +++ liblingua-de-ascii-perl-0.11/debian/copyright @@ -0,0 +1,23 @@ +This package was debianized by Sebastian Harl on +Fri, 7 Jul 2006 15:09:35 +0200. + +It was downloaded from . + +Copyright Holder: Janek Schleicher + +License: + + This program is free software; you can redistribute it and/or modify + it under the terms of either: + + a) the GNU General Public License as published by the Free Software + Foundation; either version 1, or (at your option) any later + version, or + + b) the "Artistic License" which comes with Perl. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL', +and the complete text of the Artistic License +can be found in `/usr/share/common-licenses/Artistic'. + --- liblingua-de-ascii-perl-0.11.orig/debian/rules +++ liblingua-de-ascii-perl-0.11/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f +# debian/rules for liblingua-de-ascii-perl +# +# Written by Sebastian Harl + +# 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 + +ifndef PERL + PERL = /usr/bin/perl +endif + +build: build-stamp + +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp + + -$(MAKE) distclean + + dh_clean + +install: install-stamp + +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + + $(MAKE) test + $(MAKE) install DESTDIR=$(CURDIR)/debian/liblingua-de-ascii-perl \ + MAN3EXT=3perl + + rm -f $(CURDIR)/debian/liblingua-de-ascii-perl/usr/share/man/man3/*.3pm + + touch install-stamp + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installchangelogs Changes + dh_perl + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: + # nothing to do here + +binary: binary-indep binary-arch +.PHONY: build clean install binary binary-indep binary-arch +