From f305f483f5a52a5869ac7a0b600cc9a86751eebd Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Sat, 28 Feb 2004 22:25:40 -0700 Subject: [PATCH] Imported Debian patch 1.1.0-1 --- debian/changelog | 18 ++++++++++++++ debian/control | 15 ++++++++++++ debian/copyright | 16 +++++++++++++ debian/dirs | 2 ++ debian/docs | 1 + debian/rules | 61 ++++++++++++++++++++++++++++++++++++++++++++++++ utils/fontdata.c | 1 + 7 files changed, 114 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0fde5b0 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,18 @@ +splat (1.1.0-1) unstable; urgency=low + + * new upstream version, closes: #234621 + + -- Bdale Garbee Sat, 28 Feb 2004 22:25:40 -0700 + +splat (1.0.3-1) unstable; urgency=low + + * new upstream version, closes: #149717 + + -- Bdale Garbee Sat, 17 Aug 2002 22:38:09 -0600 + +splat (1.0.0-1) unstable; urgency=low + + * Initial Release. + + -- Bdale Garbee Mon, 22 Apr 2002 00:03:05 -0600 + diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..a350f9d --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: splat +Section: hamradio +Priority: optional +Maintainer: Bdale Garbee +Build-Depends: debhelper (>> 3.0.0), libbz2-dev, zlib1g-dev +Standards-Version: 3.6.1.0 + +Package: splat +Architecture: any +Depends: ${shlibs:Depends}, gnuplot +Description: analyze point-to-point terrestrial RF communication links + SPLAT! is a Surface Path Length And Terrain analysis application written + for Linux and Unix workstations. SPLAT! analyzes point-to-point terrestrial + RF communication links, and provides information useful to communication + system designers and site engineers. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..2e0c303 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,16 @@ +This package was debianized by Bdale Garbee on +Mon, 22 Apr 2002 00:03:05 -0600. + +It was downloaded from http://www.qsl.net/kd2bd/splat.html + +Upstream Author: John A Magliacane, KD2BD + +Copyright: + + Copyright John A. Magliacane, KD2BD 1997-2002 + + GPL + +On Debian GNU/Linux systems, the complete text of the GNU General Public +License can be found in the `/usr/share/common-licenses' directory. + diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..98d1583 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/man/man1 diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..aeebddd --- /dev/null +++ b/debian/rules @@ -0,0 +1,61 @@ +#!/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 + +# This is the debhelper compatibility version to use. +export DH_COMPAT=3 + +build: build-stamp +build-stamp: + dh_testdir + ./build all + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + rm -f splat utils/fontdata utils/citydecoder utils/usgs2sdf + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + cp splat $(CURDIR)/debian/splat/usr/bin + cp utils/citydecoder $(CURDIR)/debian/splat/usr/bin + cp utils/usgs2sdf $(CURDIR)/debian/splat/usr/bin + cp utils/fontdata $(CURDIR)/debian/splat/usr/bin + cp docs/man/splat.man $(CURDIR)/debian/splat/usr/share/man/man1/splat.1 + +# Build architecture-independent files here. +binary-indep: build install + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples + dh_installmenu + dh_installcron + dh_installman + dh_installinfo +# dh_undocumented + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install diff --git a/utils/fontdata.c b/utils/fontdata.c index f04e546..b156817 100644 --- a/utils/fontdata.c +++ b/utils/fontdata.c @@ -32,6 +32,7 @@ #include #include #include +#include int main(argc,argv) int argc; -- 2.30.2