diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-01-03 21:29:15 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-01-03 21:29:15 +0000 |
commit | 0f0cf3b65a106cc00e29b3991cc331dc524fec23 (patch) | |
tree | 2aed9f31891da16507d54c944da0ec13d939198f /databases | |
parent | - Add new dependency (diff) |
- Update to 1.2.0
Changelog:
* New Curve type, based on the ISO SQL/MM model for curves.
* Index binding for curves, allowing them to use the same R-Tree indexes as the other types.
* Serialization and deserialization functions for Curve, allowing them to be dumped and restored.
* Performance shortcuts for Contains and Within to optimize point-in-polygon case.
* Support for most of the ST_* and SE_* spatial SQL functions used by the ESRI ArcSDE spatial SQL interfaces.
* Documentation of the new SQL/MM functions and Curve types.
PR: ports/107489
Submitted by: Anderson S. Ferreira <anderson@cnpm.embrapa.br> (maintainer)
Notes
Notes:
svn path=/head/; revision=181371
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgis/Makefile | 4 | ||||
-rw-r--r-- | databases/postgis/distinfo | 6 | ||||
-rw-r--r-- | databases/postgis/files/patch-lwgeom | 8 |
3 files changed, 9 insertions, 9 deletions
diff --git a/databases/postgis/Makefile b/databases/postgis/Makefile index 4637f60eedf9..c864bc25267e 100644 --- a/databases/postgis/Makefile +++ b/databases/postgis/Makefile @@ -6,7 +6,7 @@ # PORTNAME= postgis -DISTVERSION= 1.1.6 +DISTVERSION= 1.2.0 CATEGORIES= databases MASTER_SITES= http://postgis.refractions.net/download/ @@ -23,7 +23,6 @@ USE_GMAKE= yes USE_PERL5_BUILD= yes INSTALL_TARGET= install -USE_LDCONFIG= no OPTIONS= GEOS "Include GEOS - the OpenGIS 'Simple Features for SQL'" off \ UTF8 "UTF-8 support for shp2pgsql. (needs libiconv)" off @@ -32,6 +31,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --datadir=${PREFIX}/share/postgis \ --bindir=${PREFIX}/bin \ --libdir=${PREFIX}/lib \ + --mandir=${PREFIX}/man \ --with-proj .include <bsd.port.pre.mk> diff --git a/databases/postgis/distinfo b/databases/postgis/distinfo index 28760e9f4e25..fc0c321bbce8 100644 --- a/databases/postgis/distinfo +++ b/databases/postgis/distinfo @@ -1,3 +1,3 @@ -MD5 (postgis-1.1.6.tar.gz) = d9df1ea49df747607e7ed9fdccf728cb -SHA256 (postgis-1.1.6.tar.gz) = 18923e610e23e4c5fe706b5d52ff3d44fbddac9876775d36917268d32d7d1580 -SIZE (postgis-1.1.6.tar.gz) = 2039011 +SIZE (postgis-1.2.0.tar.gz) = 2077747 +SHA256 (postgis-1.2.0.tar.gz) = 7d8f5782ddca38199a1630765e4a2b6d7d703af0cc28d04685cbc6156177d9cb +MD5 (postgis-1.2.0.tar.gz) = 59b5f89d0a0230b00d80e779bb517520 diff --git a/databases/postgis/files/patch-lwgeom b/databases/postgis/files/patch-lwgeom index 4e4d069b84e9..ca630c6b8b48 100644 --- a/databases/postgis/files/patch-lwgeom +++ b/databases/postgis/files/patch-lwgeom @@ -1,11 +1,11 @@ ---- lwgeom/Makefile Sun Jun 25 20:59:32 2006 -+++ lwgeom/Makefile Wed Jul 5 16:29:07 2006 +--- lwgeom/Makefile Tue Dec 5 17:07:00 2006 ++++ lwgeom/Makefile Wed Jan 3 14:45:49 2007 @@ -129,7 +129,7 @@ $(PERL) ../utils/postgis_proc_upgrade.pl ../lwpostgis.sql > ../lwpostgis_upgrade.sql - ../lwpostgis.sql: lwpostgis.sql.in long_xact.sql + ../lwpostgis.sql: lwpostgis.sql.in long_xact.sql.in sqlmm.sql.in sqldefines.h - cpp -P -traditional-cpp -DUSE_VERSION=$(USE_VERSION) $< | sed -e 's:@MODULE_FILENAME@:$(MODULE_FILENAME):g;s:@POSTGIS_VERSION@:$(POSTGIS_VERSION):g;s:@POSTGIS_SCRIPTS_VERSION@:$(SCRIPTS_VERSION):g;s/@POSTGIS_BUILD_DATE@/$(POSTGIS_BUILD_DATE)/g' | grep -v '^#' > $@ + cpp -P -traditional-cpp -DUSE_VERSION=$(USE_VERSION) $< | sed -e 's:@MODULE_FILENAME@:$$libdir/liblwgeom.so.1:g;s:@POSTGIS_VERSION@:$(POSTGIS_VERSION):g;s:@POSTGIS_SCRIPTS_VERSION@:$(SCRIPTS_VERSION):g;s/@POSTGIS_BUILD_DATE@/$(POSTGIS_BUILD_DATE)/g' | grep -v '^#' > $@ - ../regress/lwpostgis.sql: lwpostgis.sql.in long_xact.sql + ../regress/lwpostgis.sql: lwpostgis.sql.in long_xact.sql.in sqlmm.sql.in sqldefines.h cpp -P -traditional-cpp -DUSE_VERSION=$(USE_VERSION) $< | sed -e 's#@MODULE_FILENAME@#$(REGRESS_MODULE_FILENAME)#g;s#@POSTGIS_VERSION@#$(POSTGIS_VERSION)#g;s#@POSTGIS_SCRIPTS_VERSION@#$(SCRIPTS_VERSION)#g;s/@POSTGIS_BUILD_DATE@/$(POSTGIS_BUILD_DATE)/g' | grep -v '^#' > $@ |