blob: 9487b724660cca4205eff82fdb2bdda6d04841d0 (
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
|
# New ports collection makefile for: gemrb
# Date created: 21 Apr 2008
# Whom: Timothy Beyer <beyert@cs.ucr.edu>
#
# $FreeBSD$
#
PORTNAME= gemrb
PORTVERSION= 0.3.1
CATEGORIES= games emulators
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= beyert@cs.ucr.edu
COMMENT= GemRB (Game engine made with preRendered Background)
LIB_DEPENDS= openal.0:${PORTSDIR}/audio/openal \
alut.1:${PORTSDIR}/audio/freealut \
png.5:${PORTSDIR}/graphics/png
GNU_CONFIGURE= yes
CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --libdir=${LOCALBASE}/lib \
--includedir=${LOCALBASE}/include
USE_GMAKE= yes
USE_SDL= sdl
USE_LDCONFIG= yes
USE_PYTHON= 2.4+
MAN1= gemrb.1
post-install:
@if [ ! -f ${PREFIX}/etc/gemrb.cfg ]; then \
${CP} ${PREFIX}/etc/GemRB.cfg.sample ${PREFIX}/etc/gemrb.cfg; \
fi
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|