summaryrefslogtreecommitdiff
path: root/astro/libosmium/Makefile
blob: bd5277b77a3a8eca8afa46e695f873987524ab7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
# $FreeBSD$

PORTNAME=	libosmium
PORTVERSION=	2.13.1
DISTVERSIONPREFIX=	v
PORTREVISION=	4
CATEGORIES=	astro geography devel

MAINTAINER=	amdmi3@FreeBSD.org
COMMENT=	Fast and flexible C++ library for working with OpenStreetMap data

LICENSE=	BSL
LICENSE_FILE=	${WRKSRC}/LICENSE.txt

BROKEN_powerpc64=	fails to compile: types_from_string.hpp: error: 'strtoll' is not a member of 'std'

LIB_DEPENDS=	libgdal.so:graphics/gdal \
		libboost_regex.so:devel/boost-libs \
		libgeos.so:graphics/geos \
		libexpat.so:textproc/expat2
BUILD_DEPENDS=	sparsehash>=0:devel/sparsehash \
		${LOCALBASE}/include/utf8.h:devel/utf8cpp
RUN_DEPENDS=	${LOCALBASE}/include/utf8.h:devel/utf8cpp

USE_GITHUB=	yes
GH_ACCOUNT=	osmcode

USES=		cmake compiler:c++11-lib
CMAKE_ARGS=	-DBUILD_EXAMPLES:BOOL=OFF

# if/when corresponding ports appear in the tree, these will need to
# be turned from depends
CMAKE_ARGS+=	-DINSTALL_GDALCPP:BOOL=ON \
		-DINSTALL_PROTOZERO:BOOL=ON

# though it builds tests, the library itself is header-only
NO_ARCH=	yes

PORTDOCS=	*

OPTIONS_DEFINE=	TEST DOCS
OPTIONS_DEFAULT=	TEST
TEST_TEST_TARGET=	test
TEST_CMAKE_BOOL=	BUILD_TESTING

post-extract:
	@${RM} -rf ${WRKSRC}/include/utf8*

post-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
	${INSTALL_DATA} ${WRKSRC}/CHANGELOG.md ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>