--- grass-6.2.3.orig/config.guess
+++ grass-6.2.3/config.guess
@@ -1,9 +1,10 @@
 #! /bin/sh
 # Attempt to guess a canonical system name.
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
+#   Inc.
 
-timestamp='2005-07-08'
+timestamp='2006-07-02'
 
 # 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
@@ -106,7 +107,7 @@
 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
 : ${TMPDIR=/tmp} ;
- { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
+ { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
  { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
  { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
  { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
@@ -206,8 +207,11 @@
     *:ekkoBSD:*:*)
 	echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
 	exit ;;
+    *:SolidBSD:*:*)
+	echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE}
+	exit ;;
     macppc:MirBSD:*:*)
-	echo powerppc-unknown-mirbsd${UNAME_RELEASE}
+	echo powerpc-unknown-mirbsd${UNAME_RELEASE}
 	exit ;;
     *:MirBSD:*:*)
 	echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
@@ -764,7 +768,14 @@
 	echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
 	exit ;;
     *:FreeBSD:*:*)
-	echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
+	case ${UNAME_MACHINE} in
+	    pc98)
+		echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+	    amd64)
+		echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+	    *)
+		echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
+	esac
 	exit ;;
     i*:CYGWIN*:*)
 	echo ${UNAME_MACHINE}-pc-cygwin
@@ -779,8 +790,11 @@
     i*:PW*:*)
 	echo ${UNAME_MACHINE}-pc-pw32
 	exit ;;
-    x86:Interix*:[34]*)
-	echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
+    x86:Interix*:[3456]*)
+	echo i586-pc-interix${UNAME_RELEASE}
+	exit ;;
+    EM64T:Interix*:[3456]*)
+	echo x86_64-unknown-interix${UNAME_RELEASE}
 	exit ;;
     [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
 	echo i${UNAME_MACHINE}-pc-mks
@@ -794,7 +808,7 @@
     i*:UWIN*:*)
 	echo ${UNAME_MACHINE}-pc-uwin
 	exit ;;
-    amd64:CYGWIN*:*:*)
+    amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*)
 	echo x86_64-unknown-cygwin
 	exit ;;
     p*:CYGWIN*:*)
@@ -817,6 +831,9 @@
     arm*:Linux:*:*)
 	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
+    avr32*:Linux:*:*)
+	echo ${UNAME_MACHINE}-unknown-linux-gnu
+	exit ;;
     cris:Linux:*:*)
 	echo cris-axis-linux-gnu
 	exit ;;
@@ -851,7 +868,11 @@
 	#endif
 	#endif
 EOF
-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
+	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
+	    /^CPU/{
+		s: ::g
+		p
+	    }'`"
 	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
 	;;
     mips64:Linux:*:*)
@@ -870,7 +891,11 @@
 	#endif
 	#endif
 EOF
-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
+	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
+	    /^CPU/{
+		s: ::g
+		p
+	    }'`"
 	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
 	;;
     or32:Linux:*:*)
@@ -919,6 +944,9 @@
     sparc:Linux:*:* | sparc64:Linux:*:*)
 	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit ;;
+    vax:Linux:*:*)
+	echo ${UNAME_MACHINE}-dec-linux-gnu
+	exit ;;
     x86_64:Linux:*:*)
 	echo x86_64-unknown-linux-gnu
 	exit ;;
@@ -964,7 +992,7 @@
 	LIBC=gnulibc1
 	# endif
 	#else
-	#ifdef __INTEL_COMPILER
+	#if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC)
 	LIBC=gnu
 	#else
 	LIBC=gnuaout
@@ -974,7 +1002,11 @@
 	LIBC=dietlibc
 	#endif
 EOF
-	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
+	eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '
+	    /^LIBC/{
+		s: ::g
+		p
+	    }'`"
 	test x"${LIBC}" != x && {
 		echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
 		exit
@@ -1185,7 +1217,6 @@
     *:Darwin:*:*)
 	UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
 	case $UNAME_PROCESSOR in
-	    *86) UNAME_PROCESSOR=i686 ;;
 	    unknown) UNAME_PROCESSOR=powerpc ;;
 	esac
 	echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
@@ -1264,6 +1295,9 @@
     i*86:skyos:*:*)
 	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
 	exit ;;
+    i*86:rdos:*:*)
+	echo ${UNAME_MACHINE}-pc-rdos
+	exit ;;
 esac
 
 #echo '(No uname command or uname output not recognized.)' 1>&2
--- grass-6.2.3.orig/config.sub
+++ grass-6.2.3/config.sub
@@ -1,9 +1,10 @@
 #! /bin/sh
 # Configuration validation subroutine script.
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+#   2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
+#   Inc.
 
-timestamp='2005-07-08'
+timestamp='2006-07-02'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -119,8 +120,9 @@
 # Here we must recognize all the valid KERNEL-OS combinations.
 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
 case $maybe_os in
-  nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \
-  kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*)
+  nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
+  uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
+  storm-chaos* | os2-emx* | rtmk-nova*)
     os=-$maybe_os
     basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
     ;;
@@ -171,6 +173,10 @@
 	-hiux*)
 		os=-hiuxwe2
 		;;
+	-sco6)
+		os=-sco5v6
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
 	-sco5)
 		os=-sco3.2v5
 		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
@@ -187,6 +193,10 @@
 		# Don't forget version if it is 3.2v4 or newer.
 		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
 		;;
+	-sco5v6*)
+		# Don't forget version if it is 3.2v4 or newer.
+		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
+		;;
 	-sco*)
 		os=-sco3.2v2
 		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
@@ -231,7 +241,7 @@
 	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
 	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
 	| am33_2.0 \
-	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \
+	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
 	| bfin \
 	| c4x | clipper \
 	| d10v | d30v | dlx | dsp16xx \
@@ -239,7 +249,8 @@
 	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
 	| i370 | i860 | i960 | ia64 \
 	| ip2k | iq2000 \
-	| m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \
+	| m32c | m32r | m32rle | m68000 | m68k | m88k \
+	| maxq | mb | microblaze | mcore \
 	| mips | mipsbe | mipseb | mipsel | mipsle \
 	| mips16 \
 	| mips64 | mips64el \
@@ -257,18 +268,19 @@
 	| mipsisa64sr71k | mipsisa64sr71kel \
 	| mipstx39 | mipstx39el \
 	| mn10200 | mn10300 \
-	| ms1 \
+	| mt \
 	| msp430 \
+	| nios | nios2 \
 	| ns16k | ns32k \
 	| or32 \
 	| pdp10 | pdp11 | pj | pjl \
 	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
 	| pyramid \
-	| sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
+	| sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
 	| sh64 | sh64le \
-	| sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \
-	| sparcv8 | sparcv9 | sparcv9b \
-	| strongarm \
+	| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
+	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
+	| spu | strongarm \
 	| tahoe | thumb | tic4x | tic80 | tron \
 	| v850 | v850e \
 	| we32k \
@@ -276,9 +288,6 @@
 	| z8k)
 		basic_machine=$basic_machine-unknown
 		;;
-	m32c)
-		basic_machine=$basic_machine-unknown
-		;;
 	m6811 | m68hc11 | m6812 | m68hc12)
 		# Motorola 68HC11/12.
 		basic_machine=$basic_machine-unknown
@@ -286,6 +295,9 @@
 		;;
 	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k)
 		;;
+	ms1)
+		basic_machine=mt-unknown
+		;;
 
 	# We use `pc' rather than `unknown'
 	# because (1) that's what they normally are, and
@@ -305,7 +317,7 @@
 	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
 	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
 	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
-	| avr-* \
+	| avr-* | avr32-* \
 	| bfin-* | bs2000-* \
 	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
 	| clipper-* | craynv-* | cydra-* \
