mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
83 lines
2.3 KiB
Makefile
83 lines
2.3 KiB
Makefile
# Created by: Alejandro Pulver <alepulver@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= 3zb2
|
|
PORTVERSION= 0.97
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.angelfire.com/mt2/quakebots/:prog \
|
|
http://ponpoko.tri6.net/3zb2/routes/:routes
|
|
PKGNAMEPREFIX= ${Q2PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME:tu}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:prog \
|
|
${PORTNAME}src${PORTVERSION:S/0.//}${EXTRACT_SUFX}:prog
|
|
DIST_SUBDIR= ${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= 3rd Zigock II bots for Quake II
|
|
|
|
USES= dos2unix zip
|
|
DOS2UNIX_FILES= *.[ch]
|
|
NO_WRKSUBDIR= yes
|
|
SUB_FILES= pkg-message
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${LATEST_LINK}
|
|
|
|
OPTIONS_DEFINE= ROUTES DOCS
|
|
OPTIONS_DEFAULT= ROUTES
|
|
|
|
ROUTES_DESC= Install routes for DM and CTF maps (recommended)
|
|
|
|
NO_STAGE= yes
|
|
.include "${.CURDIR}/../quake2-data/Makefile.include"
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MROUTES}
|
|
ROUTES= base_pk chflm2130_pk chfxmap0109_pk citycl_pk cmbbstr_pk \
|
|
cxdmx_pk cxxdmx_pk dm64_pk fact_pk hangar_pk ikdmx_pk \
|
|
ikdmx_pk2 jail_pk q2dmx_pk retinal_pk spasmox_pk trdmx_pk \
|
|
trpower_pk verm0x_pk ware_pk waste_pk xatrixmap_pk1 \
|
|
xatrixmap_pk2 xatrixmap_pk3 xatrixmap_pk4 xdm3 xdmx_pk \
|
|
xldmx_pk ztn2dmx_pk
|
|
|
|
.for f in ${ROUTES}
|
|
DISTFILES+= ${f}${EXTRACT_SUFX}:routes
|
|
.endfor
|
|
PLIST_SUB+= ROUTES=""
|
|
.else
|
|
PLIST_SUB+= ROUTES="@comment "
|
|
.endif
|
|
|
|
post-extract:
|
|
# Rename files and directories to lower case
|
|
@cd ${WRKSRC}; for f in *; do \
|
|
${MV} $${f} `${ECHO_CMD} $${f} | ${TR} '[:upper:]' '[:lower:]'`; \
|
|
done
|
|
@${CP} ${FILESDIR}/${MAKEFILE} ${WRKSRC}
|
|
|
|
do-install:
|
|
.for f in chctf chdtm
|
|
@${MKDIR} ${Q2DIR}/${PORTNAME}/${f}
|
|
${INSTALL_DATA} ${WRKSRC}/3zb2/${f}/* ${Q2DIR}/${PORTNAME}/${f}
|
|
.endfor
|
|
${INSTALL_PROGRAM} ${WRKSRC}/game.so ${Q2DIR}/${PORTNAME}
|
|
cd ${WRKSRC}/3zb2 && ${INSTALL_DATA} *.cfg 3ZBMaps.lst pak6.pak \
|
|
${Q2DIR}/${PORTNAME}
|
|
.if ${PORT_OPTIONS:MROUTES}
|
|
${INSTALL_DATA} ${WRKSRC}/*.chn ${Q2DIR}/${PORTNAME}/chdtm
|
|
${INSTALL_DATA} ${WRKSRC}/*.chf ${Q2DIR}/${PORTNAME}/chctf
|
|
.endif
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC}/3zb2 && ${CP} -a *.txt "User Guide" ${DOCSDIR}
|
|
@${FIND} ${DOCSDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} ${BINMODE}
|
|
@${FIND} ${DOCSDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
|
.endif
|
|
|
|
post-install:
|
|
@${ECHO_CMD}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO_CMD}
|
|
|
|
.include <bsd.port.mk>
|