From f12516dc0051bc56460c4490db61e2167f8431bd Mon Sep 17 00:00:00 2001 From: gdt Date: Fri, 5 Mar 2010 14:55:21 +0000 Subject: Update to 1.5.0. Some rough edges due to pkgsrc's replacement of pgsql's Makefile.shlib are patched around. ('make test' passes on netbsd-5/i386 with postgresql84.) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a major release adding a significant number of new features including: * New "geography" type for managing geodetic (lat/lon) data * Performance-enhanced distance calculations * GML and KML format readers * Improved shape loading GUI * And more! Release Notes Important Changes * =~ operator now indicates bounding box equality, not feature equality * GEOS 3.1 is now the minimum accepted version of GEOS * GEOS 3.2 is needed if you want to use enhanced buffering features and ST_HausdorffDistance * GEOS, LibXML2, and Proj4 are now mandatory dependencies New Features * Added Hausdorff distance calculations (#209) (Vincent Picavet) * Added parameters argument to ST_Buffer operation to support one-sided buffering and other buffering styles (Sandro Santilli) * Performance improvements to ST_Distance (Nicklas Avén) * Addition of other Distance related visualization and analysis functions (Nicklas Avén) * ST_ClosestPoint * ST_DFullyWithin * ST_LongestLine * ST_MaxDistance * ST_ShortestLine * KML, GML input via ST_GeomFromGML and ST_GeomFromKML (Olivier Courtin) * Extract homogeneous collection with ST_CollectionExtract (Paul Ramsey) * Add measure values to existing linestring with ST_AddMeasure (Paul Ramsey) * History table implementation in utils (George Silva) * Win32 support and improvement of core shp2pgsql-gui (Mark Cave-Ayland) * In place 'make check' support (Paul Ramsey) * Geography type and supporting functions o Spherical algorithms from Dave Skea o Object/index implementation from Paul Ramsey o Selectivitiy implementation from Mark Cave-Ayland o Serializations (KML, GML, JSON) from Olivier Courtin o ST_Area, ST_Distance, ST_DWithin, ST_GeogFromText, ST_GeogFromWKB, ST_Intersects, ST_Covers, ST_Buffer * Documentation updates and improvements (Regina Obe, Kevin Neufeld) * Testing and quality control (Regina Obe) * PostGIS 1.5 support PostgreSQL 8.5 trunk (Guillaume Lelarge) * Many, many other changes --- databases/postgresql-postgis/Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'databases/postgresql-postgis/Makefile') diff --git a/databases/postgresql-postgis/Makefile b/databases/postgresql-postgis/Makefile index c1e202f8e7e..473a99b331d 100644 --- a/databases/postgresql-postgis/Makefile +++ b/databases/postgresql-postgis/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2010/02/10 19:34:06 joerg Exp $ +# $NetBSD: Makefile,v 1.3 2010/03/05 14:55:21 gdt Exp $ -DISTNAME= postgis-1.4.1 +DISTNAME= postgis-1.5.0 PKGNAME= postgresql${PGSQL_VERSION}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= databases geography MASTER_SITES= http://postgis.refractions.net/download/ @@ -44,17 +43,21 @@ SUBST_STAGE.paths= pre-configure INSTALLATION_DIRS= ${DOCDIR} ${DOCDIR}/images ${PKGMANDIR}/man1 +# libtool complexities: +# http://lists.gnu.org/archive/html/libtool/2006-09/msg00075.html + post-install: ${LIBTOOL} --mode=install ${INSTALL_LIB} ${WRKSRC}/liblwgeom/liblwgeom.la ${DESTDIR}${PREFIX}/lib ${INSTALL_DATA} ${BUILD_DIRS:Q}/README.postgis ${DESTDIR}${DOCDIR} ${INSTALL_DATA} ${BUILD_DIRS:Q}/doc/html/postgis.html ${DESTDIR}${DOCDIR} ${INSTALL_DATA} ${BUILD_DIRS:Q}/doc/html/style.css ${DESTDIR}${DOCDIR} ${INSTALL_DATA} ${BUILD_DIRS:Q}/doc/html/images/* ${DESTDIR}${DOCDIR}/images - ${INSTALL_DATA} ${BUILD_DIRS:Q}/postgis_comments.sql ${DESTDIR}${PREFIX}/share/postgresql/contrib + ${INSTALL_DATA} ${BUILD_DIRS:Q}/doc/postgis_comments.sql ${DESTDIR}${PREFIX}/share/postgresql/contrib ${INSTALL_MAN} ${BUILD_DIRS:Q}/doc/man/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1 .include "../../geography/geos/buildlink3.mk" .include "../../misc/proj/buildlink3.mk" +.include "../../textproc/libxml2/buildlink3.mk" .include "../../mk/pgsql.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" -- cgit v1.2.3