blob: fdfeece5e8c9b482804c95995d4daef84b09bd4e (
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
|
# Created by: lbartoletti <coder@tuxfamily.org>
# $FreeBSD$
PORTNAME= osgearth
PORTVERSION= 2.9
DISTVERSIONPREFIX= ${PORTNAME}-
CATEGORIES= graphics geography
MAINTAINER= lbartoletti@tuxfamily.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 \
librocksdb.so:databases/rocksdb
USES= cmake pkgconfig sqlite
USE_GITHUB= yes
GH_ACCOUNT= gwaldron
USE_LDCONFIG= yes
USE_GL+= gl glu
PLIST_SUB= OSGVERSION=3.4.0
CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH:PATH=${LOCALBASE}/include \
-DCMAKE_LIBRARY_PATH:PATH=${LOCALBASE}/lib \
-DLIB_POSTFIX:STRING=""
.include <bsd.port.mk>
|