Author: frankie
Date: 2009-09-16 10:58:50 +0000 (Wed, 16 Sep 2009)
New Revision: 2454

Added:
   packages/ogdi-dfsg/trunk/debian/patches/hurd.dpatch
Modified:
   packages/ogdi-dfsg/trunk/debian/changelog
   packages/ogdi-dfsg/trunk/debian/control
   packages/ogdi-dfsg/trunk/debian/patches/00list
   packages/ogdi-dfsg/trunk/debian/rules
Log:
Minor changes


Modified: packages/ogdi-dfsg/trunk/debian/changelog
===================================================================
--- packages/ogdi-dfsg/trunk/debian/changelog   2009-09-16 10:46:30 UTC (rev 
2453)
+++ packages/ogdi-dfsg/trunk/debian/changelog   2009-09-16 10:58:50 UTC (rev 
2454)
@@ -1,3 +1,13 @@
+ogdi-dfsg (3.2.0~beta2-5) unstable; urgency=low
+
+  * NOT RELEASED YET
+  * [PATCH] Added hurd.dpatch to support GNU/Hurd. Thanks Barry deFreese. 
+    (closes: #534093)
+  * Policy set to 3.8.3, no changes.
+  * Removed stamp file cleaning, because it is now automatically done.
+
+ -- Francesco Paolo Lovergine <fran...@debian.org>  Wed, 16 Sep 2009 12:13:36 
+0200
+
 ogdi-dfsg (3.2.0~beta2-4) unstable; urgency=high
 
   * Now -dev package depends on libproj-dev because it requires proj headers.

Modified: packages/ogdi-dfsg/trunk/debian/control
===================================================================
--- packages/ogdi-dfsg/trunk/debian/control     2009-09-16 10:46:30 UTC (rev 
2453)
+++ packages/ogdi-dfsg/trunk/debian/control     2009-09-16 10:58:50 UTC (rev 
2454)
@@ -3,7 +3,7 @@
 Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
 Uploaders: Francesco Paolo Lovergine <fran...@debian.org>
 Build-Depends: debhelper (>= 7), autotools-dev, zlib1g-dev, libexpat1-dev, 
libproj-dev, dpatch, tcl-dev (>=8.4)
-Standards-Version: 3.8.1
+Standards-Version: 3.8.3
 Section: libs
 Homepage: http://ogdi.sourceforge.net/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-grass/packages/ogdi-dfsg/

Modified: packages/ogdi-dfsg/trunk/debian/patches/00list
===================================================================
--- packages/ogdi-dfsg/trunk/debian/patches/00list      2009-09-16 10:46:30 UTC 
(rev 2453)
+++ packages/ogdi-dfsg/trunk/debian/patches/00list      2009-09-16 10:58:50 UTC 
(rev 2454)
@@ -1,3 +1,4 @@
 makefile
 shared
 endianess
+hurd

Added: packages/ogdi-dfsg/trunk/debian/patches/hurd.dpatch
===================================================================
--- packages/ogdi-dfsg/trunk/debian/patches/hurd.dpatch                         
(rev 0)
+++ packages/ogdi-dfsg/trunk/debian/patches/hurd.dpatch 2009-09-16 10:58:50 UTC 
(rev 2454)
@@ -0,0 +1,120 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## hurd.dpatch by Francesco Paolo Lovergine <fran...@debian.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+...@dpatch@
+diff -urNad trunk~/config/GNU.mak trunk/config/GNU.mak
+--- trunk~/config/GNU.mak      1970-01-01 01:00:00.000000000 +0100
++++ trunk/config/GNU.mak       2009-09-16 12:09:00.000000000 +0200
+@@ -0,0 +1,109 @@
++# Copyright (C) 2001 Her Majesty the Queen in Right of Canada.
++# Permission to use, copy, modify and distribute this software and
++# its documentation for any purpose and without fee is hereby granted,
++# provided that the above copyright notice appear in all copies, that
++# both the copyright notice and this permission notice appear in
++# supporting documentation, and that the name of Her Majesty the Queen
++# in Right  of Canada not be used in advertising or publicity pertaining
++# to distribution of the software without specific, written prior
++# permission.  Her Majesty the Queen in Right of Canada makes no
++# representations about the suitability of this software for any purpose.
++# It is provided "as is" without express or implied warranty.
++
++# Generic unix configuration file, processed by configure to make 
++# platform specific.
++
++#
++# Read in the configuration common to all Unix
++#
++include /config/unix.mak
++
++#
++# platform specific Symbols
++#
++PLATFORM= 
++_SOLARIS= 1
++USE_TERMIO= -DUSE_TERMIO
++
++# 
++# platform specific tools
++#
++AR= ar cr
++
++
++#
++# Compilation and linking flags
++#
++SHLIB_CFLAGS= -fPIC
++COMMON_CFLAGS=  -Wall -O2  -Wall -DUNIX=1
++
++SHLIB_LDFLAGS= -shared 
++COMMON_LDFLAGS  =  
++
++RPC_INCLUDES = -DHAVE_STD_RPC_INCLUDES
++
++UCB_STATICLIB = 
++
++TCL_INCLUDE = -I/usr/include/tcl8.4
++TCL_LINKLIB =
++
++#
++#Install Locations
++#
++prefix= /usr
++exec_prefix = 
++INST_INCLUDE= /include
++INST_LIB= /lib
++INST_BIN= /bin
++
++#
++# platform specific file locations
++#
++#RPC_LINKLIB= -lrpcsvc -lnsl -lsocket
++#RPC_LINKLIB=-ldl -ldbmalloc
++RPC_LINKLIB=-ldl 
++
++#
++# Endian definition, could be little or big
++#
++BIG_ENDIAN          = 0
++
++#
++# Handle internal/external PROJ.4 library usage.
++#
++
++PROJ_SETTING=external
++
++ifeq (,external)
++PROJ_INCLUDE :=-I/usr/include
++PROJ_STATICLIB := -lproj
++endif
++
++#
++# Handle internal/external ZLIB library usage.
++#
++
++ZLIB_SETTING=external
++
++ifeq (,external)
++ZLIB_INCLUDE :=-I/usr/include
++ZLIB_LINKLIB := -lz
++endif
++
++#
++# Handle internal/external/disabled "Expat" library handling.
++#
++
++EXPAT_SETTING=external
++
++ifeq (,external)
++EXPAT_INCLUDE := -I/usr/include
++EXPAT_LINKLIB := -lexpat
++endif
++
++ifeq (,disabled)
++EXPAT_INCLUDE := -DEXPAT_DISABLED
++EXPAT_LINKLIB := 
++endif
++
++


Property changes on: packages/ogdi-dfsg/trunk/debian/patches/hurd.dpatch
___________________________________________________________________
Added: svn:executable
   + *

Modified: packages/ogdi-dfsg/trunk/debian/rules
===================================================================
--- packages/ogdi-dfsg/trunk/debian/rules       2009-09-16 10:46:30 UTC (rev 
2453)
+++ packages/ogdi-dfsg/trunk/debian/rules       2009-09-16 10:58:50 UTC (rev 
2454)
@@ -69,7 +69,6 @@
        cp -f /usr/share/misc/config.guess config.guess
 endif
        rm -f config.status config.log
-       rm -f build-stamp 
        rm -rf $(CURDIR)/bin $(CURDIR)/lib
        rm -f ogdi-config ogdi.pc config/common.mak config/Linux.mak
        dh_clean 


_______________________________________________
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel

Reply via email to