--- reformat-20040319.orig/debian/changelog +++ reformat-20040319/debian/changelog @@ -0,0 +1,19 @@ +reformat (20040319-1) unstable; urgency=low + + * installation of copyright file + + -- Stephan Beyer Sun, 4 Jul 2004 20:03:00 +0200 + +reformat (20040319) unstable; urgency=low + + * included POD -> manual page will be created + * added '-p' option + + -- Stephan Beyer Fri, 19 Mar 2004 17:18:42 +0100 + +reformat (20030906) unstable; urgency=low + + * Initial Release with options: -h, -j, -l, -w + + -- Stephan Beyer Sat, 9 Sep 2003 00:00:00 +0200 + --- reformat-20040319.orig/debian/compat +++ reformat-20040319/debian/compat @@ -0,0 +1 @@ +4 --- reformat-20040319.orig/debian/rules +++ reformat-20040319/debian/rules @@ -0,0 +1,43 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 + +VERSION=`grep '^\$$version' $(CURDIR)/reformat | sed 's/.*"\([0-9]*\)".*/\1/'` +INSTDIR=$(CURDIR)/debian/reformat +INSTALL=/usr/bin/install -c + +build: + dh_testdir + /usr/bin/pod2man -c reformat -r 'reformat '$(VERSION) reformat reformat.1 + +clean: + dh_testdir + dh_testroot + rm -f reformat.1 + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(INSTALL) -m 644 -D reformat.1 $(INSTDIR)/usr/share/man/man1/reformat.1 + $(INSTALL) -m 755 -D reformat $(INSTDIR)/usr/bin/reformat + + +binary-indep: build install +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- reformat-20040319.orig/debian/control +++ reformat-20040319/debian/control @@ -0,0 +1,19 @@ +Source: reformat +Section: text +Priority: optional +Maintainer: Stephan Beyer +Build-Depends: debhelper (>= 4.0.0) +Standards-Version: 3.6.1 + +Package: reformat +Architecture: any +Depends: ${perl:Depends} +Description: simple tool for re-formatting plain ascii texts + reformat reads plain ascii texts from stdin, reformats them and then + writes the result to stdout. + . + Reformatting can be: + o justify text + o add a left margin + o 'resize' text to a special width + o ... --- reformat-20040319.orig/debian/copyright +++ reformat-20040319/debian/copyright @@ -0,0 +1,20 @@ +Upstream and Debian package by Stephan Beyer +Upstream website: http://www.s-beyer.de + +Copyright: + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This package is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, + USA. + +On Debian systems, the complete text of the GNU General Public License can +be found in `/usr/share/common-licenses/GPL'.