--- proj-4.6.0.orig/config.guess
+++ proj-4.6.0/config.guess
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2007-03-06'
+timestamp='2007-07-22'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -330,7 +330,7 @@
     sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
 	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 	exit ;;
-    i86pc:SunOS:5.*:*)
+    i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*)
 	echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
 	exit ;;
     sun4*:SunOS:6*:*)
@@ -793,7 +793,7 @@
 	exit ;;
     *:Interix*:[3456]*)
     	case ${UNAME_MACHINE} in
-	    x86) 
+	    x86)
 		echo i586-pc-interix${UNAME_RELEASE}
 		exit ;;
 	    EM64T | authenticamd)
--- proj-4.6.0.orig/config.sub
+++ proj-4.6.0/config.sub
@@ -4,7 +4,7 @@
 #   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
 #   Inc.
 
-timestamp='2007-01-18'
+timestamp='2007-06-28'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -475,8 +475,8 @@
 		basic_machine=craynv-cray
 		os=-unicosmp
 		;;
-	cr16c)
-		basic_machine=cr16c-unknown
+	cr16)
+		basic_machine=cr16-unknown
 		os=-elf
 		;;
 	crds | unos)
@@ -683,6 +683,10 @@
 		basic_machine=i386-pc
 		os=-mingw32
 		;;
+	mingw32ce)
+		basic_machine=arm-unknown
+		os=-mingw32ce
+		;;
 	miniframe)
 		basic_machine=m68000-convergent
 		;;
