diff options
author | gdt <gdt@pkgsrc.org> | 2006-09-20 16:01:48 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2006-09-20 16:01:48 +0000 |
commit | a3b67ebfd053141765a59420bc2cf9edc34e434b (patch) | |
tree | a5743adf5bae3f312fd6657c08a5db2d39b96d81 /geography/geos | |
parent | aaa4b1e1500449e373d525dc7106516aabade26f (diff) | |
download | pkgsrc-a3b67ebfd053141765a59420bc2cf9edc34e434b.tar.gz |
Add @LDFLAGS@ to tools/geos-config.in, so that 'geos-config --libs'
prints
-L/usr/pkg/lib -Wl,-R/usr/pkg/lib -lgeos
instead of
-L/usr/pkg/lib -lgeos
Diffstat (limited to 'geography/geos')
-rw-r--r-- | geography/geos/Makefile | 3 | ||||
-rw-r--r-- | geography/geos/distinfo | 3 | ||||
-rw-r--r-- | geography/geos/patches/patch-ae | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/geography/geos/Makefile b/geography/geos/Makefile index 8719ecd88b4..d537dd19e4e 100644 --- a/geography/geos/Makefile +++ b/geography/geos/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2006/07/22 04:46:16 rillig Exp $ +# $NetBSD: Makefile,v 1.3 2006/09/20 16:01:48 gdt Exp $ # DISTNAME= geos-2.0.0 +PKGREVISION= 1 CATEGORIES= geography MASTER_SITES= http://geos.refractions.net/ EXTRACT_SUFX= .tar.bz2 diff --git a/geography/geos/distinfo b/geography/geos/distinfo index 6e7613e73ce..2b9afab5526 100644 --- a/geography/geos/distinfo +++ b/geography/geos/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2006/08/24 18:30:24 wiz Exp $ +$NetBSD: distinfo,v 1.3 2006/09/20 16:01:48 gdt Exp $ SHA1 (geos-2.0.0.tar.bz2) = 68ebffa7e18f4edf932e98bd3cf20d58a439c22e RMD160 (geos-2.0.0.tar.bz2) = b3873169d215beb3202870618fbefbe96593fa90 @@ -7,3 +7,4 @@ SHA1 (patch-aa) = 7b05c8507f9f06ca0492ab8b219aad6922685a4e SHA1 (patch-ab) = 2257c2a6bc5448486dcd1826138c1b16b1b78a4f SHA1 (patch-ac) = e6fa156825bf9afb7324c63d5cc4c88a88cae96b SHA1 (patch-ad) = f665165e73d235c6dfd4119de50ea47a37414935 +SHA1 (patch-ae) = 506b5f738aa371732dbc4010f4327a71b12285a9 diff --git a/geography/geos/patches/patch-ae b/geography/geos/patches/patch-ae new file mode 100644 index 00000000000..c3d1d8f9ee8 --- /dev/null +++ b/geography/geos/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2006/09/20 16:01:48 gdt Exp $ + +--- tools/geos-config.in.orig 2004-07-17 05:07:17.000000000 -0400 ++++ tools/geos-config.in +@@ -34,7 +34,7 @@ case $1 in + echo @CFLAGS@ -I@prefix@/include + ;; + --libs) +- echo -L@prefix@/lib -lgeos ++ echo -L@prefix@/lib @LDFLAGS@ -lgeos + ;; + --includes) + echo @prefix@/include |