The PostGIS Team is pleased to release the release of PostGIS 3.1.0! This version exposes the new features of GEOS 3.9 as well as numerous core performance enhancements for spatial joins, large object access, text format output and more. Performance is a key feature of this release, with improvements to spatial joins, text outputs, large object reads, vector tile output, and a host of smaller tweaks. The k-means clustering code has been enhanced to support weighting and higher dimensional clusters. Geometry generators to create hexagonal and square tilings have been added, for simpler in-the-database summarization queries. Finally, PostGIS exposes the latest enhancements in the GEOS geometry library 3.9 version. The new overlay engine (aka "OverlayNG") provides more robust handling of difficult input geometries, using a set of new noding strategies to process geometry. For the end user, this should mean no more "topology exceptions" when using the union, difference, intersection or symmetric difference functions. PostGIS also exposes the new fixed precision overlay capability via an additional grid-size parameter on ST_Intersection and the other overlay functions. NOTA: GEOS 3.9 is not in ports yet. URL: https://postgis.net/2020/12/18/postgis-3.1.0/
80 lines
2.5 KiB
Makefile
80 lines
2.5 KiB
Makefile
# Created by: Loïc BARTOLETTI <lbartoletti@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= postgis
|
|
PORTVERSION= 2.5.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= databases geography
|
|
MASTER_SITES= https://download.osgeo.org/postgis/source/
|
|
PKGNAMESUFFIX= 25
|
|
|
|
MAINTAINER= lbartoletti@FreeBSD.org
|
|
COMMENT= Geographic objects support for PostgreSQL databases
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libproj.so:graphics/proj \
|
|
libgeos.so:graphics/geos \
|
|
libjson-c.so:devel/json-c \
|
|
libgdal.so:graphics/gdal
|
|
|
|
USES= alias compiler gmake gnome iconv:wchar_t libtool:keepla \
|
|
localbase perl5 pkgconfig pgsql:9.4+ shebangfix
|
|
USE_GNOME= libxml2
|
|
USE_LDCONFIG= yes
|
|
USE_PERL5= build
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= ${ICONV_CONFIGURE_BASE} NUMERICFLAGS=${PORTVERSION}
|
|
SHEBANG_FILES= extensions/address_standardizer/*.pl raster/test/regress/*.pl \
|
|
raster/test/regress/loader/*.pl regress/run_test.pl \
|
|
utils/postgis_restore.pl.in utils/*.pl
|
|
WANT_PGSQL= server
|
|
|
|
OPTIONS_DEFINE= ADDRSTD LOADERGUI NLS SFCGAL TOPOLOGY
|
|
OPTIONS_DEFAULT=ADDRSTD SFCGAL TOPOLOGY
|
|
OPTIONS_SUB= yes
|
|
|
|
LOADERGUI_DESC= Enable shp2pgsql-gui
|
|
TOPOLOGY_DESC= Topology support
|
|
SFCGAL_DESC= Enable sfcgal
|
|
ADDRSTD_DESC= Enable address standardizer
|
|
|
|
ADDRSTD_CONFIGURE_WITH= address-standardizer
|
|
ADDRSTD_LIB_DEPENDS= libpcre.so:devel/pcre
|
|
ADDRSTD_VARS= WANT_PGSQL+=contrib
|
|
LOADERGUI_CONFIGURE_WITH= gui
|
|
LOADERGUI_USE= GNOME=gtk20
|
|
NLS_CONFIGURE_WITH= nls
|
|
NLS_USES= gettext
|
|
SFCGAL_LIB_DEPENDS= libSFCGAL.so:databases/sfcgal
|
|
SFCGAL_CONFIGURE_WITH= sfcgal=${LOCALBASE}/bin/sfcgal-config
|
|
TOPOLOGY_CONFIGURE_WITH= topology
|
|
|
|
CONFLICTS_INSTALL= postgis20 postgis21 postgis22 postgis23 postgis24 postgis30 postgis31
|
|
|
|
VER= ${PORTVERSION:R}
|
|
|
|
PLIST_SUB= PORTVERSION=${PORTVERSION} \
|
|
VER=${VER}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/^#pragma GCC diagnostic/d' \
|
|
${WRKSRC}/postgis/lwgeom_functions_basic.c \
|
|
${WRKSRC}/postgis/lwgeom_geos.c
|
|
.endif
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/liblwgeom-${VER}.so.0.0.0
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/postgresql/*.so
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/tiger_geocoder
|
|
(cd ${WRKSRC}/extras/tiger_geocoder && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/tiger_geocoder/ "! ( -name *\.orig -o -name *\.bak )" )
|
|
${MKDIR} ${STAGEDIR}${DATADIR}/utils
|
|
(cd ${WRKSRC}/utils/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/utils/ "! ( -name *\.orig -o -name *\.bak -o -name Makefile -o -name *\.in -o -name uninstall_script )" )
|
|
|
|
.include <bsd.port.post.mk>
|