--- proj-4.6.0.orig/debian/README.debian
+++ proj-4.6.0/debian/README.debian
@@ -0,0 +1,117 @@
+proj for DEBIAN
+---------------
+
+This is unusual, but let me provide some QuickStart on using this stuff.
+
+proj
+~~~~
+I use `proj' all the time to draw maps in various projections using
+graphing tools that cannot themselves handle fancy map projections
+by piping all my data (coastline, etc) through proj.
+
+For example, drawing Eastern Canada in Lambert Conformal Conic, I'd use:
+
+   proj +proj=lcc +ellps=clrk66 +lat_o=48.5 +lon_0="-62.5" -m 1:111120 -f '%.5f' -t9
+invproj +proj=lcc +ellps=clrk66 +lat_o=48.5 +lon_0="-62.5" -m 1:111120 -f '%.5f'
+  -r : reverses the order of the expected input from longitude-latitude or
+       x-y to latitude-longitude or y-x.
+
+  -f : Format is a printf format string to control the form of the output
+       values.
+
+  -m : scale
+
+  -t : specifies a character employed as the first character to denote a
+       control line to be passed through without processing.  This option
+       applicable to ascii input only.  (# is the default value).
+       I use this to skip over the missing data parameter.
+
+I pass Lat&Lon data segment to proj like so:
+
+-65   49
+-65.1 49.1
+99    99
+-66   49
+-66   49.1
+
+using 99 in this example to separate segments (missing data).  After piping
+the above through proj, I get :
+
+$ proj +proj=lcc +lat_o=48.5 +lon_0="-62.5" -m 1:111120 +ellps=clrk66 -f '%.5f' l.tmp
+-1.66314        51.62596
+-1.72676        51.72892
+*       *
+-2.32812        51.64792
+-2.32423        51.74899
+
+
+So, I might tell my graph-making package to use 99 as missing data
+parameter, and tell proj "-t9" (the first character of my missing value
+parameter) and get:
+
+$ proj +proj=lcc +lat_o=48.5 +lon_0="-62.5" -m 1:111120 -t9 ellps=clrk66 -f '%.5f' l.tmp
+-1.66314        51.62596
+-1.72676        51.72892
+99    99
+-2.32812        51.64792
+-2.32423        51.74899
+
+
+geod
+~~~~
+geod is useful for calculating a latitude & longitude given another
+position, along with distance and bearing.  The man page has a good
+example.  It's also useful to caculate the distance and bearing between two
+locations.  Let's verify that one nautical mile is (approx) equal to one
+minute in latitude (between 42 degN and 42 degN 1 minute):
+
+$ geod -I +ellps=clrk66 +units=kmi <<EOF
+42d00 72d00 42d01 72d00
+42 72 42.016666 72
+EOF
+
+It outputs two lines, showing that it's pretty liberal about input data
+format:
+
+ 0d      180d    1.000
+ 0d      180d    1.000
+
+So 1 nm at 180deg bearing.
+
+nad2nad and cs2cs:
+~~~~~~~~~~~~~~~~~
+The Debian proj package includes built-in datum conversion.  (It was
+compiled with proj-datumgrid-1.3.zip unpacked in the nad source directory.)
+
+nad2nad is a filter to convert data between North America Datum 1927
+(NAD27) and North American Datum 1983.  nad2nad can optionally process both
+State Plane Coordinate System (SPCS) and Universal Transverse Mercator
+(UTM) grid data as well as geographic data for both input and output.
+cs2cs is more general.  It performs transformation between the source and
+destination cartographic coordinate system on a set of input points.  The
+coordinate system transformation can include translation between projected
+and geographic coordinates as well as the application of datum shifts.
+
+Test nad2nad with the following example:
+
+$ nad2nad -i 83 -o 27 -r conus << EOF
+71d14'58.27"W   44d20'15.227"N
+EOF
+
+It should produce: 71d15'W 44d20'15"N
+
+While the nad2nad program can be used in some cases, the cs2cs is now the
+preferred mechanism. The following example demonstrates using the default
+shift parameters for NAD27 to NAD83:
+
+$ cs2cs +proj=latlong +datum=NAD27 +to +proj=latlong +datum=NAD83 
+-117 30
+
+producing:
+
+117d0'2.901"W   30d0'0.407"N 0.00
+
+See http://www.remotesensing.org/proj/faq.html
+
+Peter S Galbraith <psg@debian.org>
+Updated April 2003
--- proj-4.6.0.orig/debian/TODO
+++ proj-4.6.0/debian/TODO
@@ -0,0 +1,6 @@
+Maintainers TODO list
+---------------------
+
+The tarball contains a jniwrap section. It would be nice to enable that section after java-in-main.
+Please see Java Policy and find if it needs to depen on Sun Java or what else.
+
--- proj-4.6.0.orig/debian/control
+++ proj-4.6.0/debian/control
@@ -0,0 +1,27 @@
+Source: proj
+Section: science
+Priority: extra
+Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
+Uploaders: Peter S Galbraith <psg@debian.org>, Francesco Paolo Lovergine <frankie@debian.org>
+Build-Depends: debhelper (>=5.0.0)
+Standards-Version: 3.7.2
+
+Package: proj
+Architecture: any
+Depends: ${shlibs:Depends}
+Suggests: proj-ps-doc
+Description: Cartographic projection filter and library
+ Proj and invproj perform respective forward and inverse transformation
+ of cartographic data to or from Cartesian data with a wide range of
+ selectable projection functions (over 100 projections).
+ .
+ Geod and invgeod perform geodesic (Great Circle) computations for
+ determining latitude, longitude and back azimuth of a terminus point given
+ a initial point latitude, longitude, azimuth and distance (direct) or the
+ forward and back azimuths and distance between an initial and terminus
+ point latitudes and longitudes (inverse).
+ .
+ The proj package now provides builtin datum conversion.
+ .
+ See the package proj-ps-doc for documentation in PostScript format
+ and http://www.remotesensing.org/proj for additional resources.
--- proj-4.6.0.orig/debian/links
+++ proj-4.6.0/debian/links
@@ -0,0 +1,4 @@
+usr/share/man/man1/proj.1 usr/share/man/man1/invproj.1
+usr/share/man/man1/geod.1 usr/share/man/man1/invgeod.1
+usr/share/man/man3/pj_init.3 usr/share/man/man1/proj.3
+
--- proj-4.6.0.orig/debian/rules
+++ proj-4.6.0/debian/rules
@@ -0,0 +1,69 @@
+#!/usr/bin/make -f
+# Made with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Cristoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+CFLAGS=-O2 -Wall
+ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
+CFLAGS += -g
+endif
+# `nostrip' handled by dh_strip...
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man
+	make CFLAGS="$(CFLAGS)"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp install-stamp
+	[ ! -f Makefile ] || $(MAKE) distclean
+	dh_clean
+
+install: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_clean
+	dh_installdirs
+
+	# Add here commands to install the package into debian/proj.
+	make install DESTDIR=`pwd`/debian/proj
+
+	touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs AUTHORS README
+	dh_installexamples
+	dh_installman debian/nad2bin.1
+	dh_link
+	dh_installchangelogs ChangeLog upstream
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_makeshlibs
+#	dh_makeshlibs -V 'proj (>= 4.4.1-1)'
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary
--- proj-4.6.0.orig/debian/watch
+++ proj-4.6.0/debian/watch
@@ -0,0 +1,5 @@
+# Compulsory line, this is a version 3 file
+version=3
+ftp://ftp.remotesensing.org/proj/proj-([\d\.]+).tar.gz	debian	uupdate
+
+
--- proj-4.6.0.orig/debian/shlibs.local
+++ proj-4.6.0/debian/shlibs.local
@@ -0,0 +1 @@
+libproj 0
--- proj-4.6.0.orig/debian/changelog
+++ proj-4.6.0/debian/changelog
@@ -0,0 +1,178 @@
+proj (4.6.0-1~bpo40+1) etch-backports; urgency=low
+
+  * Backported to etch
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Wed, 23 Jan 2008 11:13:33 +0100
+
+proj (4.6.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Peter S Galbraith <psg@debian.org>  Fri, 21 Dec 2007 21:16:56 -0500
+
+proj (4.5.0-2) unstable; urgency=low
+
+  * Releasing for unstable.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Sun,  8 Apr 2007 11:23:57 +0200
+
+proj (4.5.0-1) experimental; urgency=low
+
+  * New upstream release.
+  * Moved to DebianGis Team maintainership, with Peter consent.
+  * Added Peter and me as Uploaders.
+  * Added a debian/watch file.
+  * Moved to debhelper level 5.
+  * Policy bumped to 3.7.2 without changes.
+  * Now using dh_link instead of manual sym links
+  * Now using makeshlibs again with default postrm/postinst
+  * Added a packaging TODO memo in debian/ dir.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Mon,  2 Apr 2007 00:50:09 +0200
+
+proj (4.4.9d-2) unstable; urgency=low
+
+  * Bug fix: "proj(GNU/k*BSD): FTBFS: out of date
+    config.sub/config.guess", thanks to Aurelien Jarno (Closes: #340013).
+    I copied the files from the autotools-dev package and asked upstream
+    to update the files as well.
+  
+ -- Peter S Galbraith <psg@debian.org>  Mon, 21 Nov 2005 20:36:24 -0500
+
+proj (4.4.9d-1) unstable; urgency=low
+
+  * Add built-in datum conversion support into upstream version 4.4.9
+    Thanks to Stephan Holl (Closes: #339470).
+
+ -- Peter S Galbraith <psg@debian.org>  Wed, 16 Nov 2005 11:23:11 -0500
+
+proj (4.4.9-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Peter S Galbraith <psg@debian.org>  Sat,  6 Nov 2004 19:44:53 -0500
+
+proj (4.4.8-3) unstable; urgency=low
+
+  * Bug fix: "proj_4.4.8-2(mipsel/unstable): configure built with broken
+    libtool.m4", thanks to Ryan Murray for reporting and specifying how to
+    fix it.  I ran 'autoreconf --force' to rebuild the configure file
+    (Closes: #260683).
+
+ -- Peter S Galbraith <psg@debian.org>  Wed, 21 Jul 2004 22:57:32 -0400
+
+proj (4.4.8-2) unstable; urgency=low
+
+  * Use new /usr/share/misc/config.guess and config.sub instead of using
+    patch from 4.4.7-3 as in 4.4.8-1, which led to wrong library so names
+    (lacking the .so part).
+
+ -- Peter S Galbraith <psg@debian.org>  Sat, 17 Jul 2004 12:16:26 -0400
+
+proj (4.4.8-1) unstable; urgency=low
+
+  * New upstream release.  Bug fix: "proj: [wish] new version of PROJ.4
+    available", thanks to Hamish for reminding me (Closes: #255488).
+  * Update to Standards-Version 3.6.1 without changes.
+
+ -- Peter S Galbraith <psg@debian.org>  Tue, 13 Jul 2004 20:56:33 -0400
+
+proj (4.4.7-3) unstable; urgency=low
+
+  * autoreconf with libtool from unstable so that package may build on
+    mips (closes: #188684)
+
+ -- Peter S Galbraith <psg@debian.org>  Fri,  2 May 2003 22:56:05 -0400
+
+proj (4.4.7-2) unstable; urgency=low
+
+  * Updated README.Debian and nad2bin mane page concerning the creation of
+    datum conversion data files.
+  * Tweak geod man page (closes: #181998)
+
+ -- Peter S Galbraith <psg@debian.org>  Tue,  8 Apr 2003 22:44:39 -0400
+
+proj (4.4.7-1) unstable; urgency=low
+
+  * New upstream release
+  - Updated config.sub and config.status. (closes: #186586)
+  - Removed the -V flag from the cs2cs.1 man page. (closes: #162331)
+  - Corrected cs2cs to honour -f for z values (closes: #169056)
+  * Upgrade to Standards-Version 3.5.9, but have not yet implemented
+    parsing of DEB_BUILD_OPTIONS for optimization.
+
+ -- Peter S Galbraith <psg@debian.org>  Mon, 31 Mar 2003 13:43:02 -0500
+
+proj (4.4.6-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Peter S Galbraith <psg@debian.org>  Wed, 19 Mar 2003 14:26:17 -0500
+
+proj (4.4.5-1) unstable; urgency=low
+
+  * New upstream version (Bug fix release).
+  * debian/control Fix minor spelling mistake (closes: #125272)
+  * Update to Standards-Version 3.5.6, parse DEB_BUILD_OPTIONS for debug.
+  * debian/postrm: Add debhelper token (bug fix!).
+
+ -- Peter S Galbraith <psg@debian.org>  Fri, 11 Jan 2002 10:27:12 -0500
+
+proj (4.4.4-1) unstable; urgency=low
+
+  * New upstream release.
+  * Undo patches to config.guess and config.sub from 4.4.3-2 since this
+    was folded-in upstream.
+  * debian/postinst: Run ldconfig on configure only.
+  * debian/postrm (new file): Run ldconfig on remove.
+
+ -- Peter S Galbraith <psg@debian.org>  Mon, 17 Sep 2001 10:10:34 -0400
+
+proj (4.4.3-2) unstable; urgency=low
+
+  * Update config.guess and config.sub files from
+    http://subversions.gnu.org/cgi-bin/cvsweb/config (closes: #97374).
+    This was done in upstream CVS in response to this bug, but I shouldn't
+    wait any longer to update the package since woody freeze is starting
+    soon, and we want the archive sources to match the binary used on
+    PARISC.
+  * debian/control: change priority to extra (to match override file).
+
+ -- Peter S Galbraith <psg@debian.org>  Tue, 10 Jul 2001 16:02:47 -0400
+
+proj (4.4.3-1) unstable; urgency=low
+
+  * New upstream release.
+  * Change to section science.
+  * Includes cs2cs man page.
+
+ -- Peter S Galbraith <psg@debian.org>  Fri, 20 Apr 2001 16:24:21 -0400
+
+proj (4.4.2-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Peter S Galbraith <psg@debian.org>  Fri, 22 Sep 2000 13:05:35 -0400
+
+proj (4.4.1-2) unstable; urgency=low
+
+  * Fixed rules file for doing `make distclean' when no Makefile exists yet.
+    closes: #69847: freshly unpacked source cannot be cleaned
+
+ -- Peter S Galbraith <psg@debian.org>  Thu, 24 Aug 2000 09:34:06 -0400
+
+proj (4.4.1-1) unstable; urgency=low
+
+  * New upstream version (builds shared library now).
+  * Update to Standards-Version 3.1.1, adding Build-Depends.
+  * closes: #69380
+
+ -- Peter S Galbraith <psg@debian.org>  Fri, 18 Aug 2000 11:16:42 -0400
+
+proj (4.3.3-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Peter S Galbraith <psg@debian.org>  Sun, 24 Oct 1999 14:13:26 -0400
+
+
--- proj-4.6.0.orig/debian/proj.postrm
+++ proj-4.6.0/debian/proj.postrm
@@ -0,0 +1,37 @@
+#!/bin/sh
+
+set -e
+
+# summary of how this script can be called:
+#        * <postrm> `remove'
+#        * <postrm> `purge'
+#        * <old-postrm> `upgrade' <new-version>
+#        * <new-postrm> `failed-upgrade' <old-version>
+#        * <new-postrm> `abort-install'
+#        * <new-postrm> `abort-install' <old-version>
+#        * <new-postrm> `abort-upgrade' <old-version>
+#        * <disappearer's-postrm> `disappear' <overwriter>
+#          <overwriter-version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+       ldconfig
+    ;;
+
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+
--- proj-4.6.0.orig/debian/compat
+++ proj-4.6.0/debian/compat
@@ -0,0 +1 @@
+5
--- proj-4.6.0.orig/debian/shlibs
+++ proj-4.6.0/debian/shlibs
@@ -0,0 +1 @@
+libproj 0 proj (>= 4.4.1-1)
--- proj-4.6.0.orig/debian/copyright
+++ proj-4.6.0/debian/copyright
@@ -0,0 +1,66 @@
+This package was debianized by Peter S Galbraith psg@debian.org on
+Sun, 24 Oct 1999 14:13:26 -0400.
+
+The Debian orig.tar.gz files combines:
+
+  ftp://ftp.remotesensing.org/proj/proj-4.4.9.tar.gz
+  ftp://ftp.remotesensing.org/proj/proj-datumgrid-1.3.zip
+
+where the second is unzipped in the nad directory before configuring to add
+NAD27/NAD83 and NZGD49 datum conversion.
+
+Web page:       http://www.remotesensing.org/proj
+Old Web pages:  http://kai.er.usgs.gov/ftp/mapgenproj.html
+                http://www.vectaport.com/ivmaps/projinfo.html
+
+Version 4.3.3 was authored by:
+   Gerald (Jerry) Ian Evenden
+   email: gie@kai.er.usgs.gov   gevenden@capecod.net
+   phone: (508)563-6766
+   P.O. Box 1027
+   N.Falmouth, MA 02556-1027
+
+ Proj is a U.S. Government work and is not eligible for U.S. copyright
+ protection.  This is free software.
+
+ Here's what Jerry replied when I asked what the license was:
+
+  `The software was developed by the USGS and has no copyright
+   nor license.  Do with it what you will.  :-)'
+
+Maintenance of proj has been taken up by Frank Warmerdam <warmerda@home.com>
+under the following license:
+
+  All source, data files and other contents of the PROJ.4 package are 
+  available under the following terms.  Note that the PROJ 4.3 and earlier
+  was "public domain" as is common with US government work, but apparently
+  this is not a well defined legal term in many countries.  I am placing 
+  everything under the following MIT style license because I believe it is
+  effectively the same as public domain, allowing anyone to use the code as
+  they wish, including making proprietary derivatives. 
+  
+  Though I have put my own name as copyright holder, I don't mean to imply
+  I did the work.  Essentially all work was done by Gerald Evenden. 
+  
+   --------------
+  
+   Copyright (c) 2000, Frank Warmerdam
+  
+   Permission is hereby granted, free of charge, to any person obtaining a
+   copy of this software and associated documentation files (the "Software"),
+   to deal in the Software without restriction, including without limitation
+   the rights to use, copy, modify, merge, publish, distribute, sublicense,
+   and/or sell copies of the Software, and to permit persons to whom the
+   Software is furnished to do so, subject to the following conditions:
+  
+   The above copyright notice and this permission notice shall be included
+   in all copies or substantial portions of the Software.
+  
+   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+   DEALINGS IN THE SOFTWARE.
+
--- proj-4.6.0.orig/debian/proj.postinst
+++ proj-4.6.0/debian/proj.postinst
@@ -0,0 +1,39 @@
+#!/bin/sh
+
+set -e
+
+# summary of how this script can be called:
+#        * <postinst> `configure' <most-recently-configured-version>
+#        * <old-postinst> `abort-upgrade' <new version>
+#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+#          <new-version>
+#        * <postinst> `abort-remove'
+#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+#          <failed-install-package> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+
+case "$1" in
+    configure)
+        ldconfig
+    ;;
+
+    abort-upgrade|abort-remove|abort-deconfigure)
+    ;;
+
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
+
+
--- proj-4.6.0.orig/debian/nad2bin.1
+++ proj-4.6.0/debian/nad2bin.1
@@ -0,0 +1,67 @@
+'\" t
+.TH NAD2BIN 1
+.SH NAME 
+nad2bin \- convert nad ASCII files into binary format usable by nad2nad
+.SH DESCRIPTION
+
+This command is undocumented upstream.  This very rough documentation was
+quickly assembled by your friendly Debian maintainer (who doesn't use this
+command, and so is not the best person to document it!).
+
+The 
+.B proj
+package includes the 
+.I nad2nad
+binary, the North American Datum conversion filter used to convert data
+between North America Datum 1927 (NAD27) and North American Datum 1983, and
+.I cs2cs
+a binary that performs transformation between the source and destination
+cartographic coordinate system on a set of input points.  The coordinate
+system transformation can include translation between projected and
+geographic coordinates as well as the application of datum shifts.
+
+See the
+.I nad2nad(1)
+and
+.I cs2cs(1)
+man pages for more information.  
+
+.B nad2nad
+and
+.B cs2cs 
+need arch-dependent conversion data files in a library directory, 
+.I /usr/share/proj/
+These files are not included in the proj Debian package because they would
+add 2MB per Debian binary package for something very few people might use. 
+To produce them yourself, get the *.lla files from 
+
+.B  ftp://ftp.remotesensing.org/pub/proj/proj-nad27-1.1.tar.gz
+
+and then run 
+.B nad2bin 
+to produce the binary files used by 
+.B nad2nad
+and
+.B cs2cs
+like so:
+
+.B # nad2bin < conus.lla /usr/share/proj/conus
+
+Test nad2nad with the following example:
+
+.B $ nad2nad -i 83 -o 27 -r conus << EOF
+
+71d14'58.27"W   44d20'15.227"N
+
+EOF
+
+It should produce: 
+
+71d15'W 44d20'15"N
+
+.SH "SEE ALSO"
+.B
+nad2nad(1), cs2cs(1)
+
+.SH AUTHOR
+This manual page by Peter S Galbraith <psg@debian.org>.
