--- libjcode-pm-perl-2.06.orig/debian/changelog +++ libjcode-pm-perl-2.06/debian/changelog @@ -0,0 +1,103 @@ +libjcode-pm-perl (2.06-1) unstable; urgency=low + + * New upstream Release. + + -- Atsushi KAMOSHIDA Fri, 11 Aug 2006 15:40:06 +0900 + +libjcode-pm-perl (2.03-1) unstable; urgency=low + + * New upstream Release.(Closes: #339800) + + -- Atsushi Kamoshida Wed, 23 Nov 2005 03:01:12 +0900 + +libjcode-pm-perl (0.88-2) unstable; urgency=low + + * Fixed Section in control file. + + -- Atsushi Kamoshida Fri, 18 Mar 2005 19:32:12 +0900 + +libjcode-pm-perl (0.88-1) unstable; urgency=low + + * New upstream Release.(Closes: #258536) + + -- Atsushi KAMOSHIDA Fri, 18 Mar 2005 17:34:27 +0900 + +libjcode-pm-perl (0.83-1) unstable; urgency=low + + * New upstream Release. + * Closed #147047. + + -- Atsushi KAMOSHIDA Mon, 22 Sep 2003 02:23:22 +0900 + +libjcode-pm-perl (0.80-2) unstable; urgency=low + + * Fixed copyright to include the pointer of Artistic License(#157602). + + -- Atsushi Kamoshida Thu, 29 Aug 2002 01:34:03 +0900 + +libjcode-pm-perl (0.80-1) unstable; urgency=low + + * New Upstream Release. + + -- Atsushi Kamoshida Wed, 28 Aug 2002 02:24:14 +0900 + +libjcode-pm-perl (0.73-1) unstable; urgency=low + + * New Upstream Release. + + -- Atsushi KAMOSHIDA Fri, 15 Jun 2001 01:30:36 +0900 + +libjcode-pm-perl (0.72-1) unstable; urgency=low + + * New Upstream Release. + + -- Atsushi KAMOSHIDA Tue, 5 Jun 2001 11:01:13 +0900 + +libjcode-pm-perl (0.71-1) unstable; urgency=low + + * New Upstream Release. + + -- Atsushi KAMOSHIDA Wed, 23 May 2001 11:35:01 +0900 + +libjcode-pm-perl (0.68-4) unstable; urgency=low + + * Added Build-Depends: field. + * Changed make related issue in rules(#86686). + + -- Atsushi KAMOSHIDA Wed, 21 Feb 2001 22:07:04 +0900 + +libjcode-pm-perl (0.68-3) unstable; urgency=low + + * Fixed Depends field in control file so as to depend on suitable version + of perl. + + -- Atsushi KAMOSHIDA Tue, 6 Feb 2001 22:14:52 +0900 + +libjcode-pm-perl (0.68-2) unstable; urgency=low + + * Fixed rules so that dpkg-buildpackage can generate .changes + + -- Atsushi KAMOSHIDA Fri, 5 Jan 2001 11:38:54 +0900 + +libjcode-pm-perl (0.68-1) unstable; urgency=low + + * New Upstream Release. + * Fixed perl dependency(#80688). + + -- Atsushi KAMOSHIDA Mon, 1 Jan 2001 22:29:28 +0900 + +libjcode-pm-perl (0.64-1) unstable; urgency=low + + * New Upstream Release. + + -- Atsushi KAMOSHIDA Sun, 3 Dec 2000 00:15:47 +0900 + +libjcode-pm-perl (0.60-1) unstable; urgency=low + + * Initial Release. + + -- Atsushi KAMOSHIDA Wed, 24 Nov 1999 11:30:19 +0900 + +Local variables: +mode: debian-changelog +End: --- libjcode-pm-perl-2.06.orig/debian/compat +++ libjcode-pm-perl-2.06/debian/compat @@ -0,0 +1 @@ +5 --- libjcode-pm-perl-2.06.orig/debian/copyright +++ libjcode-pm-perl-2.06/debian/copyright @@ -0,0 +1,16 @@ +This package was debianized by Atsushi KAMOSHIDA on +Wed, 24 Nov 1999 11:30:19 +0900. + +It was downloaded from CPAN /CPAN/authors/id/D/DA/DANKOGAI/ + +Upstream Author(s): Dan Kogai + +Copyright: + +Copyright 1999 Dan Kogai. + +This library is free software; you can redistribute it +and/or modify it under the same terms as Perl itself. + +On a Debian system a copy of the Perl license can be found in the file +'/usr/share/common-licenses/Artistic'. --- libjcode-pm-perl-2.06.orig/debian/control +++ libjcode-pm-perl-2.06/debian/control @@ -0,0 +1,16 @@ +Source: libjcode-pm-perl +Section: perl +Priority: optional +Maintainer: Atsushi KAMOSHIDA +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: libjcode-pm-perl +Architecture: any +Depends: ${shlibs:Depends},${perl:Depends} +Description: Perl extension interface to convert Japanese text + Jcode.pm is a Perl module that handles various Japanese charsets. + It has all features available on jcode.pl PLUS + - Object-oriented approach on Japanese text handling + - mime header handling + - Unicode feature (UCS2 and UTF8) --- libjcode-pm-perl-2.06.orig/debian/rules +++ libjcode-pm-perl-2.06/debian/rules @@ -0,0 +1,106 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +ifndef PERL +PERL=/usr/bin/perl +endif +tmp = $(CURDIR)/debian/libjcode-pm-perl + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + # Add here commands to configure the package. + + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + + # Add here commands to compile the package. + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-O2 -g -Wall" + $(MAKE) test + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) realclean + -rm -f Makefile + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/libjcode-pm-perl. + $(MAKE) install DESTDIR=$(CURDIR)/debian/libjcode-pm-perl + + -find $(tmp) -type f -name .packlist | xargs rm -f + -find $(tmp) -type f -name mac_install.pl | xargs rm -f + -find $(tmp) -type f -name win_install.pl | xargs rm -f + -find $(tmp) -type f -name perllocal.pod | xargs rm -f + + +# 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_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- libjcode-pm-perl-2.06.orig/debian/docs +++ libjcode-pm-perl-2.06/debian/docs @@ -0,0 +1,3 @@ +README +MANIFEST +Changes