mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
35 lines
846 B
Makefile
35 lines
846 B
Makefile
# Created by: Patrick Li <pat@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ut
|
|
PORTVERSION= 3.7
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://bigfoot.morphos-team.net/misc/Quake3Mods/
|
|
PKGNAMEPREFIX= ${Q3PKGNAMEPREFIX}
|
|
DISTNAME= UrbanTerror${PORTVERSION:S/.//}_full
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Quake III Arena mod: Urban Terror
|
|
|
|
NO_PACKAGE= package will be 445MB, set FORCE_PACKAGE if you really want it
|
|
|
|
USES= gmake zip
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
DATADIR= ${Q3DIR}/${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include "${.CURDIR}/../quake3-data/Makefile.include"
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} *.pk3 description.txt \
|
|
${STAGEDIR}${DATADIR})
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} beta3.html radio_commands.txt \
|
|
readme*.txt ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|