--- gmt-manpages-3.4.4.orig/debian/rules +++ gmt-manpages-3.4.4/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 +MANDIR:=$(shell pwd)/debian/tmp/usr/share/man/man1 + +# This is the debhelper compatability version to use. +export DH_COMPAT=1 + +build: + +clean: + dh_testdir + dh_testroot + rm -f install-stamp + + dh_clean + +install: install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp. + #$(MAKE) prefix=`pwd`/debian/tmp/usr install + cd man/manl; for i in *.l; do \ + sed 's/^\.IR \([[:alnum:]]\+\) (l)/.IR \1 (1gmt)/g' \ + <$$i >$(MANDIR)/$${i%%.l}.1gmt; \ + done + + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-indep: build install +# dh_testversion + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples + dh_installmenu +# dh_installemacsen +# dh_installpam +# dh_installinit +# dh_installcron +# dh_installmanpages +# dh_installinfo +# dh_undocumented + dh_installchangelogs +# dh_link +# dh_strip + dh_compress + dh_fixperms + # You may want to make some executables suid here. +# dh_suidregister +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- gmt-manpages-3.4.4.orig/debian/dirs +++ gmt-manpages-3.4.4/debian/dirs @@ -0,0 +1 @@ +usr/share/man/man1 --- gmt-manpages-3.4.4.orig/debian/README.packaging +++ gmt-manpages-3.4.4/debian/README.packaging @@ -0,0 +1,7 @@ +Notes about the packaging +------------------------- + +The gmt-manpages package is based on upstream GMT_man.tar.gz, as you +might have guessed :) + + -- Torsten Landschoff Thu, 13 Nov 2003 08:31:51 +0100 --- gmt-manpages-3.4.4.orig/debian/control +++ gmt-manpages-3.4.4/debian/control @@ -0,0 +1,24 @@ +Source: gmt-manpages +Section: science +Priority: extra +Maintainer: Torsten Landschoff +Build-Depends-Indep: debhelper +Standards-Version: 3.6.1 + +Package: gmt-manpages +Architecture: all +Description: Manpages for the Generic Mapping Tools + This package contains the manpages for GMT which is available in the gmt + package. + . + GMT is a free, public-domain collection of ~60 UNIX tools that allow + users to manipulate (x,y) and (x,y,z) data sets (including filtering, + trend fitting, gridding, projecting, etc.) and produce Encapsulated + PostScript File (EPS) illustrations ranging from simple x-y plots + through contour maps to artificially illuminated surfaces and 3-D + perspective views in black and white, gray tone, hachure patterns, + and 24-bit color. + . + GMT supports 25 common map projections plus linear, log, and power + scaling, and comes with support data such as coastlines, rivers, and + political boundaries. --- gmt-manpages-3.4.4.orig/debian/changelog +++ gmt-manpages-3.4.4/debian/changelog @@ -0,0 +1,50 @@ +gmt-manpages (3.4.4-1) unstable; urgency=low + + * New upstream release. + * debian/control: Updated Standards-Version to 3.6.1 (no changes). + + -- Torsten Landschoff Fri, 21 May 2004 00:14:50 +0200 + +gmt-manpages (3.4.3-1) unstable; urgency=low + + * New upstream release. + * Acknowledge NMU by Daniel - thanks! (closes: #189732). + * debian/control: Reproduced the description of GMT in the description + of gmt-manpages so that luser can decide wether to install gmt-manpages + without looking at the description of gmt... (closes: #209505). + * Moved manpages to section (1gmt) and updated all references during + installation (closes: #185249). + + -- Torsten Landschoff Thu, 13 Nov 2003 08:56:49 +0100 + +gmt-manpages (3.4-1.1) unstable; urgency=low + + * NMU. + * Add Build-Depends-Indep on debhelper. Closes: #189732. + + -- Daniel Schepler Fri, 1 Aug 2003 00:52:58 -0700 + +gmt-manpages (3.4-1) unstable; urgency=low + + * New upstream release. + + -- Torsten Landschoff Thu, 13 Sep 2001 23:06:35 +0200 + +gmt-manpages (3.3.5-1) unstable; urgency=low + + * New upstream release. + + -- Torsten Landschoff Fri, 11 Aug 2000 01:13:06 +0200 + +gmt-manpages (3.3.3-1) unstable; urgency=low + + * New upstream release. + * debian/control: Moved into science section. + + -- Torsten Landschoff Fri, 14 Jan 2000 19:31:13 +0100 + +gmt-manpages (3.3.2-1) unstable; urgency=low + + * Initial release. + + -- Torsten Landschoff Wed, 29 Sep 1999 17:33:21 +0200 --- gmt-manpages-3.4.4.orig/debian/copyright +++ gmt-manpages-3.4.4/debian/copyright @@ -0,0 +1,23 @@ + +This package was debianized by Torsten Landschoff on +Fri, 1 Oct 1999 18:25:35 +0200 + +The upstream source is available from + + ftp://pahoehoe.soest.hawaii.edu/pub/gmt/ (main site) + ftp://ftp.geologi.uio.no/pub/gmt/ (the mirror I used) + +The main upstream authors are + + Paul Wessel + and Walter Smith + +Copyright: + +This software is covered by the GNU Library General Public Licence +(version 2, or if you choose, a later version). + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. If +you got the source archive you will find the license in the file COPYING +in the top directory. --- gmt-manpages-3.4.4.orig/man/manl/GMT.l +++ gmt-manpages-3.4.4/man/manl/GMT.l @@ -145,10 +145,11 @@ xyz2grd Convert equidistant xyz data to a 2-D grd file .br .SH "SEE ALSO" -Look up the individual man pages for details. By default, these pages are -in $GMTHOME/man/manl, depending on your installation settings. +Look up the individual man pages for details. These pages are in +/usr/share/man/man1/*.1gmt.gz on a Debian system. Information is also available on the GMT home page gmt.soest.hawaii.edu -or locally under $GMTHOME/www/gmt/gmt_services.html +or locally under /usr/share/doc/gmt-doc/gmt_services.html if the gmt-doc +package is installed. .SH REFERENCES Wessel, P., and W. H. F. Smith, 2001, The Generic Mapping Tools (GMT) version 3.4 Technical Reference & Cookbook, SOEST/NOAA.