blob: c05ae0ab69655e8db5e24b6525edbfa456dee2bc (
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
|
# Created by: Jordan DeLong <fracture@allusion.net>
# $FreeBSD$
PORTNAME= prboom-plus
PORTVERSION= 2.5.1.3
PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION}
MAINTAINER= thiagohero501@gmail.com
COMMENT= Fork of the prboom Doom game engine
LICENSE= GPLv2
LIB_DEPENDS= libsmpeg.so:${PORTSDIR}/multimedia/smpeg \
libpng.so:${PORTSDIR}/graphics/png
USES= gmake
USE_SDL= mixer net sdl
NEED_ROOT= yes
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ARGS+=--with-waddir=${DATADIR}
OPTIONS_DEFINE= OPENGL
OPTIONS_DEFAULT=OPENGL
DATADIR= ${DMDIR}
OPENGL_CONFIGURE_ENABLE= gl
OPENGL_USE= GL=yes
post-patch:
@${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} \
-e '/^gamesdir/s|/games|/bin|' \
-e '/^docdir/s/@PACKAGE@-@VERSION@/@PACKAGE@/'
.include "${.CURDIR}/Makefile.include"
.include <bsd.port.mk>
|