r1304 - in packages/libimage-librsvg-perl/trunk: . debian

Antonio S. de A. Terceiro terceiro-guest at costa.debian.org
Mon Aug 22 03:56:50 UTC 2005


Author: terceiro-guest
Date: 2005-08-22 03:56:49 +0000 (Mon, 22 Aug 2005)
New Revision: 1304

Added:
   packages/libimage-librsvg-perl/trunk/debian/
   packages/libimage-librsvg-perl/trunk/debian/changelog
   packages/libimage-librsvg-perl/trunk/debian/compat
   packages/libimage-librsvg-perl/trunk/debian/control
   packages/libimage-librsvg-perl/trunk/debian/copyright
   packages/libimage-librsvg-perl/trunk/debian/docs
   packages/libimage-librsvg-perl/trunk/debian/examples
   packages/libimage-librsvg-perl/trunk/debian/rules
Modified:
   packages/libimage-librsvg-perl/trunk/Makefile.PL
   packages/libimage-librsvg-perl/trunk/examples.pl
Log:
Load libimage-librsvg-perl-0.05 into
packages/libimage-librsvg-perl/trunk.


Modified: packages/libimage-librsvg-perl/trunk/Makefile.PL
===================================================================
--- packages/libimage-librsvg-perl/trunk/Makefile.PL	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/Makefile.PL	2005-08-22 03:56:49 UTC (rev 1304)
@@ -5,6 +5,8 @@
 $config{INC} = ' ' . `pkg-config --cflags librsvg-2.0`;
 $config{LIBS} = ' ' . `pkg-config --libs-only-l librsvg-2.0`;
 $config{DEFINE} = ' -DHAVE_SVGZ=1';
+$config{PM} = { 'lib/Image/LibRSVG.pm' => '$(INST_LIBDIR)/LibRSVG.pm'
+              };
 
 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
 # the contents of the Makefile that is written.

Added: packages/libimage-librsvg-perl/trunk/debian/changelog
===================================================================
--- packages/libimage-librsvg-perl/trunk/debian/changelog	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/debian/changelog	2005-08-22 03:56:49 UTC (rev 1304)
@@ -0,0 +1,7 @@
+libimage-librsvg-perl (0.05-1) unstable; urgency=low
+
+  * Repackaging under the right name, conflicting with old package
+    libimage-rsvg-perl (Closes: #324419)
+
+ -- Antonio S. de A. Terceiro <asaterceiro at inf.ufrgs.br>  Sat, 23 Oct 2004 23:35:03 -0300
+

Added: packages/libimage-librsvg-perl/trunk/debian/compat
===================================================================
--- packages/libimage-librsvg-perl/trunk/debian/compat	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/debian/compat	2005-08-22 03:56:49 UTC (rev 1304)
@@ -0,0 +1 @@
+4

Added: packages/libimage-librsvg-perl/trunk/debian/control
===================================================================
--- packages/libimage-librsvg-perl/trunk/debian/control	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/debian/control	2005-08-22 03:56:49 UTC (rev 1304)
@@ -0,0 +1,14 @@
+Source: libimage-librsvg-perl
+Section: libdevel
+Priority: optional
+Maintainer: Antonio S. de A. Terceiro <asaterceiro at inf.ufrgs.br>
+Build-Depends: debhelper (>= 4.0.0), perl (>= 5.6.0-16), librsvg2-dev
+Standards-Version: 3.6.2
+
+Package: libimage-librsvg-perl
+Architecture: any
+Depends: ${perl:Depends}, librsvg2-common
+Conflicts: libimage-rsvg-perl
+Description: Perl binding for librsvg
+ This package contains the Image::LibRSVG Perl module, which enables
+ rasterization of SVG drawings into bitmap images from Perl scripts.

Added: packages/libimage-librsvg-perl/trunk/debian/copyright
===================================================================
--- packages/libimage-librsvg-perl/trunk/debian/copyright	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/debian/copyright	2005-08-22 03:56:49 UTC (rev 1304)
@@ -0,0 +1,16 @@
+This package was debianized by Antonio S. de A. Terceiro <asaterceiro at inf.ufrgs.br> on
+Sat,  9 Oct 2004 09:17:53 -0300.
+
+It was downloaded from
+   http://search.cpan.org/~tomson/
+
+Copyright:
+
+   Copyright (C) 2004 Tom Schindl and bestsolution Systemhaus GmbH
+
+   This library is free software; you can redistribute it and/or modify it
+   under the same terms as Perl itself.
+
+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'.

Added: packages/libimage-librsvg-perl/trunk/debian/docs
===================================================================
--- packages/libimage-librsvg-perl/trunk/debian/docs	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/debian/docs	2005-08-22 03:56:49 UTC (rev 1304)
@@ -0,0 +1,2 @@
+README
+examples.pl

Added: packages/libimage-librsvg-perl/trunk/debian/examples
===================================================================
--- packages/libimage-librsvg-perl/trunk/debian/examples	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/debian/examples	2005-08-22 03:56:49 UTC (rev 1304)
@@ -0,0 +1,2 @@
+examples/*.svg
+examples/*.svgz

Added: packages/libimage-librsvg-perl/trunk/debian/rules
===================================================================
--- packages/libimage-librsvg-perl/trunk/debian/rules	2005-08-22 03:55:07 UTC (rev 1303)
+++ packages/libimage-librsvg-perl/trunk/debian/rules	2005-08-22 03:56:49 UTC (rev 1304)
@@ -0,0 +1,75 @@
+#!/usr/bin/make -f
+
+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
+	perl Makefile.PL INSTALLDIRS=vendor
+
+
+build: build-stamp
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE) OPTIMIZE="-O2 -g -Wall"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	make realclean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/libimage-rsvg-perl.
+	$(MAKE) install PREFIX=$(CURDIR)/debian/libimage-librsvg-perl/usr
+
+
+# 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 Changes
+	dh_installdocs
+	dh_installexamples
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress --exclude=.svg --exclude=examples.pl
+	dh_fixperms
+	dh_perl
+	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


Property changes on: packages/libimage-librsvg-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *


Property changes on: packages/libimage-librsvg-perl/trunk/examples.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *




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