--- libtext-kakasi-perl-2.04.orig/Makefile.PL +++ libtext-kakasi-perl-2.04/Makefile.PL @@ -1,12 +1,9 @@ -# -# $Id: Makefile.PL,v 2.0 2003/05/22 18:19:11 dankogai Exp $ -# use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Text::Kakasi', 'VERSION_FROM' => 'Kakasi.pm', - 'INC' => '-I/usr/local/include', - 'LIBS' => ['-L/usr/local/lib -lkakasi'], + 'INC' => '-I/usr/include', + 'LIBS' => ['-L/usr/lib -lkakasi'], 'DEFINE' => '-DWAKATIGAKI', ); --- libtext-kakasi-perl-2.04.orig/debian/changelog +++ libtext-kakasi-perl-2.04/debian/changelog @@ -0,0 +1,62 @@ +libtext-kakasi-perl (2.04-1build3) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Tue, 15 Nov 2011 20:17:38 +0000 + +libtext-kakasi-perl (2.04-1build2) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Sun, 08 May 2011 13:32:42 +0100 + +libtext-kakasi-perl (2.04-1build1) intrepid; urgency=low + + * Rebuild for the perl 5.10 transition. + + -- Michael Bienia Sat, 24 May 2008 11:27:33 +0200 + +libtext-kakasi-perl (2.04-1) unstable; urgency=low + + * New upstream release + * New manpages, closes #407091. + + -- NOKUBI Takatsugu Thu, 18 Jan 2007 13:13:46 +0900 + +libtext-kakasi-perl (1.05-4) unstable; urgency=low + + * Changed Build-Depends for perl 5.8.0, closes:#158345. + + -- NOKUBI Takatsugu Tue, 27 Aug 2002 13:13:15 +0900 + +libtext-kakasi-perl (1.05-3) unstable; urgency=low + + * Rebuild on perl 5.8.0. + + -- NOKUBI Takatsugu Mon, 26 Aug 2002 19:26:36 +0900 + +libtext-kakasi-perl (1.05-2) unstable; urgency=low + + * Added reference of common-licenses, closes #157662. + + -- NOKUBI Takatsugu Wed, 21 Aug 2002 17:22:44 +0900 + +libtext-kakasi-perl (1.05-1) unstable; urgency=low + + * New upstream release + + -- NOKUBI Takatsugu Wed, 25 Apr 2001 08:45:02 +0900 + +libtext-kakasi-perl (1.04-2) unstable; urgency=low + + * Fixed some build error (Closes #65885). + + -- NOKUBI Takatsugu Wed, 11 Oct 2000 10:20:23 +0900 + +libtext-kakasi-perl (1.04-1) unstable; urgency=low + + * Initial Release. + + -- Takuo KITAME Tue, 18 Apr 2000 04:52:21 +0900 + + --- libtext-kakasi-perl-2.04.orig/debian/rules +++ libtext-kakasi-perl-2.04/debian/rules @@ -0,0 +1,87 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatability version to use. +export DH_COMPAT=1 + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + mv Makefile.PL Makefile.PL.orig + cp debian/Makefile.PL.debian Makefile.PL + /usr/bin/perl Makefile.PL INSTALLDIRS=vendor + $(MAKE) LD_RUN_PATH= OPTIMIZE="-O2 -g -Wall" + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + if [ -e Makefile ]; then \ + $(MAKE) clean ; \ + fi + if [ -e Makefile.old ]; then rm -f Makefile.old ; fi + find . -name "*~" | xargs rm -f + rm -rf debian/tmp + if [ -e Makefile.PL.orig ]; then rm Makefile.PL && mv Makefile.PL.orig Makefile.PL ; fi + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp. + $(MAKE) install PREFIX=`pwd`/debian/tmp/usr +# INSTALLMAN3DIR=`pwd`/debian/tmp/usr/share/man/man3 + +# find debian/tmp -type f -name .packlist | xargs rm -f +# -find debian/tmp/usr/lib/perl5 -type d -empty | xargs rmdir -p + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install +# dh_testversion + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installpam +# dh_installinit + dh_installcron + dh_installmanpages + dh_installinfo +# dh_undocumented + dh_installchangelogs ChangeLog.1 Changes + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libtext-kakasi-perl-2.04.orig/debian/Makefile.PL.debian +++ libtext-kakasi-perl-2.04/debian/Makefile.PL.debian @@ -0,0 +1,9 @@ +use ExtUtils::MakeMaker; + +WriteMakefile( + 'NAME' => 'Text::Kakasi', + 'VERSION_FROM' => 'Kakasi.pm', + 'INC' => '-I/usr/include', + 'LIBS' => ['-L/usr/lib -lkakasi'], + 'DEFINE' => '-DWAKATIGAKI', +); --- libtext-kakasi-perl-2.04.orig/debian/control +++ libtext-kakasi-perl-2.04/debian/control @@ -0,0 +1,16 @@ +Source: libtext-kakasi-perl +Section: interpreters +Priority: optional +Maintainer: NOKUBI Takatsugu +Build-Depends: libkakasi2-dev, debhelper, perl (>= 5.8.0) +Standards-Version: 3.6.1 + +Package: libtext-kakasi-perl +Architecture: any +Depends: ${shlibs:Depends}, ${perl:Depends} +Description: KAKASI interface for scripting language Perl. + KAKASI interface module for Perl. + KAKASI is the language processing filter to convert Kanji characters + to Hiragana, Katakana or Romaji(alphabetical description of Japanese + pronunciation). + --- libtext-kakasi-perl-2.04.orig/debian/copyright +++ libtext-kakasi-perl-2.04/debian/copyright @@ -0,0 +1,25 @@ +This package was debianized by Takuo KITAME on +Tue, 18 Apr 2000 04:52:21 +0900. + +It was downloaded from + +Copyright: (from Kakasi.pm) + +Copyright (C) 1998, 1999, 2000 NOKUBI Takatsugu + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in /usr/share/common-licenses/GPL-2. --- libtext-kakasi-perl-2.04.orig/debian/docs +++ libtext-kakasi-perl-2.04/debian/docs @@ -0,0 +1,2 @@ +README +README.jp