r15842 - in /trunk/libfax-hylafax-client-perl/debian: ./ changelog compat control copyright rules watch

tincho-guest at users.alioth.debian.org tincho-guest at users.alioth.debian.org
Thu Feb 28 11:34:19 UTC 2008


Author: tincho-guest
Date: Thu Feb 28 11:34:02 2008
New Revision: 15842

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

Added:
    trunk/libfax-hylafax-client-perl/debian/
    trunk/libfax-hylafax-client-perl/debian/changelog
    trunk/libfax-hylafax-client-perl/debian/compat
    trunk/libfax-hylafax-client-perl/debian/control
    trunk/libfax-hylafax-client-perl/debian/copyright
    trunk/libfax-hylafax-client-perl/debian/rules   (with props)
    trunk/libfax-hylafax-client-perl/debian/watch

Added: trunk/libfax-hylafax-client-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libfax-hylafax-client-perl/debian/changelog?rev=15842&op=file
==============================================================================
--- trunk/libfax-hylafax-client-perl/debian/changelog (added)
+++ trunk/libfax-hylafax-client-perl/debian/changelog Thu Feb 28 11:34:02 2008
@@ -1,0 +1,6 @@
+libfax-hylafax-client-perl (1.01-1) unstable; urgency=low
+
+  * Initial Release (closes: Bug#300986).
+
+ -- Ivan Kohler <ivan-debian at 420.am>  Tue, 22 Mar 2005 16:49:26 -0800
+

Added: trunk/libfax-hylafax-client-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libfax-hylafax-client-perl/debian/compat?rev=15842&op=file
==============================================================================
--- trunk/libfax-hylafax-client-perl/debian/compat (added)
+++ trunk/libfax-hylafax-client-perl/debian/compat Thu Feb 28 11:34:02 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libfax-hylafax-client-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libfax-hylafax-client-perl/debian/control?rev=15842&op=file
==============================================================================
--- trunk/libfax-hylafax-client-perl/debian/control (added)
+++ trunk/libfax-hylafax-client-perl/debian/control Thu Feb 28 11:34:02 2008
@@ -1,0 +1,15 @@
+Source: libfax-hylafax-client-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl
+Maintainer: Ivan Kohler <ivan-debian at 420.am>
+Standards-Version: 3.6.1
+
+Package: libfax-hylafax-client-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, perl-modules (>= 5.8) | libnet-perl (>= 1.12)
+Description: Simple Perl client for HylaFAX fax server
+ This is a simple Perl client for HylaFAX fax server (www.hylafax.org).  It
+ communicates with the server directly through FTP protocol and thus does not
+ require any HylaFAX software components to be installed on the client machine.

Added: trunk/libfax-hylafax-client-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libfax-hylafax-client-perl/debian/copyright?rev=15842&op=file
==============================================================================
--- trunk/libfax-hylafax-client-perl/debian/copyright (added)
+++ trunk/libfax-hylafax-client-perl/debian/copyright Thu Feb 28 11:34:02 2008
@@ -1,0 +1,16 @@
+This is the debian package for the Fax::Hylafax::Client module.
+It was created by Ivan Kohler <ivan-debian at 420.am> using dh-make-perl.
+
+
+The upstream author is: Alex Rak <arak at cpan.org>
+
+
+Copyright (c) 2003 Alex Rak.  All rights reserved.
+
+This program is free software; you can redistribute it and/or modify
+it under the same terms as Perl itself.
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  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: trunk/libfax-hylafax-client-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libfax-hylafax-client-perl/debian/rules?rev=15842&op=file
==============================================================================
--- trunk/libfax-hylafax-client-perl/debian/rules (added)
+++ trunk/libfax-hylafax-client-perl/debian/rules Thu Feb 28 11:34:02 2008
@@ -1,0 +1,91 @@
+#!/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.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# 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)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+        CFLAGS += -O0
+else
+        CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="$(CFLAGS)"
+	
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	-$(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
+	$(MAKE) install PREFIX=$(TMP)/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_installcron
+#	dh_installmenu
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs Changes
+	dh_perl
+	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
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

Propchange: trunk/libfax-hylafax-client-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libfax-hylafax-client-perl/debian/watch
URL: http://svn.debian.org/wsvn/trunk/libfax-hylafax-client-perl/debian/watch?rev=15842&op=file
==============================================================================
--- trunk/libfax-hylafax-client-perl/debian/watch (added)
+++ trunk/libfax-hylafax-client-perl/debian/watch Thu Feb 28 11:34:02 2008
@@ -1,0 +1,7 @@
+# watch control file for uscan
+# you can run the "uscan" command
+# to check for upstream updates and more.
+# Site          Directory               Pattern                 Version Script
+version=2
+ftp://ftp.cpan.org/pub/CPAN/modules/by-module/Fax/Fax-Hylafax-Client-([\d\.]+)\.tar\.gz \
+  debian uupdate




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