r9648 - in /trunk/libgtk2-ex-printdialog-perl/debian: ./ changelog compat control copyright rules watch

ra28145-guest at users.alioth.debian.org ra28145-guest at users.alioth.debian.org
Tue Nov 20 20:48:32 UTC 2007


Author: ra28145-guest
Date: Tue Nov 20 20:48:32 2007
New Revision: 9648

URL: http://svn.debian.org/wsvn/?sc=1&rev=9648
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libgtk2-ex-printdialog-perl/debian/
    trunk/libgtk2-ex-printdialog-perl/debian/changelog
    trunk/libgtk2-ex-printdialog-perl/debian/compat
    trunk/libgtk2-ex-printdialog-perl/debian/control
    trunk/libgtk2-ex-printdialog-perl/debian/copyright
    trunk/libgtk2-ex-printdialog-perl/debian/rules   (with props)
    trunk/libgtk2-ex-printdialog-perl/debian/watch

Added: trunk/libgtk2-ex-printdialog-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libgtk2-ex-printdialog-perl/debian/changelog?rev=9648&op=file
==============================================================================
--- trunk/libgtk2-ex-printdialog-perl/debian/changelog (added)
+++ trunk/libgtk2-ex-printdialog-perl/debian/changelog Tue Nov 20 20:48:32 2007
@@ -1,0 +1,5 @@
+libgtk2-ex-printdialog-perl (0.03-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Jeffrey Ratcliffe <Jeffrey.Ratcliffe at gmail.com>  Sun, 18 Nov 2007 18:38:04 +0100

Added: trunk/libgtk2-ex-printdialog-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libgtk2-ex-printdialog-perl/debian/compat?rev=9648&op=file
==============================================================================
--- trunk/libgtk2-ex-printdialog-perl/debian/compat (added)
+++ trunk/libgtk2-ex-printdialog-perl/debian/compat Tue Nov 20 20:48:32 2007
@@ -1,0 +1,1 @@
+4

Added: trunk/libgtk2-ex-printdialog-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libgtk2-ex-printdialog-perl/debian/control?rev=9648&op=file
==============================================================================
--- trunk/libgtk2-ex-printdialog-perl/debian/control (added)
+++ trunk/libgtk2-ex-printdialog-perl/debian/control Tue Nov 20 20:48:32 2007
@@ -1,0 +1,25 @@
+Source: libgtk2-ex-printdialog-perl
+Section: perl
+Priority: optional
+Maintainer: Jeffrey Ratcliffe <Jeffrey.Ratcliffe at gmail.com>
+Build-Depends: debhelper (>= 4), dpatch
+Standards-Version: 3.7.2
+
+Package: libgtk2-ex-printdialog-perl
+Architecture: all
+Depends: perl (>= 5.8.0), libgtk2-perl
+Description: a pure-perl alternative to the Gnome2::Print libraries
+ libgtk2-ex-printdialog-perl implements a dialog widget that can be used to
+ print PostScript data. It is intended to be a lightweight and pure-perl
+ alternative to the Gnome2::Print libraries.
+ .
+ libgtk2-ex-printdialog-perl uses a simple system of operating-system specific
+ backends that are used to do the job of printing. Currently, only a generic
+ Linux/Unix backend (implemented using Net::CUPS) is available, more will be
+ added in the future.
+ .
+ The dialog itself is intended to comply with the GNOME Human Interface
+ Guidelines (HIG). It allows the user to print to any printer installed on the
+ system, or to an external command such as lpr, or to print a PostScript or PDF
+ file.
+

Added: trunk/libgtk2-ex-printdialog-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libgtk2-ex-printdialog-perl/debian/copyright?rev=9648&op=file
==============================================================================
--- trunk/libgtk2-ex-printdialog-perl/debian/copyright (added)
+++ trunk/libgtk2-ex-printdialog-perl/debian/copyright Tue Nov 20 20:48:32 2007
@@ -1,0 +1,17 @@
+This package was debianized by Jeffrey Ratcliffe <Jeffrey.Ratcliffe at gmail.com> on
+Sun, 18 Nov 2007 18:38:04 +0100.
+
+It was downloaded from http://search.cpan.org/~gbrown/Gtk2-Ex-PrintDialog-0.03/
+
+The upstream Author is Gavin Brown <gavin.brown at uk.com>.
+
+Copyright: (c) 2004-2005 Gavin Brown <gavin.brown at uk.com>
+
+All rights reserved. This program is free software; you can 
+redistribute it and/or modify it under the same terms as Perl
+itself (GPL and Artistic license)
+
+On Debian systems the complete text of the GPL and Artistic
+licenses can be found at:
+	/usr/share/common-licenses/GPL and
+	/usr/share/common-licenses/Artistic

Added: trunk/libgtk2-ex-printdialog-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libgtk2-ex-printdialog-perl/debian/rules?rev=9648&op=file
==============================================================================
--- trunk/libgtk2-ex-printdialog-perl/debian/rules (added)
+++ trunk/libgtk2-ex-printdialog-perl/debian/rules Tue Nov 20 20:48:32 2007
@@ -1,0 +1,74 @@
+#!/usr/bin/make -f
+
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+PACKAGE=$(shell dh_listpackages)
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: patch build-stamp
+build-stamp:
+	dh_testdir
+
+	/usr/bin/perl Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)" 
+
+	touch build-stamp
+
+clean: unpatch clean-unpatched
+clean-unpatched:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	
+	#As this is a architecture independent package, we are not supposed to install
+	#stuff to /usr/lib. MakeMaker creates the dirs, we delete them from the deb:
+	rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs README
+	dh_perl
+	dh_installchangelogs
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+patch: patch-stamp
+patch-stamp:
+	dpatch apply-all
+	#dpatch call-all -a=pkg-info >patch-stamp #I don't understand this one.
+	echo patched > patch-stamp
+
+unpatch:
+	dpatch deapply-all
+	rm -rf patch-stamp debian/patched
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary patch unpatch patch-stamp clean-unpatch

Propchange: trunk/libgtk2-ex-printdialog-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libgtk2-ex-printdialog-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libgtk2-ex-printdialog-perl/debian/watch?rev=9648&op=file
==============================================================================
--- trunk/libgtk2-ex-printdialog-perl/debian/watch (added)
+++ trunk/libgtk2-ex-printdialog-perl/debian/watch Tue Nov 20 20:48:32 2007
@@ -1,0 +1,3 @@
+version=2
+
+http://search.cpan.org/CPAN/authors/id/G/GB/GBROWN/Gtk2-Ex-PrintDialog-([\d\.]+).tar.gz




More information about the Pkg-perl-cvs-commits mailing list