@@ -316,7 +328,7 @@
 	| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
 	| i*86-* | i860-* | i960-* | ia64-* \
 	| ip2k-* | iq2000-* \
-	| m32r-* | m32rle-* \
+	| m32c-* | m32r-* | m32rle-* \
 	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
 	| m88110-* | m88k-* | maxq-* | mcore-* \
 	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \
@@ -336,19 +348,20 @@
 	| mipsisa64sr71k-* | mipsisa64sr71kel-* \
 	| mipstx39-* | mipstx39el-* \
 	| mmix-* \
-	| ms1-* \
+	| mt-* \
 	| msp430-* \
+	| nios-* | nios2-* \
 	| none-* | np1-* | ns16k-* | ns32k-* \
 	| orion-* \
 	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
 	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
 	| pyramid-* \
 	| romp-* | rs6000-* \
-	| sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \
+	| sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
 	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
-	| sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \
+	| sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
 	| sparclite-* \
-	| sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
+	| sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \
 	| tahoe-* | thumb-* \
 	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
 	| tron-* \
@@ -359,8 +372,6 @@
 	| ymp-* \
 	| z8k-*)
 		;;
-	m32c-*)
-		;;
 	# Recognize the various machine names and aliases which stand
 	# for a CPU type and a company and sometimes even an OS.
 	386bsd)
@@ -696,6 +707,9 @@
 		basic_machine=i386-pc
 		os=-msdos
 		;;
+	ms1-*)
+		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
+		;;
 	mvs)
 		basic_machine=i370-ibm
 		os=-mvs
@@ -803,6 +817,12 @@
 	pc532 | pc532-*)
 		basic_machine=ns32k-pc532
 		;;
+	pc98)
+		basic_machine=i386-pc
+		;;
+	pc98-*)
+		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
+		;;
 	pentium | p5 | k5 | k6 | nexgen | viac3)
 		basic_machine=i586-pc
 		;;
@@ -859,6 +879,10 @@
 		basic_machine=i586-unknown
 		os=-pw32
 		;;
+	rdos)
+		basic_machine=i386-pc
+		os=-rdos
+		;;
 	rom68k)
 		basic_machine=m68k-rom68k
 		os=-coff
@@ -1101,7 +1125,7 @@
 	sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele)
 		basic_machine=sh-unknown
 		;;
-	sparc | sparcv8 | sparcv9 | sparcv9b)
+	sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
 		basic_machine=sparc-sun
 		;;
 	cydra)
@@ -1174,21 +1198,23 @@
 	      | -aos* \
 	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
 	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
-	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \
+	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
+	      | -openbsd* | -solidbsd* \
 	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \
 	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
 	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
 	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
 	      | -chorusos* | -chorusrdb* \
 	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
-	      | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \
+	      | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
+	      | -uxpv* | -beos* | -mpeix* | -udk* \
 	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \
 	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \
 	      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
 	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
 	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
 	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
-	      | -skyos* | -haiku*)
+	      | -skyos* | -haiku* | -rdos* | -toppers*)
 	# Remember, each alternative MUST END IN *, to match a version number.
 		;;
 	-qnx*)
@@ -1340,6 +1366,9 @@
 # system, and we'll never get to this point.
 
 case $basic_machine in
+        spu-*)
+		os=-elf
+		;;
 	*-acorn)
 		os=-riscix1.2
 		;;
@@ -1349,9 +1378,9 @@
 	arm*-semi)
 		os=-aout
 		;;
-    c4x-* | tic4x-*)
-        os=-coff
-        ;;
+        c4x-* | tic4x-*)
+        	os=-coff
+		;;
 	# This must come before the *-dec entry.
 	pdp10-*)
 		os=-tops20
