armv7, this should save around 40h overall build time, and makes it more visible to anyone working on the port that they are indeed broken on the arch. OK phessler@ naddy@ Of note because the port is important to the architecture and self-hosted builds are a good thing: building u-boot on armv7 fails with an Internal Compiler Error (SIGBUS) in lib/time.c, it would be particularly nice if someone has an idea how to fix this!
31 lines
707 B
Makefile
31 lines
707 B
Makefile
# $OpenBSD: Makefile,v 1.31 2020/05/07 14:24:53 sthen Exp $
|
|
|
|
BROKEN-hppa = undefined reference to 'std::auto_ptr<geos::geom::Envelope>::~auto_ptr()'
|
|
BROKEN-arm = ld: error: duplicate symbol: typeinfo for geos::noding::BasicSegmentString
|
|
|
|
COMMENT= 2d geometry and topology engine
|
|
DISTNAME= geos-3.8.1
|
|
CATEGORIES= geo
|
|
|
|
SHARED_LIBS= geos 14.0 \
|
|
geos_c 4.4
|
|
|
|
# LGPLv2.1
|
|
PERMIT_PACKAGE= Yes
|
|
|
|
HOMEPAGE= https://trac.osgeo.org/geos/
|
|
MASTER_SITES= http://download.osgeo.org/geos/
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
WANTLIB= m ${COMPILER_LIBCXX}
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
# uses C++11, cf https://trac.osgeo.org/geos/wiki/RFC5
|
|
COMPILER = base-clang ports-gcc
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-pic
|
|
|
|
.include <bsd.port.mk>
|