aboutsummaryrefslogtreecommitdiff
path: root/games/quake-source/Makefile
blob: 001be80b6238f4473227f78fcfcff91327c9496c (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
# Created by: Alejandro Pulver <alejandro@varnet.biz>

PORTNAME=	source
PORTVERSION=	1.01
PORTREVISION=	1
CATEGORIES=	games
MASTER_SITES=	IDSOFTWARE/source
PKGNAMEPREFIX=	quake-
DISTNAME=	qcc
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Quake game source code

NO_BUILD=	yes
NO_WRKSUBDIR=	yes

OPTIONS_DEFINE=	QUAKEWORLD
OPTIONS_DEFAULT=	QUAKEWORLD

QUAKEWORLD_DESC=	Install QuakeWorld game source

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MQUAKEWORLD}
MASTER_SITES+=	IDSOFTWARE/quakeworld/unix/:qw
DISTFILES+=	qwsv-2.30-glibc-i386-unknown-linux2.0${EXTRACT_SUFX}:qw
COMMENT:=	${COMMENT:S/Quake/& and QuakeWorld/}
PLIST_SUB+=	QUAKEWORLD=""
.else
PLIST_SUB+=	QUAKEWORLD="@comment "
.endif

post-patch:
	@${REINPLACE_CMD} -e 's,^\.\.,.,' ${WRKSRC}/send/v101qc/progs.src
	@${RM} ${WRKSRC}/send/v101qc/progs.src.bak

do-install:
	@${MKDIR} ${STAGEDIR}${DATADIR}
	${CP} -a ${WRKSRC}/send/v101qc ${STAGEDIR}${DATADIR}
.if ${PORT_OPTIONS:MQUAKEWORLD}
	@${MKDIR} ${STAGEDIR}${DATADIR}/qw
.  for f in *.h *.qc *.src
	@${REINPLACE_CMD} -e 's,[[:cntrl:]]*$$,,' ${WRKSRC}/qw/${f}
	${INSTALL_DATA} ${WRKSRC}/qw/${f} ${STAGEDIR}${DATADIR}/qw
.  endfor
.endif

.include "Makefile.include"
.include <bsd.port.mk>