--- grass-6.2.3.orig/debian/NEWS
+++ grass-6.2.3/debian/NEWS
@@ -0,0 +1,41 @@
+grass (5.7.0+6.0.0beta2-1) unstable; urgency=high
+
+  How to migrate to the new GRASS version
+  
+  GRASS users may ask: how to continue to work with my existing locations
+  in the new version... here some answers:
+  
+  Raster data
+  
+    Nothing to do. The raster commands behave (almost) the same.
+
+  Sites data
+
+    All sites data (related s.* commands) are now part of the vector
+    engine and no longer stored in an own format.
+
+    Conversion of old sites files to new GRASS 2D/3D vector point maps:
+      
+      * v.in.sites (for single old sites map)
+      * v.in.sites.all (for all old sites maps in current mapset)
+  
+  Vector data
+  
+    The vector engine has been completely rewritten. All vector maps have
+    to be converted
+    
+    Conversion of old vector maps to new GRASS 2D/3D vector maps:
+      
+      * v.convert (for single old vector map)
+      * v.convert.all (for all old vector maps in current mapset)
+
+    Note that g.list oldvect list the old vector maps which g.list vect
+    lists the new vector maps.
+    
+    The module v.out.ogr and v.out.ascii can be used to export from new
+    GRASS to old GRASS versions. 
+  
+  This information is from:
+  http://grass.gdf-hannover.de/twiki/bin/view/GRASS/GrassSixTutorialGettingStarted
+
+ -- Steve Halasz <debian@adkgis.org>  Fri,  4 Feb 2005 15:13:26 -0500
--- grass-6.2.3.orig/debian/TODO
+++ grass-6.2.3/debian/TODO
@@ -0,0 +1,6 @@
+Maintainers TODO list
+---------------------
+
+The grass 'etc' directory contains a mixed arch/non-arch depending mess of files. They should
+be automatically classified in the install target and moved to /var/lib/grass or /usr/lib/grass, 
+leaving symlinks to do not break things.
--- grass-6.2.3.orig/debian/control
+++ grass-6.2.3/debian/control
@@ -0,0 +1,60 @@
+Source: grass
+Section: science
+Priority: optional
+Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
+Uploaders: Francesco Paolo Lovergine <frankie@debian.org>, Steve Halasz <debian@adkgis.org>
+Build-depends: flex, bison, libreadline5-dev | libreadline-dev, libncurses5-dev, lesstif2-dev, debhelper (>= 5), dpatch, 
+ libtiff4-dev, tcl-dev (>= 8.4) | tcl8.4-dev, tk-dev (>= 8.4) | tk8.4-dev, libfftw3-dev|fftw3-dev, libxmu-dev, libglu1-mesa-dev | libglu1-xorg-dev, 
+ libfreetype6-dev, autoconf2.13, autotools-dev, libgdal1-dev (>=1.4.0) | libgdal1-1.3.2-dev, proj (>= 4.4.7), libjpeg62-dev, 
+ libpng12-dev, libpq-dev, unixodbc-dev, doxygen, fakeroot, libmysqlclient15-dev, graphviz, libsqlite3-dev 
+Standards-Version: 3.7.3
+Homepage: http://grass.itc.it/
+
+Package: grass
+Section: science
+Architecture: any
+Depends: ${shlibs:Depends}, xterm | x-terminal-emulator
+Provides: libgrass
+Conflicts: libgrass
+Replaces: libgrass
+Suggests: grass-doc, gdal-bin, e00compr, avce00, gpstrans, gnuplot
+Description: Geographic Resources Analysis Support System
+ Commonly referred to as GRASS, this is a Geographic Information
+ System (GIS) used for geospatial data management and analysis,
+ image processing, graphics/map production, spatial modeling, and
+ visualization. GRASS is currently used in academic and commercial
+ settings around the world, as well as by many government agencies
+ and environmental consulting companies.
+
+Package: grass-doc
+Section: science
+Architecture: all
+Description: Geographic Resources Analysis Support System documentation
+ Commonly referred to as GRASS, this is a Geographic Information
+ System (GIS) used for geospatial data management and analysis,
+ image processing, graphics/map production, spatial modeling, and
+ visualization. GRASS is currently used in academic and commercial
+ settings around the world, as well as by many government agencies
+ and environmental consulting companies.
+ .
+ This package contains HTML documentation for the GRASS system.
+
+Package: grass-dev
+Section: devel
+Architecture: any
+Depends: ${shlibs:Depends}, grass (= ${binary:Version})
+Provides: libgrass-dev
+Conflicts: libgrass-dev
+Replaces: libgrass-dev
+Suggests: pkg-config
+Description: GRASS GIS development files
+ Commonly referred to as GRASS, this is a Geographic Information
+ System (GIS) used for geospatial data management and analysis,
+ image processing, graphics/map production, spatial modeling, and
+ visualization. GRASS is currently used in academic and commercial
+ settings around the world, as well as by many government agencies
+ and environmental consulting companies.
+ .
+ This package contains the header files for developing with GRASS.
+ Install this package if you wish to develop software that manipulates
+ GRASS data sets.
--- grass-6.2.3.orig/debian/grass-doc.dirs
+++ grass-6.2.3/debian/grass-doc.dirs
@@ -0,0 +1,4 @@
+usr/share/doc/grass-doc
+usr/share/doc/grass-doc/programming-manual
+usr/share/doc/grass-doc/programming-manual/html
+usr/share/man
--- grass-6.2.3.orig/debian/rules
+++ grass-6.2.3/debian/rules
@@ -0,0 +1,213 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+CFLAGS=-Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+	STRIP = 
+else
+	STRIP = strip
+endif
+
+#
+# This is used to test about the use of default tcl-dev, just
+# useful for backports. To be removed after Lenny.
+#
+ifeq (0,$(shell test -d /usr/include/tcl; echo $$?))
+	TCLINC = /usr/include/tcl
+else
+	TCLINC = /usr/include/tcl8.4
+endif
+
+include /usr/share/dpatch/dpatch.make
+
+config-stamp: patch
+	dh_testdir
+	# Add here commands to configure the package.
+	CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
+                    --prefix=/usr/lib \
+                    --sysconfdir=/etc \
+                    --sharedstatedir=/var \
+                    --enable-socket \
+                    --enable-shared \
+                    --with-postgres \
+                    --with-mysql \
+                    --with-cxx \
+                    --with-x \
+                    --with-gdal \
+                    --with-freetype \
+                    --with-motif \
+                    --with-readline \
+                    --with-nls \
+                    --with-odbc \
+		    --with-sqlite \
+		    --enable-largefile \
+                    --with-freetype-includes=/usr/include/freetype2 \
+                    --with-tcltk-includes=$(TCLINC) \
+                    --with-postgres-includes=$(shell pg_config --includedir) \
+                    --with-mysql-includes=$(shell mysql_config --include|sed -e 's/-I//') \
+		    --with-proj-share=/usr/share/proj
+
+	touch config-stamp
+
+# This target generates arch-dep stuff, unfortunately most doc requires working bins to 
+# be properly generated...
+build: build-stamp
+build-stamp:  config-stamp
+	dh_testdir
+
+	$(MAKE) 
+	chmod 755 debian/fixpaths.sh debian/fixscripts.sh
+
+	touch build-stamp
+
+# This target generates truly arch-indep stuff
+build-indep: build-indep-stamp
+build-indep-stamp: config-stamp
+	dh_testdir
+
+	$(MAKE) htmldocs
+
+	touch build-indep-stamp
+
+clean: clean-patched unpatch
+clean-patched:
+	dh_testdir
+	dh_testroot
+
+	# Add here commands to clean up after the build process.
+	[ ! -f $(CURDIR)/include/Make/Platform.make ] || $(MAKE) distclean
+
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+	dh_clean build-stamp config-stamp build-indep-stamp
+
+	rm -f lib/proj/nad2bin
+	rm -f tools/timer/main.o
+	rm -f raster/r.le/r.le.setup/polytocell/*.o
+	rm -f raster/r.terraflow/IOStream/lib/src/libiostream.a
+	rm -f debian/grass62.1
+	rm -f error.log
+	# clean doxygen documentation (programming man)
+	rm -rf doxygenhtml lib/vector/html lib/db/html lib/gis/html \
+		lib/vector/latex lib/db/latex lib/gis/latex \
+		lib/g3d/html \
+		lib/ogsf/html \
+		lib/proj/html \
+		lib/gmath/html \
+		lib/segment/html \
+		lib/vector/dglib/html \
+		rfc/html \
+		swig/html \
+		lib/g3d/latex \
+		lib/ogsf/latex \
+		lib/proj/latex \
+		lib/gmath/latex \
+		lib/segment/latex \
+		lib/vector/dglib/latex \
+		rfc/latex \
+		swig/latex
+
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# install grass core into debian/tmp
+	$(MAKE) $(STRIP)
+	$(MAKE) install INST_DIR=$(CURDIR)/debian/tmp/usr/lib/grass \
+		PREFIX=$(CURDIR)/debian/tmp/usr/lib/grass \
+		BINDIR=$(CURDIR)/debian/tmp/usr/bin
+
+	# fix all the braindead scripts
+	debian/fixscripts.sh
+
+	# fix links
+	debian/fixpaths.sh $(CURDIR)/debian/tmp debian/tmp
+	
+	# delete extra license files
+	rm -f debian/tmp/usr/lib/grass/bwidget/LICENSE.txt
+    
+	# change section from 1 to .1grass 
+	mv debian/tmp/usr/lib/grass/man/man1/grass6.1 debian/grass62.1
+	for m in debian/tmp/usr/lib/grass/man/man1/*.1; do n=`basename $$m .1`; mv $$m debian/tmp/usr/lib/grass/man/man1/$$n.1grass; done
+	for m in debian/tmp/usr/lib/grass/man/man1/*.1grass; do sed -i -e 's/^.TH \(.*\) 1/.TH \1 1grass/' $$m; done
+
+	# install module makefile	
+	install -m 644 include/Make/Module.make debian/grass-dev/usr/lib/grass/include/Make/Module.make
+
+	# install pkg-config file
+	install -m 644 grass.pc debian/grass-dev/usr/share/pkgconfig/grass.pc
+
+	# install ld.so file
+	install -m 644 debian/grass.conf debian/grass/etc/ld.so.conf.d/grass.conf
+
+install-indep: build-indep
+	dh_testdir -i
+	dh_testroot -i
+	install -m 644  -d debian/tmp
+	install -m 644  -d debian/tmp/programming-manual/vector/html \
+			   debian/tmp/programming-manual/db/html \
+			   debian/tmp/programming-manual/gis/html
+			   
+	install -m 644 lib/vector/html/* debian/tmp/programming-manual/vector/html
+	install -m 644 lib/db/html/* debian/tmp/programming-manual/db/html
+	install -m 644 lib/gis/html/* debian/tmp/programming-manual/gis/html
+
+# Build architecture-independent files here.
+binary-indep: install install-indep 
+	dh_testdir -i
+	dh_testroot -i
+	dh_installchangelogs -i CHANGES
+	dh_installdocs -i
+	dh_install --sourcedir=debian/tmp -i
+	dh_link -i
+	dh_strip -i
+	dh_compress -i
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+# Build architecture-dependent files here.
+binary-arch: install
+	dh_testdir -a
+	dh_testroot  -a
+	dh_installchangelogs -a CHANGES
+	dh_installdocs  -a
+	dh_installexamples  -a
+	dh_install --sourcedir=debian/tmp -a
+	dh_installman -pgrass debian/grass62.1 -a
+	dh_link -a
+	dh_strip -a
+	dh_compress -a
+	dh_fixperms -a
+	dh_makeshlibs -a -a
+	dh_installdeb -a
+	dh_shlibdeps -a -l$(CURDIR)/debian/grass/usr/lib/grass/lib
+	dh_gencontrol -a
+	dh_md5sums -a
+	dh_builddeb -a
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- grass-6.2.3.orig/debian/watch
+++ grass-6.2.3/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://grass.itc.it/grass62/source/grass-([\d\.]*).tar.gz debian uupdate
--- grass-6.2.3.orig/debian/fixpaths.sh
+++ grass-6.2.3/debian/fixpaths.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# this script try to locate all the GRASS script than got hardcoded
+# the building path $HOME/... (given as an argument) and to replace it
+# with the default /usr/lib/grass5
+
+ZOTPATH="$1"
+TMPPATH="$2"
+echo Mumble mumble... trying to zot:
+echo "    $ZOTPATH"
+echo " in $TMPPATH"
+
+for i in `grep -r $ZOTPATH $TMPPATH | cut -d : -f 1 | sort -u` ; do
+    echo -n "Grr. Zotting $i ... "
+    cp $i $i.old
+    sed -e s,$ZOTPATH,,g $i.old >$i
+    rm -f $i.old
+    echo done
+done
--- grass-6.2.3.orig/debian/changelog
+++ grass-6.2.3/debian/changelog
@@ -0,0 +1,441 @@
+grass (6.2.3-2.1~bpo40+1) etch-backports; urgency=low
+
+  * Backported to etch.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Fri, 21 Nov 2008 11:44:08 +0100
+
+grass (6.2.3-2.1) unstable; urgency=low
+
+  * NMU during credativ BSP 2008
+  * using patch from Moritz Muehlenhoff <jmm@inutil.org> to fix
+    FTBFS with GCC 4.3: missing #includes
+    (closes: #461673)
+
+ -- Noèl Köthe <noel@debian.org>  Sun, 06 Apr 2008 17:08:21 +0200
+
+grass (6.2.3-2) unstable; urgency=low
+
+  * Added libfftw3-dev build-dep to reflect current library name.
+    (closes: #458232)
+  * Upstream already fixed v.db.update as suggested.
+    (closes: #434897)
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Thu, 31 Jan 2008 17:02:23 +0100
+
+grass (6.2.3-1) unstable; urgency=low
+
+  * New upstream release.
+    (closes: #455853)
+  * Added the new Homepage field to debian/control.
+  * Updated obsolete ${Source-Version} to ${binary:Version}.
+  * Fixed lintian error: : debian-rules-ignores-make-clean-error
+  * Moved to new Tcl/Tk policy, introducing default -dev packages build-dependencies as alternative
+    and still depending on versioned ones for backports. For backports the
+    Tcl/Tk includes path is found at build time in debian/rules.
+  * Now using mysql_config to get MySQL includes path.
+  * Policy bumped to 3.7.3
+  * Added private library path at dh_shlibdeps call.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Thu, 13 Dec 2007 12:49:40 +0100
+
+grass (6.2.2-2) unstable; urgency=medium
+
+  * Moved priority to optional. Thanks Ganneff.
+  * Removed --with-glw in debian/rules because GLw is not used.
+    (closes: #439506)
+  * Obsolete postgresql-dev build-dep has been removed.
+    (closes: #429969)
+  * Fixed handling of nostrip option in DEB_BUILD_OPTIONS
+    (closes: #437105)
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Mon, 10 Sep 2007 13:06:08 +0200
+
+grass (6.2.2-1) unstable; urgency=low
+
+  * New upstream release.
+  * Patchset updated.
+  * Added --enable-largefiles for LFS support.
+  * Added sqlite3 support.
+  * Moved to debhelper version 5 compatibility.
+  * Set explicitly proj data dir at configuration time.
+  * Removed too strict versioning in build-dep from gdal (useful for backports).
+  * Fixed priority in debian/control.
+  * Merge from 6.2.1-4:
+  	- New patch xterm.dpatch
+        - Added /etc/ld.so.conf.d/grass.conf file instead of adding lib path
+          in-line into /etc/ld.so.conf.  
+        - Removed obsolete postgresql-dev build-dep 
+        - Added a new grass.dirs file.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Sat, 26 May 2007 19:21:00 +0200
+
+grass (6.2.1-3) unstable; urgency=low
+
+  * Sigh, fixed www-browser: s/elif/else/  
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Wed, 11 Apr 2007 10:14:32 +0200
+
+grass (6.2.1-2) unstable; urgency=low
+
+  * Fixed watch and grass.links files for grass62
+  * Install grass.pc file for pkg-config
+  * New patches:
+       www-browser -- Use www-browser as default browser
+       pager -- User pager as default text pager
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Mon,  2 Apr 2007 23:42:03 +0200
+
+grass (6.2.1-1) experimental; urgency=low
+
+  * New upstream release
+  * Added a new versioned build-dep on libgdal1-dev for 1.4.0.
+    Old build-dep is retained for etch compatibility.
+  * Removed obsolete libmysqlclient14-dev build-dep.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Tue,  6 Mar 2007 10:13:25 +0100
+
+grass (6.2.0-1) experimental; urgency=low
+
+  * New upstream release.
+    (closes: #287589)
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Wed,  8 Nov 2006 22:36:45 +0100
+
+grass (6.2~beta1-1) UNRELEASED; urgency=low
+
+  * Development branch 6.2, branching from 6.1
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Mon, 28 Aug 2006 22:10:06 +0200
+
+grass (6.1.0-1) UNRELEASED; urgency=low
+
+  * Starting development tree for 6.1 version.
+  * Removed patches merged upstream: nviz and fftw3.
+  * Revised patches:
+        htmlgen-fakeroot.dpatch
+        xterm-fix.dpatch
+  * Merged changes from 6.0.2-[4..6] branch.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Tue, 22 Aug 2006 00:10:11 +0200
+
+grass (6.0.2-4) unstable; urgency=low
+
+  * Moved to libgdal1-1.3.2-dev build-dep, now available.
+  * Removed libgrass bin-package and introduced required conflicts/provides/replaces items to manage upgrades.
+    Removed all related files in debian/
+    (closes: #361962)
+  * Removed another extra license file.
+  * Watch file revised.
+  * Moved libgrass-dev to grass-dev package and changed section.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Tue,  8 Aug 2006 18:24:19 +0200
+
+grass (6.0.2-3) unstable; urgency=low
+
+  * Change build-dependency on xlibmesa-gl-dev to libgl1-mesa-swx11-dev;
+    fixes FTBFS, patch from Andreas Jochens. Ack NMU.
+    (Closes: #373569)
+  * Policy bumped to 3.7.2, no changes.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Sat, 24 Jun 2006 21:50:19 +0200
+
+grass (6.0.2-2) unstable; urgency=low
+
+  [ Francesco Paolo Lovergine ]
+
+  * Sigh, FFTW3 patch revised to integrate three more changes.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Mon, 27 Mar 2006 23:45:58 +0200
+
+grass (6.0.2-1) unstable; urgency=low
+
+  [ Francesco Paolo Lovergine ]
+
+  * New upstream release
+    (closes: #328519)
+  * Removed configure.in.dpatch, merged upstream.
+  * Now generates programming manual by doxygen and dot.
+    Added graphviz build-dep in debian/control.
+    Resulting files belongs to grass-doc.
+  * Rules file revised to clean doxygen doc properly.
+  * Targets revised in rules to adopt a more clean schema of dependencies.
+  * Added a group of suggested packages (Thanks Hamish).
+  * New patches added:
+  	fftw3.dpatch: supports FFTW3
+                (cfr.  http://grass.itc.it/pipermail/grass-commit/2006-March/021112.html-021114.html)
+        nviz.dpatch: solves old NVIZ issue with multi-threaded Tcl 8.4.
+                (cfr. http://grass.itc.it/pipermail/grass-commit/2006-March/021104.html)
+  * Moved to tcl8.4-dev and tk8.4 build-deps. Changed tcl path in debian/rules.
+    (closes: #206844)
+  * Moved to fftw3-dev build-dep
+
+  [ Paul Wise ]
+  * Suggest some packages useful for v.in.e00, v.in.garmin and i.spectral
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Fri, 24 Mar 2006 14:12:32 +0100
+
+grass (6.0.1-4) unstable; urgency=low
+
+  [ Steve Halasz ]
+  
+  * Make libgrass depend on current version of grass.
+    libgrass requires files in the main package and doesn't
+    yet stand alone. 
+
+ -- Steve Halasz <debian@adkgis.org>  Thu, 23 Feb 2006 11:09:59 -0500
+
+grass (6.0.1-3) unstable; urgency=low
+
+  [ Francesco Paolo Lovergine ]
+
+  * Added NVIZ html help pages to -doc package, previously missing. Thanks Stephan Holl.
+  * Re-introduced missing build-indep target in rules for the -doc package.
+    This is still sub-optimal...
+  * Added missing libxmu-dev
+    (closes: #350010, #352451)
+  * Added Module.make among -dev files.
+    (closes: #315073)
+  * Added configure.in.dpatch for FTBS on GNU/FreeBSD. Merged correction for configure(1333).
+    (closes: #336498)
+
+  [ Paul Wise ]
+  * Fix homepages in package descriptions
+  * Add a watch file
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Fri, 17 Feb 2006 13:03:03 +0100
+
+grass (6.0.1-2) unstable; urgency=low
+
+  [ Paul Wise ]
+
+  * Add homepage to package descriptions
+
+  [ Francesco Paolo Lovergine ]
+
+  * Transitioned to libmysqlclient15-dev in control (but retained old lib-dev pkg for backports )
+    (closes: #343817)
+  * Transitioned to libgdal1-1.3.1 for new gdal packaging scheme due to C++ ABI/API instability.
+  * Typo with a exceeding ` at configure(1333) corrected (upstream cvs is ok).
+    Issue definitively depends on shell version.
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Sun, 22 Jan 2006 23:28:18 +0100
+
+grass (6.0.1-1) unstable; urgency=low
+
+  [ Steve Halasz ]
+
+  * New upstream release
+    (closes: #314059, #314063,#317470,#312583)
+  * Bump Standards-Version to 3.6.2 without any changes. There
+      are architecture independent files in /usr/lib/grass. Still
+      need to fix that sometime.
+  * C++ ABI transition. No explicit changes made.
+  * debian/control
+    - postgresql-dev -> libpq-dev
+    - xlibmesa-glu-dev -> libglu1-xorg-dev
+    - build-dep on libmysqlclient12-dev
+  * debian/rules
+    - use pg_config to locate includes
+    - --with-mysql
+
+  [ Francesco Paolo Lovergine ]
+
+  * Added versioned dependency for grass vs libgrass and grass-dev
+    (closes: #306497)
+  * Set libpq-dev | postgresql-dev build-dep to retain sarge compatibility.
+    Changed a bit rules file to manage pg_config by $shell feature.
+    (closes: #326044)
+  * Set libglu1-xorg-dev | xlibmesa-glu-dev build-dep to retain sarge compatibility
+  * Ack mysql 4.0+ support
+    (closes: #317497)
+  * Cleaned commented dhelper methods and other inappropriate
+    comments in rules
+  * libreadline-dev dependency updated
+    (closes: #326350)
+  * Changed changelog release number because of 6.0.1 release on 8/22.
+  * Added upstream man pages to grass-doc, in section 1grass. Removed Steve's
+    manual and used upstream one for grass main script.
+  * Added xterm-fix.dpatch to use x-terminal-emulator instead of xterm in all
+    scripts. Changed dependency in xterm | x-terminal-emulator as consequence
+    (closes: #315186)
+  * Fixed fixscripts.sh
+  * Removed a --without-cxx in rules which prevented r.terraflow build
+
+ -- Francesco Paolo Lovergine <frankie@debian.org>  Wed, 14 Sep 2005 16:16:57 +0200
+
+grass (6.0.0+6.0.1RC1-0.dgis.unstable.1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Steve Halasz <debian@adkgis.org>  Wed,  3 Aug 2005 14:28:24 -0400
+
+grass (6.0.0-1) unstable; urgency=low
+
+  * New upstream release
+  * priority optional -> extra
+
+ -- Steve Halasz <debian@adkgis.org>  Thu, 10 Mar 2005 10:01:07 -0500
+
+grass (5.7.0+6.0.0beta2-2) unstable; urgency=high
+
+  * Apply patch from cvs to prevent accidental deletion of files
+      in the present working directory (Closes: #297731)
+  * Use fakeroot while generating html docs.
+      This fixes a permission problem that prevented
+      most docs and man pages from being created when
+      building with pbuilder. (Closes: #281742, #229086, #242436)
+  * build-depend on fakeroot
+  * make libgrass depend on grass
+  * Remove fog@debian.org from Uploaders. Thanks Federico!
+  * silence erroneous lintian warnings:
+    - postrm-unsafe-ldconfig
+    - maintainer-script-lacks-debhelper-token
+    - postinst-has-useless-call-to-ldconfig
+    - postrm-has-useless-call-to-ldconfig
+
+ -- Steve Halasz <debian@adkgis.org>  Mon, 21 Feb 2005 20:49:22 -0500
+
+grass (5.7.0+6.0.0beta2-1) unstable; urgency=high
+
+  * New upstream release (Closes: #264566)
+    - Safe tmpdir creation (Closes: #287651)
+    - tcltkgrass replaced by d.m (Closes: #282567)
+    - r.in.gdal segfault fixed (Closes: #234275)
+    - r.in.bin segfault fixed (Closes: #259655)
+    - r.lags.1grass.gz: "name" section too long (removed) (Closes: #261726)
+    - raster.html: non explained commands (removed) (Closes: #287590)
+    - i.rectify.html: links to i.vpoints.html work (Closes: #287764)
+    - i.points.html: imagery.ps link fixed (Closes: #287763:)
+  * Help button doc path fixed (Closes: #287591)
+  * Change libgrass0 -> libgrass
+
+ -- Steve Halasz <debian@adkgis.org>  Fri,  4 Feb 2005 15:13:26 -0500
+
+grass (5.7.0+6.0.0beta1+cvs20050203-0.dgis.unstable.1) unstable; urgency=low
+
+  * New upstream version from CVS
+  * Safe tmpdir creation (Closes: #287651)
+  * Build without r.terraflow until it gets tmpdir fixes
+  * Change libgrass5.7 -> libgrass6.0.0beta1
+  * Change maintainer 
+      pkg-grass-general -> pkg-grass-devel@lists.alioth.debian.org
+
+ -- Steve Halasz <debian@adkgis.org>  Thu,  3 Feb 2005 09:28:43 -0500
+
+grass (5.7.0+6.0.0beta1-0.dgis.unstable.2) unstable; urgency=low
+
+  * updates to grass60 man page - grass57 -> grass60
+  * link usr/lib/grass/docs/html to usr/share/doc/grass-doc/html
+  * patch to look for epsg codes in /usr/share/proj/epsg
+  * put man pages in grass-doc
+  * debian/control
+    - depend on xterm
+    - remove dependency on csh
+
+ -- Steve Halasz <debian@adkgis.org>  Wed, 19 Jan 2005 09:06:51 -0500
+
+grass (5.7.0+6.0.0beta1-0.dgis.unstable.1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Steve Halasz <debian@adkgis.org>  Wed, 12 Jan 2005 16:46:24 -0500
+
+grass (5.7.0-6.dgis.unstable.1) unstable; urgency=low
+
+  * link usr/share/man/man1/grass.1.gz to usr/share/man/man1/grass57.1.gz
+  * debian/control
+    - edits to description courtesy of hmitaso@unity.ncsu.edu
+    - don't suggest proj. it is already required via ${shlibs:Depends}
+    - put grass-doc in 'science' section rather than 'Science'
+
+ -- Steve Halasz <debian@adkgis.org>  Mon, 27 Dec 2004 18:16:41 -0500
+
+grass (5.7.0-6) unstable; urgency=low
+
+  * link /usr/bin/grass to /usr/bin/grass57
+  * debian/control
+    - edits to description
+    - create grass-doc package
+    - don't have libgrass depend on grass
+  * debian/rules
+    - install to /usr/lib/grass instead of /usr/lib/grass57
+    - run dh_shlibdeps
+
+ -- Steve Halasz <debian@adkgis.org>  Wed,  1 Dec 2004 18:39:04 -0500
+
+grass (5.7.0-5) unstable; urgency=low
+
+  * debian/control
+    - change package name back to 'grass'
+    - convert to team maintenance with pkg-grass-general@lists.alioth.debian.org
+      as maintainer
+    - add build-deps:
+      + dpatch
+      + libjpeg62-dev
+      + libpng12-dev
+      + lesstif2-dev
+    - remove build-deps:
+      + extra second build-dep on postgresql-dev
+      + libgd2-xpm-dev
+      + postgresql-client
+  * debian/rules:
+    - clean raster/r.terraflow/IOStream/lib/src/libiostream.a
+    - add --with-odbc
+    - add --with-cxx
+    - add --with-glw
+    - add --with-motif
+    - remove --with-dbm and --without-dbm
+    - remove --with-blas and --with-lapack
+
+ -- Steve Halasz <debian@adkgis.org>  Mon, 29 Nov 2004 18:17:46 -0500
+
+grass5.7 (5.7.0-4) unstable; urgency=low
+
+  * Add grass57 man page
+  * Make etc/water/seg executable
+
+ -- Steve Halasz <debian@adkgis.org>  Tue, 12 Oct 2004 11:18:55 -0400
+
+grass5.7 (5.7.0-3) unstable; urgency=low
+
+  * Split out separate libgrass5.7 and libgrass5.7-dev packages
+  * Add grass libs dir to ld.so.conf. Make sure it is removed too.
+
+ -- Steve Halasz <debian@adkgis.org>  Wed, 22 Sep 2004 00:36:12 -0400
+
+grass5.7 (5.7.0-2) unstable; urgency=low
+
+  * silence executable-not-elf-or-script lintian warning by making most tcl 
+    scripts not executable
+  * silence interpreter-not-absolute lintian warning by inserting absolute path in 
+    shebang
+  * make tcltkgrass/main/tksys.tcl executable
+
+ -- Steve Halasz <debian@adkgis.org>  Fri,  3 Sep 2004 11:38:18 -0400
+
+grass5.7 (5.7.0-1) unstable; urgency=low
+
+  * install files to locations prescribed by debian policy
+  * fix paths hardcoded during build using script from 5.0.3 package
+  * change package name to enable concurrent install with stable grass package
+  * patch configure.in and d.text.freetype to deal with freetype.h weirdness
+  * build as non-native package
+  * clean binary files not removed by 'make clean'
+
+ -- Steve Halasz <debian@adkgis.org>  Wed,  1 Sep 2004 10:39:27 -0400
+
+grass (57-2) unstable; urgency=low
+
+  * fixes for rules file by Giuseppe Dia <giusedia@libero.it>
+
+  * fixes for Debian built. Joint work with Paolo Brunetti <brunetti@itc.it> 
+    and Donato Minati <minati@itc.it>
+
+ -- Markus Neteler <neteler@itc.it>  Tue, 11 Nov 2003 17:59:04 +0100 
+
+grass (57-1) unstable; urgency=low
+
+  * Initial Release. Control file based on GRASS 5.0.2 deb from 
+    Giuseppe Dia <giusedia@libero.it>
+
+ -- Markus Neteler <neteler@itc.it>  Mon, 10 Nov 2003 17:59:04 +0100
--- grass-6.2.3.orig/debian/grass.postinst
+++ grass-6.2.3/debian/grass.postinst
@@ -0,0 +1,43 @@
+#!/bin/sh
+# Make sure grass libraries are picked up by ldconfig
+# Lifted from xfree86 package's shell-lib.sh script
+
+set -e
+
+# Removes obsolete path in the main ld.so configuration file.
+# This should be removed post-lenny.
+dir="/usr/lib/grass/lib"
+ldsoconf="/etc/ld.so.conf"
+# is the line present?
+if fgrep -qsx "$dir" "$ldsoconf"; then
+    # rewrite the file (very carefully)
+    set +e
+    fgrep -svx "$dir" "$ldsoconf" > "$ldsoconf.dpkg-tmp"
+    fgrep_status=$?
+    set -e
+    case $fgrep_status in
+      0|1) ;; # we don't actually care if any lines matched or not
+      *) echo "error reading \"$ldsoconf\"; fgrep exited with status" \
+        "$fgrep_status" && exit 1 ;;
+    esac
+    set +e
+    cmp -s "$ldsoconf.dpkg-tmp" "$ldsoconf"
+    cmp_status=$?
+    set -e
+    case $cmp_status in
+      0) rm "$ldsoconf.dpkg-tmp" ;; # files are identical
+      1) mv "$ldsoconf.dpkg-tmp" "$ldsoconf" ;; # files differ
+      *) echo "error comparing \"$ldsoconf.dpkg-tmp\" to \"$ldsoconf\"; cmp" \
+        "exited with status $cmp_status" && exit 2 ;;
+    esac
+fi
+
+if [ "$1" = "configure" ]; then
+  ldconfig
+fi
+
+#DEBHELPER#
+
+exit 0
+
+
--- grass-6.2.3.orig/debian/grass.conf
+++ grass-6.2.3/debian/grass.conf
@@ -0,0 +1 @@
+/usr/lib/grass/lib
--- grass-6.2.3.orig/debian/grass.dirs
+++ grass-6.2.3/debian/grass.dirs
@@ -0,0 +1,6 @@
+etc/ld.so.conf.d
+usr/lib/grass
+/usr/bin
+/usr/lib/grass
+/usr/share/doc/grass
+/usr/share/man
--- grass-6.2.3.orig/debian/compat
+++ grass-6.2.3/debian/compat
@@ -0,0 +1 @@
+5
--- grass-6.2.3.orig/debian/grass-doc.links
+++ grass-6.2.3/debian/grass-doc.links
@@ -0,0 +1 @@
+usr/share/doc/grass-doc/html usr/lib/grass/docs/html
--- grass-6.2.3.orig/debian/grass-doc.install
+++ grass-6.2.3/debian/grass-doc.install
@@ -0,0 +1,5 @@
+usr/lib/grass/docs/html usr/share/doc/grass-doc
+usr/lib/grass/man/man1 usr/share/man
+programming-manual/db usr/share/doc/grass-doc/programming-manual/html
+programming-manual/gis usr/share/doc/grass-doc/programming-manual/html
+programming-manual/vector usr/share/doc/grass-doc/programming-manual/html
--- grass-6.2.3.orig/debian/grass.install
+++ grass-6.2.3/debian/grass.install
@@ -0,0 +1,8 @@
+usr/bin/grass62
+usr/lib/grass/bin
+usr/lib/grass/bwidget
+usr/lib/grass/driver
+usr/lib/grass/etc
+usr/lib/grass/fonts
+usr/lib/grass/scripts
+usr/lib/grass/lib
--- grass-6.2.3.orig/debian/fixscripts.sh
+++ grass-6.2.3/debian/fixscripts.sh
@@ -0,0 +1,102 @@
+#!/bin/sh
+
+# this script tries to locate all the GRASS scripts than have something
+# that makes lintian complain and fix them.
+
+CURDIR=$(pwd)
+
+# make these scripts executable
+for x in etc/water/seg
+do
+    chmod +x $CURDIR/debian/tmp/usr/lib/grass/$x
+done
+
+# silence bogus lintian complaint about interpreter-not-absolute
+for x in script_get_line \
+    script_play \
+    script_tools \
+    script_file_tools \
+    nviz2.2_script
+do
+  f=$CURDIR/debian/tmp/usr/lib/grass/etc/nviz2.2/scripts/$x
+  sed 's.!nviz.!/usr/lib/grass/bin/nviz.' $f >foo && cat foo >$f
+done
+
+for x in panel_label.tcl \
+    panel_scale.tcl
+do
+  f=$CURDIR/debian/tmp/usr/lib/grass/etc/nviz2.2/scripts/$x
+  sed 's%!../glnviz.new/nvwish%!/usr/lib/grass/etc/nviz2.2/glnviz/nvwish%' $f >foo && cat foo >$f
+done
+rm foo
+
+# silence lintian warning executable-not-elf-or-script
+# add shebang to scripts that need it
+for x in etc/copy
+do
+  f=$CURDIR/debian/tmp/usr/lib/grass/$x
+  cp $f foo; echo "#!/bin/sh" >$f; cat foo >>$f
+done
+rm foo
+
+# silence executable-not-elf-or-script lintian warning
+# most tcl scripts don't need to be executable
+for x in etc/nviz2.2/scripts/panel_kanimator.tcl \
+    etc/nviz2.2/scripts/panel_scale.tcl \
+    etc/nviz2.2/scripts/structlib.tcl \
+    etc/nviz2.2/scripts/panel_label.tcl \
+    etc/nviz2.2/scripts/attPopup.tcl \
+    etc/nviz2.2/scripts/attIsosurfPopup.tcl \
+    etc/nviz2.2/scripts/panel_pos.tcl \
+    etc/nviz2.2/scripts/panel_vol.tcl \
+    etc/nviz2.2/scripts/panelIndex \
+    etc/dm/labels.tcl \
+    etc/dm/cmd.tcl \
+    etc/dm/menu.tcl \
+    etc/nviz2.2/scripts/colorPopup.tcl \
+    etc/nviz2.2/scripts/multimapBrowser.tcl \
+    etc/nviz2.2/scripts/panel_animation.tcl \
+    etc/nviz2.2/scripts/script_support.tcl \
+    etc/nviz2.2/scripts/panel_vect.tcl \
+    etc/nviz2.2/scripts/panel_sdiff.tcl \
+    etc/nviz2.2/scripts/assoc.tcl \
+    etc/nviz2.2/scripts/unique.tcl \
+    etc/nviz2.2/scripts/panel_main.tcl \
+    etc/dm/grassabout.tcl \
+    etc/nviz2.2/scripts/position_procs.tcl \
+    etc/nviz2.2/scripts/panel_lights.tcl \
+    etc/dm/d.m.tcl \
+    etc/nviz2.2/scripts/panel_query.tcl \
+    etc/v.digit/cats.tcl \
+    etc/epsg_option.tcl \
+    etc/nviz2.2/scripts/panel_query_orig.tcl \
+    etc/nviz2.2/scripts/nviz_init.tcl \
+    etc/dm/vector.tcl \
+    etc/nviz2.2/scripts/cutplane_channels.tcl \
+    etc/gis_set.tcl \
+    etc/nviz2.2/scripts/panel_tst.tcl \
+    etc/nviz2.2/scripts/tclIndex \
+    etc/nviz2.2/scripts/send_support.tcl \
+    etc/nviz2.2/scripts/panel_surf.tcl \
+    etc/nviz2.2/scripts/widgets.tcl \
+    etc/dm/group.tcl \
+    etc/dm/tool.tcl \
+    etc/nviz2.2/scripts/panel_color.tcl \
+    etc/v.digit/toolbox.tcl \
+    etc/nviz2.2/scripts/extra_bindings.tcl \
+    etc/nviz2.2/scripts/panel_query_pg.tcl \
+    etc/dm/print.tcl \
+    etc/nviz2.2/scripts/panel_cutplane.tcl \
+    etc/nviz2.2/scripts/panel_site.tcl \
+    etc/nviz2.2/scripts/config.tcl \
+    etc/nviz2.2/scripts/filemapBrowser.tcl \
+    etc/dm/tree.tcl \
+    etc/nviz2.2/scripts/mapBrowser.tcl \
+    etc/nviz2.2/scripts/queue.tcl \
+    etc/dm/raster.tcl \
+    etc/v.digit/settings.tcl \
+    etc/nviz2.2/scripts/wirecolorPopup.tcl \
+    etc/nviz2.2/scripts/fileBrowser.tcl
+do
+    chmod -x $CURDIR/debian/tmp/usr/lib/grass/$x
+done
--- grass-6.2.3.orig/debian/grass.links
+++ grass-6.2.3/debian/grass.links
@@ -0,0 +1,2 @@
+usr/bin/grass62 usr/bin/grass
+usr/share/man/man1/grass62.1.gz usr/share/man/man1/grass.1.gz
--- grass-6.2.3.orig/debian/patches/htmlgen-fakeroot.dpatch
+++ grass-6.2.3/debian/patches/htmlgen-fakeroot.dpatch
@@ -0,0 +1,21 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## htmlgen-fakeroot.dpatch by  <debian@adkgis.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: use fakeroot to avoid weird stat/permission problem when
+## DP: building under pbuilder. This was preventing most man
+## DP: pages from being built.
+
+@DPATCH@
+diff -urNad grass-6.2.2~/include/Make/Html.make grass-6.2.2/include/Make/Html.make
+--- grass-6.2.2~/include/Make/Html.make	2007-04-11 15:29:16.000000000 +0200
++++ grass-6.2.2/include/Make/Html.make	2007-04-11 15:30:48.000000000 +0200
+@@ -92,7 +92,7 @@
+ 	GISBASE=$(GISBASE) \
+ 	PATH=$(GISBASE)/bin:$$PATH \
+ 	$(LD_LIBRARY_PATH_VAR)="$(GISBASE)/lib:$($(LD_LIBRARY_PATH_VAR))" \
+-	LC_ALL=C $(1) --html-description | grep -v '</body>\|</html>' > $(PGM).tmp.html ; true
++	LC_ALL=C fakeroot $(1) --html-description | grep -v '</body>\|</html>' > $(PGM).tmp.html ; true
+ 
+ # html rules for cmd commands
+ htmlcmd: htmlcmd1 htmlgen
--- grass-6.2.3.orig/debian/patches/xterm.dpatch
+++ grass-6.2.3/debian/patches/xterm.dpatch
@@ -0,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## xterm.dpatch by Francesco Paolo Lovergine <frankie@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+diff -urNad grass-6.2.1~/lib/init/grass-xterm-wrapper grass-6.2.1/lib/init/grass-xterm-wrapper
+--- grass-6.2.1~/lib/init/grass-xterm-wrapper	2006-08-31 15:59:08.000000000 +0200
++++ grass-6.2.1/lib/init/grass-xterm-wrapper	2007-05-17 18:30:48.000000000 +0200
+@@ -2,7 +2,7 @@
+ # script to wrap xterm 
+ 
+ if [ -z "$GRASS_XTERM" ] ; then
+-   GRASS_XTERM=xterm
++   GRASS_XTERM=x-terminal-emulator
+ fi
+ 
+ # run command
--- grass-6.2.3.orig/debian/patches/gcc4.3.dpatch
+++ grass-6.2.3/debian/patches/gcc4.3.dpatch
@@ -0,0 +1,18 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## Fix GCC 4.3 compatbility, jmm
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+diff -aur grass-6.2.3.orig/raster/r.terraflow/IOStream/include/ami_stream.h grass-6.2.3/raster/r.terraflow/IOStream/include/ami_stream.h
+--- grass-6.2.3.orig/raster/r.terraflow/IOStream/include/ami_stream.h	2004-11-09 14:29:58.000000000 +0100
++++ grass-6.2.3/raster/r.terraflow/IOStream/include/ami_stream.h	2008-03-21 01:03:36.000000000 +0100
+@@ -51,6 +51,7 @@
+ #include <fcntl.h>
+ #include <errno.h>
+ #include <unistd.h>
++#include <cstring>
+ 
+ #include <iostream>
+ using namespace std;
--- grass-6.2.3.orig/debian/patches/pager.dpatch
+++ grass-6.2.3/debian/patches/pager.dpatch
@@ -0,0 +1,25 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## pager.dpatch by Francesco Paolo Lovergine <frankie@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+@DPATCH@
+diff -urNad grass-6.2.2~/lib/init/init.sh grass-6.2.2/lib/init/init.sh
+--- grass-6.2.2~/lib/init/init.sh	2007-04-11 15:35:35.000000000 +0200
++++ grass-6.2.2/lib/init/init.sh	2007-04-11 15:37:48.000000000 +0200
+@@ -173,10 +173,12 @@
+ 
+ # Set some environment variables if they are not set
+ if [ ! "$GRASS_PAGER" ] ; then
+-    if [ -x /bin/more ] || [ -x /usr/bin/more ] ; then
+-        GRASS_PAGER=more
++    if [ -x /usr/bin/pager ] ; then
++     	GRASS_PAGER=pager
+     elif [ -x /bin/less ] || [ -x /usr/bin/less ] ; then
+         GRASS_PAGER=less
++    elif [ -x /bin/more ] || [ -x /usr/bin/more ] ; then
++        GRASS_PAGER=more
+     else
+         GRASS_PAGER=cat
+     fi
--- grass-6.2.3.orig/debian/patches/00list
+++ grass-6.2.3/debian/patches/00list
@@ -0,0 +1,5 @@
+htmlgen-fakeroot
+www-browser
+pager
+xterm
+gcc4.3
--- grass-6.2.3.orig/debian/patches/www-browser.dpatch
+++ grass-6.2.3/debian/patches/www-browser.dpatch
@@ -0,0 +1,69 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## www-browser.dpatch by Francesco Paolo Lovergine <frankie@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Use www-browser as HTML browser, the Debian way
+
+@DPATCH@
+diff -urNad grass-6.2.2~/lib/init/init.sh grass-6.2.2/lib/init/init.sh
+--- grass-6.2.2~/lib/init/init.sh	2007-04-11 15:31:19.000000000 +0200
++++ grass-6.2.2/lib/init/init.sh	2007-04-11 15:33:57.000000000 +0200
+@@ -228,53 +228,11 @@
+ CYGWIN=`uname | grep CYGWIN`
+ 
+ if [ ! "$GRASS_HTML_BROWSER" ] ; then
+-    for i in `echo "$PATH" | sed 's/^:/.:/
+-                                s/::/:.:/g
+-                                s/:$/:./
+-                                s/:/ /g'`
+-    do
+-        if [ -f "$i/htmlview" ] ; then  
+-            GRASS_HTML_BROWSER=htmlview  
+-            break  
+-        elif [ -f "$i/konqueror" ] ; then  
+-            GRASS_HTML_BROWSER=konqueror
+-            break
+-        elif [ -f "$i/mozilla" ] ; then
+-            GRASS_HTML_BROWSER=mozilla
+-            break
+-        elif [ -f "$i/mozilla-firefox" ] ; then
+-            GRASS_HTML_BROWSER=mozilla-firefox
+-            break
+-        elif [ -f "$i/opera" ] ; then
+-            GRASS_HTML_BROWSER=opera
+-            break
+-        elif [ -f "$i/netscape" ] ; then
+-            GRASS_HTML_BROWSER=netscape
+-            break
+-        elif [ "$HOSTTYPE" = "macintosh" -o "$HOSTTYPE" = "powermac" -o "$HOSTTYPE" = "powerpc" ] ; then
+-            GRASS_HTML_BROWSER=open
+-            break
+-        elif [ "$HOSTTYPE" = "arm" ] ; then
+-            GRASS_HTML_BROWSER=dillo
+-            break
+-        elif [ "$HOSTTYPE" = "arm" ] ; then
+-            GRASS_HTML_BROWSER=dillo2
+-            break
+-	elif [ "$CYGWIN" ] ; then
+-	    iexplore="$SYSTEMDRIVE/Program Files/Internet Explorer/iexplore.exe"
+-	    if [ -f "$iexplore" ] ; then
+-		GRASS_HTML_BROWSER=$iexplore
+-	    else
+-		GRASS_HTML_BROWSER="iexplore"
+-	    fi
+-	    break
+-        fi
+-    done
+-fi
+-if [ ! "$GRASS_HTML_BROWSER" ] ; then
+-    echo "Searching for web browser, but neither konqueror, nor mozilla, opera, netscape found."
+-    # so we set konqueror, though, to make lib/gis/parser.c happy:
+-    GRASS_HTML_BROWSER=konqueror
++  	if [ -x /usr/bin/x-www-browser ] ; then
++  		GRASS_HTML_BROWSER=x-www-browser
++	else 
++  		GRASS_HTML_BROWSER=true
++  	fi
+ fi
+ export GRASS_HTML_BROWSER
+ 
--- grass-6.2.3.orig/debian/grass.postrm
+++ grass-6.2.3/debian/grass.postrm
@@ -0,0 +1,14 @@
+#!/bin/sh
+# Make sure grass library dir is removed from ld.so.conf
+# Lifted from xfree86 package's shell-lib.sh script
+
+set -e
+
+if [ "$1" = "remove" ]; then
+  rm -f /etc/ld.so.conf.d/grass.conf
+  ldconfig
+fi
+
+#DEBHELPER#
+
+exit 0
--- grass-6.2.3.orig/debian/copyright
+++ grass-6.2.3/debian/copyright
@@ -0,0 +1,44 @@
+This package was debianized by Markus Neteler <neteler@itc.it> on
+Mon, 10 Nov 2003 17:59:04 +0100.
+
+It was downloaded from http://grass.itc.it
+
+The upstream contributors are listed in the AUTHORS file.
+
+The Geographic Resources Analysis and Support System (GRASS)
+Geographic Information System (GIS) is Copyright by the
+GRASS Development Team headquartered at ITC-irst, in Trento, Italy.
+
+This program 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; either version 2 of the License, or (at your
+option) any later version.
+
+Parts of GRASS are not copyright by the GRASS development team.
+The original authors hold the copyrights and you have to abide
+to their licensing terms where noted.
+(Keep in mind that code linking into GRASS can only be distributed
+if compatible with the GPL.)
+
+This program 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 (GPL) for more details.
+
+On Debian systems, the complete text of the GNU General Public
+License can be found in the /usr/share/common-licenses/GPL file.
+
+Questions regarding GRASS GIS should be directed to the
+GRASS Development Team at the following address:
+
+ GRASS Development Team
+ ITC-Irst
+ c/o M. Neteler
+ SSI/MPA
+ Via Sommarive, 18
+ 38050 Trento (Povo)
+ Italy
+ neteler@itc.it
+
+Internet:  http://grass.itc.it
+           http://grass.ibiblio.org
--- grass-6.2.3.orig/debian/grass-dev.install
+++ grass-6.2.3/debian/grass-dev.install
@@ -0,0 +1 @@
+usr/lib/grass/include
--- grass-6.2.3.orig/debian/grass-dev.dirs
+++ grass-6.2.3/debian/grass-dev.dirs
@@ -0,0 +1,3 @@
+usr/lib/grass/include
+usr/lib/grass/include/Make
+usr/share/pkgconfig
