Package: ogdi-dfsg Version: 3.2.0~beta2-5 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd
Hi, currently[1] ogdi-dfsg cannot be compiled on GNU/Hurd. Basically, the current hurd.dpatch is incomplete, producing a GNU.mk which is not totally usable, and adding no path to the include/ directory. I decided to adopt the kfreebsd-* strategy, ie use the linux stuff (which works fine). Patch attached. [1] http://buildd.debian-ports.org/fetch.php?&pkg=ogdi-dfsg&ver=3.2.0~beta2-5&arch=hurd-i386&stamp=1253140219&file=log&as=raw Thanks, -- Pino
#! /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@ --- a/configure +++ b/configure @@ -5879,4 +5879,7 @@ if test "$target" = "GNU/kFreeBSD" ; then target=Linux fi +if test "$target" = "GNU" ; then + target=Linux +fi mv config/generic.mak config/$target.mak --- a/configure.in +++ b/configure.in @@ -352,4 +352,7 @@ if test "$target" = "GNU/kFreeBSD" ; then target=Linux fi +if test "$target" = "GNU" ; then + target=Linux +fi mv config/generic.mak config/$target.mak --- a/config/common.mak.in +++ b/config/common.mak.in @@ -55,6 +55,9 @@ ifeq ($(TARGET), GNU/kFreeBSD) TARGET = Linux endif +ifeq ($(TARGET), GNU) +TARGET = Linux +endif endif #
_______________________________________________ Pkg-grass-devel mailing list Pkg-grass-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-grass-devel