pkgsrc/geography/geos/Makefile
gdt a1e2b9b60e Update to 3.6.2
Changes in 3.6.2
2017-07-25

- Bug fixes / improvements
  - Fix exception in UnaryUnion of collection of touching polygons (#837)
  - Allow building against python 3 (#774)
  - Fix build with android-ndk and other compilers (#799)
  - Allows compiling with -Wpointer-bool-conversion (#638)
  - Fix unhandled exception on invalid fp operation (#811)
  - Fix overloaded virtual print in DirectedEdge* (#812)
  - AppVeyor CI build added (#813)
  - Clean up numerous MSVC warnings, notably C4275 and C4589 (#814)
  - Bump CMake version to 3.0.0 (#817)
  - Fix leaks in WKT parser (#830)

Changes in 3.6.1
2016-12-24

- Bug fixes / improvements
  - Fix GEOSSTRtree_nearest_r signature and add implementation (#796)
  - Fix --static-clibs and --static-cclibs returns from geos-config
  - Fix WKB representation of empty polygon (#680).
  - Fix empty GEOSSimplify return on inner ring collapse (#741)

Changes in 3.6.0
2016-10-25

- Important / Breaking Changes:
  - The PHP binding moved to its own repository:
    http://git.osgeo.org/gogs/geos/php-geos (#765)
- New things:
  - CAPI: GEOSGeom_{get,set}UserData (Rashad Kanavath)
  - CAPI: GEOSGeom_{set,get}Precision (#713)
  - CAPI: GEOSMinimumRotatedRectangle and GEOSMinimumWidth
    (#729, Nyall Dawson)
  - CAPI: GEOSSTRtree_nearest (#768, Dan Baston)
  - CAPI: GEOSMinimumClearance and GEOSMinimumClearanceLine
    (#776, Dan Baston)
- C++ API changes:
  - Automatic memory management for GeometryFactory objects
2017-09-28 00:24:41 +00:00

39 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.30 2017/09/28 00:24:41 gdt Exp $
DISTNAME= geos-3.6.2
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, pkgsrc will perform a recursive revbump
# when the geos_c shlib version changes, and will generally ignore
# geos shlib name changes. However, people on the geos list dispute
# this characterization.
# The following packages either incorrectly (from the geos README
# viewpoint) or suboptimally (from some comments on the list) link
# directly against -lgeos and should be revbumped on every update (and
# perhaps fixed not to use -lgeos):
# geography/gdal-lib
# geoggraph/osm2pgsql
# https://github.com/openstreetmap/osm2pgsql/issues/634
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++
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
TEST_TARGET= check
.include "../../mk/bsd.pkg.mk"