r28782 - in /trunk/libgtk2-spell-perl/debian: ./ changelog compat control copyright rules

ryan52-guest at users.alioth.debian.org ryan52-guest at users.alioth.debian.org
Sun Dec 28 07:48:32 UTC 2008


Author: ryan52-guest
Date: Sun Dec 28 07:48:29 2008
New Revision: 28782

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

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

Added: trunk/libgtk2-spell-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-spell-perl/debian/changelog?rev=28782&op=file
==============================================================================
--- trunk/libgtk2-spell-perl/debian/changelog (added)
+++ trunk/libgtk2-spell-perl/debian/changelog Sun Dec 28 07:48:29 2008
@@ -1,0 +1,11 @@
+libgtk2-spell-perl (1.03-2) unstable; urgency=low
+
+  * debian/control: I'm a DD.
+
+ -- Marc 'HE' Brockschmidt <he at debian.org>  Thu, 15 Jul 2004 19:07:34 +0200
+
+libgtk2-spell-perl (1.03-1) unstable; urgency=low
+
+  * Initial release. 
+
+ -- Marc Brockschmidt <marc at dch-faq.de>  Thu, 22 Jan 2004 11:28:53 +0100

Added: trunk/libgtk2-spell-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-spell-perl/debian/compat?rev=28782&op=file
==============================================================================
--- trunk/libgtk2-spell-perl/debian/compat (added)
+++ trunk/libgtk2-spell-perl/debian/compat Sun Dec 28 07:48:29 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libgtk2-spell-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-spell-perl/debian/control?rev=28782&op=file
==============================================================================
--- trunk/libgtk2-spell-perl/debian/control (added)
+++ trunk/libgtk2-spell-perl/debian/control Sun Dec 28 07:48:29 2008
@@ -1,0 +1,15 @@
+Source: libgtk2-spell-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), perl (>= 5.8.0-7), libextutils-depends-perl, libextutils-pkgconfig-perl, libglib-perl (>= 1.00), libgtk2-perl (>= 1.00), libgtkspell-dev (>= 2.0)
+Maintainer: Marc 'HE' Brockschmidt <he at debian.org>
+Standards-Version: 3.6.1
+
+Package: libgtk2-spell-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, libglib-perl (>= 1.00), libgtk2-perl (>= 1.00)
+Description: Perl interface to the GtkSpell library
+ libgtk2-spell-perl allows to use the GtkSpell library in Perl applications
+ using a Gtk2/GNOME interface. It can be used in concert with Gtk2::TextView
+ to provide highlighting of mis-spelled words and a right click pop-up menu
+ with possible corrections.

Added: trunk/libgtk2-spell-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-spell-perl/debian/copyright?rev=28782&op=file
==============================================================================
--- trunk/libgtk2-spell-perl/debian/copyright (added)
+++ trunk/libgtk2-spell-perl/debian/copyright Sun Dec 28 07:48:29 2008
@@ -1,0 +1,23 @@
+This is the debian package for the Gtk2 module.
+It was created by Marc Brockschmidt <marc at dch-faq.de> using dh-make-perl.
+
+The sources were downloaded from http://gtk2-perl.sourceforge.net/.
+
+The upstream authors are  muppet <scott at asofyet.org>
+                          Ross McFarland <rwmcfa1 at neces.com>
+                          Jörn Reder <joern at zyn.de>
+                          Goran Thyni <gthyni at kirra.net>
+                          Chas Owens <alas at wilma.widomaker dot com>
+                          Guillaume Cottenceau <gc at mandrakesoft.com>
+                          [the gtk2-perl team]
+
+Copyright (C) 2003 by the gtk2-perl team
+
+This library is free software; you can redistribute it and/or modify it under
+the terms of the GNU Library General Public License as published by the Free
+Software Foundation; either version 2.1 of the License, or (at your option) any
+later version.
+
+A copy of the LGPL-2 can be found at /usr/share/common-licenses/LGPL-2 on
+any Debian system.
+

Added: trunk/libgtk2-spell-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libgtk2-spell-perl/debian/rules?rev=28782&op=file
==============================================================================
--- trunk/libgtk2-spell-perl/debian/rules (added)
+++ trunk/libgtk2-spell-perl/debian/rules Sun Dec 28 07:48:29 2008
@@ -1,0 +1,78 @@
+#!/usr/bin/make -f
+
+# 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
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	-$(MAKE) realclean
+
+	dh_clean
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	$(MAKE) install PREFIX=$(TMP)/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_installdocs README
+	dh_installexamples 
+	dh_installchangelogs ChangeLog
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_makeshlibs
+	dh_installdeb
+	dh_perl 
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

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




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