freebsd-ports/games/linux-etqw-demo-server/Makefile
Mathieu Arnold 60d1a83c2a MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
2015-05-14 10:15:04 +00:00

62 lines
1.6 KiB
Makefile

# Created by: ayu <ayunyan@gmail.com>
# $FreeBSD$
PORTNAME= etqw
PORTVERSION= 2.0.r1
CATEGORIES= games linux
MASTER_SITES= IDSOFTWARE/etqw
PKGNAMEPREFIX= linux-
PKGNAMESUFFIX= -demo-server
DISTNAME= ETQW-demo2-server-full.r1.x86
EXTRACT_SUFX= .run
MAINTAINER= ports@FreeBSD.org
COMMENT= Enemy Territory: QUAKE Wars Demo Server for Linux
NO_CDROM= Redistribution is limited
MANUAL_PACKAGE_BUILD= huge (428MB)
NO_BUILD= yes
ONLY_FOR_ARCHS= i386 amd64
USE_LINUX= yes
USES= zip:infozip
ETQWDIR= ${PREFIX}/lib/${PORTNAME}${PKGNAMESUFFIX}
OPTIONS_DEFINE= DOCS
do-extract:
@${MKDIR} ${WRKSRC}
@cd ${WRKSRC} && \
${TAIL} -c +194885 ${_DISTDIR}${DISTNAME}.run > full.zip
@(cd ${WRKSRC} && ${UNZIP_CMD} -q ${WRKSRC}/full.zip)
@${RM} ${WRKSRC}/full.zip
post-patch:
@${SED} -e 's|@ETQWDIR@|${ETQWDIR}|' ${FILESDIR}/etqwded-demo.in > ${WRKSRC}/etqwded-demo
do-install:
@${MKDIR} ${STAGEDIR}${ETQWDIR}
${INSTALL_PROGRAM} ${WRKSRC}/etqwded-demo ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/data/etqwded.x86 ${STAGEDIR}${ETQWDIR}
@cd ${WRKSRC}/data && \
${FIND} -E . -type f -iregex ".*\.so\.[0-9]+" \
-exec ${INSTALL_DATA} "{}" "${STAGEDIR}${ETQWDIR}/{}" \;
@${MKDIR} ${STAGEDIR}${ETQWDIR}/base/bots
@cd ${WRKSRC}/data && \
${FIND} base -type f \
-exec ${INSTALL_DATA} "{}" "${STAGEDIR}${ETQWDIR}/{}" \;
@${MKDIR} ${STAGEDIR}${ETQWDIR}/pb/htm
@cd ${WRKSRC}/data && \
${FIND} pb -type f \
-exec ${INSTALL_DATA} "{}" "${STAGEDIR}${ETQWDIR}/{}" \;
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for FILE in EULA.txt README.txt copyrights.txt etqwtv.txt pb/PBEULA.txt
@${INSTALL_DATA} ${WRKSRC}/data/${FILE} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>