471d6469f5
patches/patch-include-geos-platform.h.in was applied upstream in r3902 (trunk) and r3903 (branches/3.4). Upstream NEWS: Changes in 3.4.2 2013-08-25 - Bug fixes / improvements - Use a double for PrecisionModel scale, avoiding overflows should fix 32-bit regression failures (#652) - isnan workaround OS detection missing NetBSD, DragonFly, Sun nuance (#650) - Do not distribute platform.h and version.h, but install both (#601) - Non-standard ChangeLog file in 3.4.0 and 3.4.1 releases (#654) - new travis bot (#657) - accept multiple Nan representations (#656)
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.24 2013/08/30 16:37:38 gdt Exp $
|
|
|
|
DISTNAME= geos-3.4.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.
|
|
|
|
# The following packages incorrectly (from the geos viewpoint) link
|
|
# directly against -lgeos and should be revbumped on every update (and
|
|
# fixed not to use -lgeos):
|
|
# geography/gdal-lib
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://geos.refractions.net/
|
|
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"
|