summaryrefslogtreecommitdiff
path: root/databases/postgresql-postgis
diff options
context:
space:
mode:
authorgdt <gdt>2010-03-12 01:06:15 +0000
committergdt <gdt>2010-03-12 01:06:15 +0000
commitc93793642bb816ce87002cf5474b3343cffb3e07 (patch)
treedba22f724175bfd2edaff965acddfdaaf12f6e13 /databases/postgresql-postgis
parentd8a2673fb83e88b179ecd94c1a0b5b4aad34ef45 (diff)
downloadpkgsrc-c93793642bb816ce87002cf5474b3343cffb3e07.tar.gz
Update to 1.5.1. Fix path to where postgis library is actually put.
Bug Fixes * #410, update embedded bbox when applying ST_SetPoint, ST_AddPoint ST_RemovePoint to a linestring (Paul Ramsey) * #411, allow dumping tables with invalid geometries (Sandro Santilli, for Regione Toscana-SIGTA) * #414, include geography_columns view when running upgrade scripts (Paul Ramsey) * #419, allow support for multilinestring in ST_Line_Substring (Paul Ramsey, for Lidwala Consulting Engineers) * #421, fix computed string length in ST_AsGML() (Olivier Courtin) * #441, fix GML generation with heterogeneous collections (Olivier Courtin) * #443, incorrect coordinate reversal in GML 3 generation (Olivier Courtin) * #450, wrong area calculation for geography features that cross the date line (Paul Ramsey) * Ensure support for upcoming 9.0 PgSQL release (Paul Ramsey)
Diffstat (limited to 'databases/postgresql-postgis')
-rw-r--r--databases/postgresql-postgis/Makefile4
-rw-r--r--databases/postgresql-postgis/distinfo10
-rw-r--r--databases/postgresql-postgis/patches/patch-aa4
3 files changed, 9 insertions, 9 deletions
diff --git a/databases/postgresql-postgis/Makefile b/databases/postgresql-postgis/Makefile
index 473a99b331d..b0d976ab6b4 100644
--- a/databases/postgresql-postgis/Makefile
+++ b/databases/postgresql-postgis/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.3 2010/03/05 14:55:21 gdt Exp $
+# $NetBSD: Makefile,v 1.4 2010/03/12 01:06:15 gdt Exp $
-DISTNAME= postgis-1.5.0
+DISTNAME= postgis-1.5.1
PKGNAME= postgresql${PGSQL_VERSION}-${DISTNAME}
CATEGORIES= databases geography
MASTER_SITES= http://postgis.refractions.net/download/
diff --git a/databases/postgresql-postgis/distinfo b/databases/postgresql-postgis/distinfo
index b23b7c7c323..33a33e64438 100644
--- a/databases/postgresql-postgis/distinfo
+++ b/databases/postgresql-postgis/distinfo
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.2 2010/03/05 14:55:21 gdt Exp $
+$NetBSD: distinfo,v 1.3 2010/03/12 01:06:15 gdt Exp $
-SHA1 (postgis-1.5.0.tar.gz) = 8addacea2439a52f07735b58268dcef8df46912c
-RMD160 (postgis-1.5.0.tar.gz) = 815c445d7ab628254130d2277648913e945b2af9
-Size (postgis-1.5.0.tar.gz) = 3752211 bytes
-SHA1 (patch-aa) = 5a1a9d2f5d05cad95f03ad1f01259dacd57939aa
+SHA1 (postgis-1.5.1.tar.gz) = 9b7f2b6ce2cb1d23c88c0393f55f13ea9b172ff7
+RMD160 (postgis-1.5.1.tar.gz) = 7c8b600e60c751b0ddc6c76f6cbb41d5997366d6
+Size (postgis-1.5.1.tar.gz) = 3721030 bytes
+SHA1 (patch-aa) = 5d794483ad7699575ae4ac35b16024c9c0fe37eb
SHA1 (patch-ab) = 731c73a1c20a24d90f360de9c87ec380ef39ab50
SHA1 (patch-ac) = ee7530f9e17ed4385f3294b5a95d500943fad74e
SHA1 (patch-ad) = 166b84a97c4519fecd52430705f89e9ca5536cdc
diff --git a/databases/postgresql-postgis/patches/patch-aa b/databases/postgresql-postgis/patches/patch-aa
index 8a6855e02ff..43e4fea4d38 100644
--- a/databases/postgresql-postgis/patches/patch-aa
+++ b/databases/postgresql-postgis/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.2 2010/03/05 14:55:21 gdt Exp $
+$NetBSD: patch-aa,v 1.3 2010/03/12 01:06:16 gdt Exp $
--- postgis/Makefile.in.orig 2010-01-08 22:48:29.000000000 +0000
+++ postgis/Makefile.in
@@ -16,7 +16,7 @@ $NetBSD: patch-aa,v 1.2 2010/03/05 14:55:21 gdt Exp $
# Borrow the $libdir substitution from PGXS but customise by adding the version number
%.sql: %.sql.in
- sed 's,MODULE_PATHNAME,$$libdir/postgis-@POSTGIS_MAJOR_VERSION@.@POSTGIS_MINOR_VERSION@,g' $< >$@
-+ sed 's,MODULE_PATHNAME,$$libdir/libpostgis-@POSTGIS_MAJOR_VERSION@.@POSTGIS_MINOR_VERSION@,g' $< >$@
++ sed 's,MODULE_PATHNAME,$$libdir/../libpostgis-@POSTGIS_MAJOR_VERSION@.@POSTGIS_MINOR_VERSION@.so,g' $< >$@
postgis_upgrade_15_minor.sql: postgis.sql
$(PERL) ../utils/postgis_proc_upgrade.pl $< 1.5 > $@