blob: 6ff94129a8de4178be36593f3a697874add18f68 (
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: Timothy Beyer <beyert@cs.ucr.edu>
# $FreeBSD$
PORTNAME= gemrb
PORTVERSION= 0.8.0
CATEGORIES= games emulators
MASTER_SITES= SF/${PORTNAME}/GemRB%20Sources/GemRB%20${PORTVERSION}%20Sources
MAINTAINER= beyert@cs.ucr.edu
COMMENT= GemRB (Game engine made with preRendered Background)
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= png15:${PORTSDIR}/graphics/png \
vorbis:${PORTSDIR}/audio/libvorbis
USES= cmake
USE_SDL= sdl mixer ttf
USE_OPENAL= al alut
USE_LDCONFIG= yes
USE_PYTHON= 2.6+
CFLAGS+= -L${LOCALBASE}/lib -I${LOCALBASE}/include
CMAKE_C_FLAGS= ${CFLAGS}
CMAKE_ARGS= -DDOC_DIR="${DOCSDIR}" -DMAN_DIR="${MAN6PREFIX}/man/man6/" -DDISABLE_WERROR=1 -DINSOURCEBUILD=1
.include <bsd.port.options.mk>
MAN6= gemrb.6
post-patch:
@${REINPLACE_CMD} \
-e '/^ADD_SUBDIRECTORY( VLCPlayer )/d' \
${WRKSRC}/gemrb/plugins/CMakeLists.txt
.if empty(PORT_OPTIONS:MDOCS)
@${REINPLACE_CMD} \
-e '/^INSTALL( FILES README INSTALL COPYING NEWS AUTHORS DESTINATION \$${DOC_DIR} )/d' \
${WRKSRC}/CMakeLists.txt
@${REINPLACE_CMD} \
-e '/^ADD_SUBDIRECTORY( docs )/d' \
${WRKSRC}/gemrb/CMakeLists.txt
@${REINPLACE_CMD} \
-e '/^ADD_SUBDIRECTORY( en )/d' \
${WRKSRC}/gemrb/docs/CMakeLists.txt
.endif
post-install:
@if [ ! -f ${PREFIX}/etc/gemrb.cfg ]; then \
${CP} ${WRKSRC}/gemrb/GemRB.cfg.sample ${PREFIX}/etc/gemrb.cfg; \
fi
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|