Changes in 3.8.1 2020-xx-xx - Bug fixes / improvements - Stack allocate line segments in OverlapUnion (Paul Ramsey) - Avoid returning non-empty CoordinateSequence from empty Point (#1001, Dan Baston) - Avoid assertion failure with MSVC 2017 / 2019 (#1002, Dan Baston) - Remove whitespace from end of GEOSversion() output (azhi) - Improve performance of GEOSisValid (#1008, Dan Baston) - Avoid changing MultiLineString component order in GEOSReverse (#1013, Dan Baston) - Fix missing vtable for LineString and CoordinateArraySequenceFactory (#299 and #1016, Evgen Bodunov) - Reduce performance regression in GEOSBuffer (#1020) Changes in 3.8.0 2019-10-10 - New things: - CAPI: GEOSBuildArea (#952, Even Rouault) - CAPI: GEOSMakeValid (#952, Even Rouault) - CAPI: GEOSPolygonize_valid (#727, Dan Baston) - CAPI: GEOSCoverageUnion (Dan Baston) - CAPI: GEOSCoordSeq_setXY, GEOSCoordSeq_setXYZ, GEOSCoordSeq_getXY, GEOSCoordSeq_getXYZ (Dan Baston) - CAPI: GEOSMinimumBoundingCircle (#735) - CAPI: GEOSGeom_createPointFromXY (Dan Baston) - Improvements: - Improve overall performance by reducing of heap allocations (Dan Baston) - Improve performance and robustness of GEOSPointOnSurface (Martin Davis) - Improve performance of GEOSPolygonize for cases with many potential holes (#748, Dan Baston) - Support extended precision calculations (ttmath) and port JTS improvements related to extended precision (Paul Ramsey, Mateusz Loskot) - Improve performance of GEOSPolygonize for cases with many or complex shells (Dan Baston, Martin Davis) - Improve performance of Delaunay triangulations / Voronoi Diagrams (Dan Baston) - Improve performance of prepared geometry operations (Dan Baston) - Improve robustness of Delaunay triangulations (Paul Ramsey, Martin Davis) - Improve performance of unary union for lines (Dan Baston) - Improve general predicate, overlay, and buffer performance (Dan Baston, Paul Ramsey) - Improve cascaded union performance (Paul Ramsey, Martin Davis) - Allocate default GeometryFactory singleton on the stack (Sandro Mani) - Harmonize XML tests with JTS and harmonize cmake/autoconf test running (Paul Ramsey) - CMake modernization (Mateusz Loskot, Paul Ramsey, Dan Baston) - Return unique_ptr from most methods that produce a new geometry (Dan Baston) - Changes: - Constructive geometry functions in CAPI now preserve SRID of input arguments in output (#896)
42 lines
1.4 KiB
Makefile
42 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.35 2020/03/11 12:52:06 gdt Exp $
|
|
|
|
DISTNAME= geos-3.8.1
|
|
CATEGORIES= geography
|
|
MASTER_SITES= http://download.osgeo.org/geos/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
# geos has two libraries:
|
|
# geos_c (C), which follows normal versioning rules
|
|
# geos (C++), which uses -release, and changes on every release
|
|
|
|
# According to the geos project (as documented in README), the C++
|
|
# interface should not be directly used and other packages should not
|
|
# link against it. Therefore, in theory pkgsrc would perform a
|
|
# recursive revbump when the libgeos_c.so version changes, and would
|
|
# generally ignore libgeos.so shlib name changes.
|
|
#
|
|
# However, libtool explicitly adds dependency_libs, so packages that
|
|
# intend to only depend on the C library end up being linked directly
|
|
# to the C++ library also. Thus, they need revbumping because of
|
|
# libtools {bug or feature}.
|
|
#
|
|
# Packages that need revbumping because of libtool's behavior:
|
|
# geography/gdal-lib
|
|
# geography/py-gdal
|
|
# databases/postgresql-postgis2
|
|
# Packages that need revbumping because of direct use of the C++ lib:
|
|
# (none known)
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= https://trac.osgeo.org/geos
|
|
COMMENT= C++ port of the Java Topology Suite (JTS)
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_LANGUAGES= c c++11
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|