mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
- 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)
This commit is contained in:
parent
fce0433fee
commit
0f0cf3b65a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=181371
@ -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>
|
||||
|
@ -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
|
||||
|
@ -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 '^#' > $@
|
||||
|
Loading…
Reference in New Issue
Block a user