2f96777455
- Use options helpers - Keep .cfg files - Limit PORTSCOUT
64 lines
1.9 KiB
Makefile
64 lines
1.9 KiB
Makefile
# Created by: alepulver
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jaymod
|
|
PORTVERSION= 2.1.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= games linux
|
|
MASTER_SITES= http://etmod.googlecode.com/files/ \
|
|
http://www.zenenterprises.biz/bud/jaymod/ \
|
|
http://bud.zenenterprises.biz/jaymod/ \
|
|
http://et.lsdfunweb.fr/et/jaymod/
|
|
PKGNAMEPREFIX= linux-enemyterritory-
|
|
|
|
MAINTAINER= bar@FreeBSD.org
|
|
COMMENT= Jaymod - An Enemy Territory Modification
|
|
|
|
RUN_DEPENDS= et:${PORTSDIR}/games/linux-enemyterritory
|
|
|
|
VERSTR= ${PORTVERSION:C/([0-9])\.([0-9])\.([0-9]+)/\1\2\3/}
|
|
PKGNAMESUFFIX= -${VERSTR}
|
|
PLIST_SUB= VERSTR="${VERSTR}"
|
|
|
|
USE_LINUX= yes
|
|
|
|
PORTSCOUT= limit:^2\.1\.7
|
|
|
|
OPTIONS_DEFINE= DOCS OMNIBOT
|
|
OMNIBOT_DESC= Install Omni-Bot 0.660 for bot support
|
|
|
|
DATADIR= ${PREFIX}/lib/enemyterritory/${PORTNAME}-${VERSTR}
|
|
DOCSDIR= ${PREFIX}/share/doc/enemyterritory-${PORTNAME}-${VERSTR}
|
|
|
|
CLIENT_PK3= ${PORTNAME}-${PORTVERSION}.pk3
|
|
PLIST_SUB+= CLIENT_PK3="${CLIENT_PK3}"
|
|
|
|
OB_VERSTR= 0660
|
|
OMNIBOT_RUN_DEPENDS= et-omni-bot-${OB_VERSTR}:${PORTSDIR}/games/linux-enemyterritory-omni-bot-${OB_VERSTR}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-build:
|
|
.for f in et etded
|
|
@(${ECHO_CMD} "#!/bin/sh"; \
|
|
${ECHO_CMD} 'exec ${PREFIX}/bin/${f} +set fs_game ${PORTNAME}-${VERSTR} +set omnibot_path "${DATADIR}/../omni-bot-${OB_VERSTR}" "$$@"') > \
|
|
${WRKSRC}/${f}-${PORTNAME}-${VERSTR}
|
|
.endfor
|
|
|
|
do-install:
|
|
.for f in et etded
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${f}-${PORTNAME}-${VERSTR} ${STAGEDIR}${PREFIX}/bin
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/qagame.mp.i386.so ${STAGEDIR}${DATADIR}
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} ${CLIENT_PK3} ${STAGEDIR}${DATADIR}
|
|
.for f in jaymod.cfg server.cfg
|
|
@${CP} -p ${WRKSRC}/${f} ${STAGEDIR}${DATADIR}/${f}.sample
|
|
.endfor
|
|
@${CP} -r ${WRKSRC}/linux ${WRKSRC}/mapscripts ${STAGEDIR}${DATADIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in README.txt doc/jaymod.pdf
|
|
@cd ${WRKSRC} && ${INSTALL_DATA} ${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|