[libgeotiff-epsg] 03/28: [svn-inject] Applying Debian modifications to trunk
Bas Couwenberg
sebastic at xs4all.nl
Tue Nov 25 20:11:14 UTC 2014
This is an automated email from the git hooks/post-receive script.
sebastic-guest pushed a commit to branch master
in repository libgeotiff-epsg.
commit 28a1c4429462d222e0aeb7a555a69bfc0b35f045
Author: Francesco Paolo Lovergine <frankie at debian.org>
Date: Wed Sep 19 11:58:58 2007 +0000
[svn-inject] Applying Debian modifications to trunk
---
debian/README.Debian | 9 +++++++++
debian/changelog | 6 ++++++
debian/compat | 1 +
debian/control | 22 ++++++++++++++++++++++
debian/copyright | 43 +++++++++++++++++++++++++++++++++++++++++++
debian/dirs | 2 ++
debian/install | 1 +
debian/rules | 40 ++++++++++++++++++++++++++++++++++++++++
8 files changed, 124 insertions(+)
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..6b1a2bb
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,9 @@
+libgeotiff-epsg for Debian
+--------------------------
+
+This package installs the CSV version of the EPSG data for the libgeotiff package.
+The source package contains the full libgeotiff csv/ directory for completeness
+for interested developers.
+
+ -- Francesco Paolo Lovergine <frankie at debian.org> Wed, 19 Sep 2007 10:51:31 +0200
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..fa3e2e1
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+libgeotiff-epsg (1.2.4-1) UNRELEASED; urgency=low
+
+ * Initial release
+
+ -- Francesco Paolo Lovergine <frankie at debian.org> Wed, 4 Apr 2007 20:45:27 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..02f3df2
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: libgeotiff-epsg
+Section: non-free/science
+Priority: optional
+Maintainer: Debian GIS Project <pkg-grass-devel at lists.alioth.debian.org>
+Uploaders: Francesco Paolo Lovergine <frankie at debian.org>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+
+Package: libgeotiff-epsg
+Section: libs
+Architecture: all
+Depends: libgeotiff1.2
+Description: the GeoTIFF library -- EPSG Geodetic Parameter Dataset
+ This C library supports TIFF 6.0 based interchange format for georeferenced
+ raster imagery. The GeoTIFF standard has been developed for reading, and writing
+ geographic meta-information tags on top of TIFF raster.
+ .
+ Home page: http://geotiff.maptools.org/
+ .
+ This package contains EPSG Geodetic Paramenters data files which can be used
+ with standard projections.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5ade6e5
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,43 @@
+This package was debianized by Francesco Paolo Lovergine <frankie at debian.org> on
+Wed, 19 Sep 2007 20:45:27 +0200.
+
+It was downloaded from http://remotesensing.org/geotiff/geotiff.html
+
+Upstream Author: Frank Warmerdam et al <warmerdam at pobox.com>
+
+Copyright: Copyright (c) 1999, Frank Warmerdam
+ Copyright (c) 1995, Niles D. Ritter
+
+License:
+
+The EPSG Tables (from which the CSV files, and .inc files are derived)
+carried this statement on use of the data (from the EPSG web site):
+
+ Use of the Data
+
+ The user assumes the entire risk as to the accuracy and the use of this
+ data. The data may be copied and distributed subject to the following
+ conditions:
+
+ 1.All data pertinent to a specific coordinate system must be copied
+ without modification and all related pages must be included;
+
+ 2.All components of this data set pertinent to any given coordinate
+ system must be distributed together (complete distribution of all
+ components of the data set is preferred, but the EPSG recognises
+ the need for a more limited distribution);
+
+ 3.The data may not be distributed for profit by any third party; and
+ 4.The original source [EPSG] must be acknowledged.
+
+ INFORMATION PROVIDED IN THIS DOCUMENT IS PROVIDED "AS
+ IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
+ PARTICULAR PURPOSE.
+
+-----------
+
+The Debian packaging is (C) 2007, Francesco Paolo Lovergine <frankie at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..01c269c
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/share
+usr/share/epsg_csv
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..1eb1fc7
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+usr/share/epsg_csv/*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d7504c6
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,40 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+clean:
+ dh_testdir
+ dh_testroot
+ dh_clean
+
+build:
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ install -o root -g root -d $(CURDIR)/debian/tmp/usr/share/epsg_csv
+ install -o root -g root csv/*.csv $(CURDIR)/debian/tmp/usr/share/epsg_csv/.
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testroot
+ dh_installdocs
+ dh_install --sourcedir=$(CURDIR)/debian/tmp
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: install
+# We have nothing to do by default.
+
+binary: binary-indep binary-arch
+.PHONY: clean binary-indep binary-arch binary install
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/libgeotiff-epsg.git
More information about the Pkg-grass-devel
mailing list