From f96cd91ac242f68bc9c7b14b5e4ef45af00cfe60 Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Mon, 16 Jul 2001 23:13:32 +0100 Subject: [PATCH] Import Debian changes 0.0.19-1 htag (0.0.19-1) unstable; urgency=low * New upstream release. htag (0.0.18-1) unstable; urgency=low * New upstream release. htag (0.0.17-2) unstable; urgency=low * Change of directory for Perl module (closes: Bug#95510) htag (0.0.17-1) unstable; urgency=low * Initial Debianization. --- debian/changelog | 23 +++++++++++++++++++++ debian/control | 18 +++++++++++++++++ debian/copyright | 14 +++++++++++++ debian/rules | 52 ++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 107 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0b8ea72 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,23 @@ +htag (0.0.19-1) unstable; urgency=low + + * New upstream release. + + -- Jonathan McDowell Mon, 16 Jul 2001 23:13:32 +0100 + +htag (0.0.18-1) unstable; urgency=low + + * New upstream release. + + -- Jonathan McDowell Fri, 18 May 2001 11:36:04 +0100 + +htag (0.0.17-2) unstable; urgency=low + + * Change of directory for Perl module (closes: Bug#95510) + + -- Jonathan McDowell Fri, 27 Apr 2001 21:49:37 +0100 + +htag (0.0.17-1) unstable; urgency=low + + * Initial Debianization. + + -- Jonathan McDowell Thu, 30 Nov 2000 16:37:24 +0000 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..9f6703e --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: htag +Maintainer: Jonathan McDowell +Priority: optional +Section: mail +Standards-Version: 3.1.0 +Build-Depends: debhelper, perl5 + +Package: htag +Architecture: all +Priority: optional +Section: mail +Depends: ${perl:Depends} +Description: A tagline adder for email, news and FidoNet messages. + htag is a tagline adder but it has now been so over engineered that + it will also do anything you want it to[0], do lots of stuff I want + it to, and do stuff it wants to. + . + [0] Or at least it will if you write the appropriate plugin. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..12a3ddd --- /dev/null +++ b/debian/copyright @@ -0,0 +1,14 @@ +This is Debian GNU/Linux's prepackaged version of htag, a tagline adder for +email, news and FidoNet messages. + +This package was put together by Jonathan McDowell . The +upstream author is Simon Huggins + +The only change for the Debian package was the addition of the debian/ +files. + +It can be obtained from http://www.earth.li/projectpurple/progs/htag.html + +You are free to distribute this software under the terms of the GNU +General Public License. The full text of this license can be found +in the file /usr/share/common-licenses/GPL diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..6502ac0 --- /dev/null +++ b/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f + +# Use debhelper v2. +export DH_COMPAT := 2 + +# Make sure perl is defined, but allow overriding from the command line. +PERL ?= /usr/bin/perl + +builddir := $(shell pwd)/debian/htag +pmdir := $(shell $(PERL) -MConfig -e 'if (defined($$Config{installvendorlib})) { print $$Config{installvendorlib} } else { print $$Config{installprivlib} }') + +build: + +binary: binary-indep + +binary-indep: binary-indep-stamp +binary-indep-stamp: install + dh_testdir + dh_testroot + dh_installdocs docs/AUTHORS docs/BUGS docs/INSTALL \ + docs/MACRO_DESCRIPTION docs/README \ + docs/README.Multiple_Configs docs/TODO docs/TROUBLESHOOTING \ + docs/URL docs/WRITING_SIGS + dh_installchangelogs docs/Changelog.htag docs/Changelog.htagplugin + dh_installexamples docs/sample-config/* + dh_installmanpages + dh_fixperms + dh_installdeb + dh_perl + dh_strip + dh_shlibdeps + dh_compress + dh_gencontrol + dh_builddeb + touch binary-indep-stamp + +clean: + dh_testdir + dh_testroot + dh_clean install-stamp binary-indep-stamp htag.1 + +install: install-stamp +install-stamp: + dh_testdir + pod2man htag.pl > htag.1 + install -d $(builddir)/usr/bin + install -d $(builddir)/usr/share/htag/plugins + install -d $(builddir)/$(pmdir) + install -m 755 htag.pl $(builddir)/usr/bin/htag + install -m 644 HtagPlugin/HtagPlugin.pm $(builddir)/$(pmdir) + install -m 755 plugins/* $(builddir)/usr/share/htag/plugins + touch install-stamp -- 2.39.2