-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
45 lines (35 loc) · 1.17 KB
/
Makefile
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
PORTNAME= Coin
DISTVERSIONPREFIX= Coin-
DISTVERSION= 4.0.0-210
DISTVERSIONSUFFIX= -g81dcd9f64
CATEGORIES= wip graphics
# PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
# PATCHFILES+= 3053d28b74d.patch:-p1 # Unbreak non-X11
MAINTAINER= cmt@FreeBSD.org
COMMENT= C++ 3D graphics library based on the Open Inventor API
WWW= https://github.com/coin3d
LICENSE= BSD3CLAUSE
BUILD_DEPENDS= boost-libs>0:devel/boost-libs
LIB_DEPENDS= libsimage.so:graphics/simage
USES= gl openal:al libtool pathfix xorg
USE_GITHUB= yes
GH_ACCOUNT= coin3d
GH_PROJECT= coin
USE_GL= gl
USE_XORG= ice sm x11 xext xt
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-pthread=yes --enable-threadsafe \
--enable-3ds-import --enable-sound \
--enable-javascript-api --enable-debug=no
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
pre-configure:
@${REINPLACE_CMD} -e 's|DATA install-data-local|DATA|g' \
${WRKSRC}/Makefile.in
@${FIND} ${WRKSRC} \( -name \*.cpp -o -name \*.h -a \! \
-name expat.h \) -a -print0 | ${XARGS} -0 \
${REINPLACE_CMD} 's/<stdlib.h>/<cstdlib>/g'
post-build:
@${REINPLACE_CMD} -e '/^ldflags=/s|-R|-Wl,-rpath,|' \
${WRKSRC}/coin-default.cfg
.include <bsd.port.mk>