mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
2afc0523fc
- Offer to install community map pack (on by default) - Convert one patch file to simple inplace editing
61 lines
1.5 KiB
Makefile
61 lines
1.5 KiB
Makefile
# New ports collection makefile for: Warsow game data
|
|
# Date created: 2006-08-03
|
|
# Whom: Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= data
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://woe.crying-wolves.net/ \
|
|
http://www.derchris.eu/warsow/ \
|
|
http://warsow.hangy.de/ \
|
|
http://static.warsow.net/release/ \
|
|
http://rewq.de/scratch/wsw05/ \
|
|
http://weseo.de/downloads/
|
|
PKGNAMEPREFIX= warsow-
|
|
DISTNAME= ${PKGNAMEPREFIX:S/-//}_${PORTVERSION}_unified
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Warsow data files
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
USE_ZIP= yes
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
DATADIR= ${PREFIX}/share/${PKGNAMEPREFIX:S/-//}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX:S/-//}
|
|
TXTDOCS= bots_navigation.txt changelog.txt contact.txt \
|
|
dedicated_server_quide.txt demoavi.txt democams.txt \
|
|
features.txt huds.txt license.txt mousefilter.txt \
|
|
query_protocols.txt
|
|
PORTDOCS= 0.4_renderer_changes.png ${TXTDOCS}
|
|
|
|
OPTIONS= MAPPACK "Install community map pack" on
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_MAPPACK)
|
|
DISTFILES+= warsow_comunity_map_pack_01${EXTRACT_SUFX}
|
|
PLIST_SUB+= MAPPACK=""
|
|
.else
|
|
PLIST_SUB+= MAPPACK="@comment "
|
|
.endif
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} basewsw ${DATADIR}
|
|
.if defined(WITH_MAPPACK)
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} previews ${DATADIR}
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC}/docs && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|