blob: 6451b1cc302d3fb657344ca610a3e7a8df03ec8d (
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
|
PORTNAME= osgearth
PORTVERSION= 3.2
PORTREVISION= 2
DISTVERSIONPREFIX= ${PORTNAME}-
CATEGORIES= graphics geography
MAINTAINER= lbartoletti@FreeBSD.org
COMMENT= C++ terrain rendering toolkit for OpenSceneGraph
LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
LIB_DEPENDS= libosg.so:graphics/osg \
libgdal.so:graphics/gdal \
libcurl.so:ftp/curl \
libgeos.so:graphics/geos \
libleveldb.so:databases/leveldb \
libPocoUtil.so:devel/poco \
libprotoc.so:devel/protobuf
USES= cmake gl pkgconfig sqlite
USE_GITHUB= yes
GH_ACCOUNT= gwaldron
USE_CXXSTD= c++11
USE_LDCONFIG= yes
USE_GL+= gl glu
CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=${LOCALBASE}/include \
-DCMAKE_LIBRARY_PATH:PATH=${LOCALBASE}/lib \
-DLIB_POSTFIX:STRING=""
PLIST_SUB= PORTVERSION=${PORTVERSION}
.include <bsd.port.options.mk>
.if ${ARCH:Mpowerpc64*}
CXXFLAGS+= -DNO_WARN_X86_INTRINSICS -maltivec -mvsx
USES+= compiler:gcc-c++11-lib
.else
USES+= compiler:c++11-lang
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == i386
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-i386
.endif
.include <bsd.port.post.mk>
|