freebsd-ports/games/quake2-source/Makefile
Marcus Alves Grando 51bf375bfb Add more master sites
Add SHA256

PR:		89034
Submitted by:	"Alejandro Pulver" <alejandro@varnet.biz> (maintainer)
2005-11-14 21:38:12 +00:00

87 lines
2.2 KiB
Makefile

# New ports collection makefile for: quake2-source
# Date created: 29 Sep 2005
# Whom: Alejandro Pulver <alejandro@varnet.biz>
#
# $FreeBSD$
#
PORTNAME= source
PORTVERSION= 3.21
CATEGORIES= games
MASTER_SITES= http://www.icculus.org/quake2/files/:icc \
ftp://ftp.idsoftware.com/idstuff/quake2/source/:id \
ftp://ftp.fasta.fh-dortmund.de/mirror/idstuff/quake2/source/:id
PKGNAMEPREFIX= quake2-
DISTNAME= quake2-r0.16.2
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:icc
DIST_SUBDIR= quake2lnx
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= alejandro@varnet.biz
COMMENT= Quake II game source
NO_BUILD= yes
OPTIONS= CTF "Install Capture The Flag mod source" off \
ROGUE "Install Ground Zero (Rogue) mission pack source" off \
XATRIX "Install The Reckoning (Xatrix) mission pack source" off
LATEST_LINK= ${PKGNAMEPREFIX}${PORTNAME}
DATADIR= ${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME}
.include <bsd.port.pre.mk>
.if defined(WITH_CTF)
PLIST_SUB+= CTF=""
.else
PLIST_SUB+= CTF="@comment "
.endif
.if defined(WITH_ROGUE)
DISTFILES+= roguesrc320.shar.Z:id
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_rogue_g__local.h \
${FILESDIR}/extra-patch-src_rogue_q__shared.c
ROGUE_OFF= 454
PLIST_SUB+= ROGUE=""
.else
PLIST_SUB+= ROGUE="@comment "
.endif
.if defined(WITH_XATRIX)
DISTFILES+= xatrixsrc320.shar.Z:id
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_xatrix_q__shared.c
XATRIX_OFF= 441
PLIST_SUB+= XATRIX=""
.else
PLIST_SUB+= XATRIX="@comment "
.endif
post-extract:
.for f in rogue xatrix
. if defined(WITH_${f:U})
@${MKDIR} ${WRKSRC}/src/${f}
@(cd ${WRKSRC}/src/${f} && ${GUNZIP_CMD} -c \
${DISTDIR}/${DIST_SUBDIR}/${f}src320.shar.Z > \
${f}src320.shar && \
${TAIL} +${${f:U}_OFF} ${f}src320.shar | ${SH})
. endif
.endfor
pre-install:
@${FIND} -E ${WRKSRC} -type f \
-iregex "(Makefile|.*\.(def|dsp|orig|shar))" -print0 | \
${XARGS} -0 ${RM}
do-install:
@${MKDIR} ${DATADIR}
@${CP} -R ${WRKSRC}/src/game ${DATADIR}
@${INSTALL_DATA} ${FILESDIR}/Makefile.game ${DATADIR}/game/Makefile
.for f in ctf rogue xatrix
. if defined(WITH_${f:U})
@${CP} -R ${WRKSRC}/src/${f} ${DATADIR}
@${INSTALL_DATA} ${FILESDIR}/Makefile.${f} ${DATADIR}/${f}/Makefile
. endif
.endfor
.include <bsd.port.post.mk>