2005-11-17 10:35:03 +00:00
|
|
|
# New ports collection makefile for: quake3
|
2005-11-21 16:42:59 +00:00
|
|
|
# Date created: 23 August 2005
|
|
|
|
# Whom: pypt
|
2005-11-17 10:35:03 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= quake3
|
|
|
|
PORTVERSION= 1.32b
|
2005-11-28 12:04:12 +00:00
|
|
|
PORTREVISION= 3
|
2005-11-17 10:35:03 +00:00
|
|
|
CATEGORIES= games
|
2005-11-21 16:42:59 +00:00
|
|
|
MASTER_SITES= ftp://ftp.idsoftware.com/idstuff/source/ \
|
|
|
|
http://www.proarena.com/p/ftpx/x8524/quake_3_arena/ \
|
|
|
|
http://www.planetgargoyle.com/ \
|
|
|
|
http://www.teamdarkside.net/ \
|
|
|
|
http://0day.icculus.org/mirrors/quake3/ \
|
|
|
|
http://www.olpainless.net/files/
|
2005-11-22 05:20:37 +00:00
|
|
|
DISTFILES= ${DISTNAME}-source${EXTRACT_SUFX}
|
2005-11-17 10:35:03 +00:00
|
|
|
|
|
|
|
MAINTAINER= shirshegsm@gmail.com
|
|
|
|
COMMENT= Quake III Arena -- first person shooter (native build)
|
|
|
|
|
2005-11-22 05:20:37 +00:00
|
|
|
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
2005-11-17 10:35:03 +00:00
|
|
|
|
2005-11-22 05:20:37 +00:00
|
|
|
USE_ZIP= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
USE_PERL5_BUILD=yes
|
|
|
|
USE_GL= yes
|
2005-11-23 12:00:47 +00:00
|
|
|
USE_GCC= 3.2+
|
2005-11-17 10:35:03 +00:00
|
|
|
|
2005-11-22 05:20:37 +00:00
|
|
|
PLIST_FILES= bin/q3ded bin/quake3
|
2005-11-17 10:35:03 +00:00
|
|
|
|
2005-11-23 12:00:47 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${PERL_LEVEL} < 500600
|
|
|
|
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5
|
|
|
|
.endif
|
|
|
|
|
2005-11-17 10:35:03 +00:00
|
|
|
post-patch:
|
2005-11-22 05:20:37 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|%%Q3DIR%%|"${Q3DIR}"|' \
|
|
|
|
${WRKSRC}/code/unix/unix_shared.c
|
2005-11-17 10:35:03 +00:00
|
|
|
|
|
|
|
pre-build:
|
2005-11-22 05:20:37 +00:00
|
|
|
${MKDIR} ${WRKSRC}/lcc/build
|
2005-11-17 10:35:03 +00:00
|
|
|
|
|
|
|
do-build:
|
2005-11-23 12:00:47 +00:00
|
|
|
cd ${WRKSRC}/code && ${MAKE_ENV} ${PERL} unix/cons
|
2005-11-17 10:35:03 +00:00
|
|
|
|
|
|
|
do-install:
|
2005-11-22 05:20:37 +00:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/code/install/linuxq3ded \
|
|
|
|
${PREFIX}/bin/q3ded
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/code/install/linuxquake3 \
|
|
|
|
${PREFIX}/bin/quake3
|
2005-11-17 10:35:03 +00:00
|
|
|
|
2005-11-22 05:20:37 +00:00
|
|
|
.include "${.CURDIR}/../quake3-data/Makefile.include"
|
2005-11-23 12:00:47 +00:00
|
|
|
.include <bsd.port.post.mk>
|