freebsd-ports/games/duke3d-data/Makefile
Alejandro Pulver 8c6a6e03e6 This port installs the data files needed to run Duke Nukem 3D. It either asks
for the original data, or downloads a shareware version based on the selected
options. In the first case you need to have a legitimate copy of the game in
order to obtain the DUKE3D.GRP file.

WWW: http://www.3drealms.com/duke3d/
2006-08-02 20:12:40 +00:00

57 lines
1.2 KiB
Makefile

# New ports collection makefile for: duke3d-data
# Date Created: 2 Aug 2006
# Whom: alepulver
#
# $FreeBSD$
PORTNAME= data
PORTVERSION= 1.0
CATEGORIES= games
MASTER_SITES= ftp://ftp.3drealms.com/share/ \
ftp://ftp.kiarchive.ru/pub/.1/msdos/games/play/3d/ \
ftp.relcom.ru/pub/.1/msdos/games/play/3d/ \
ftp.relcom.ru/pub/.1/msdos/games/play/3d/ \
ftp.lublin.pl/vol/8/planetquake/planetduke/ \
ftp.etsimo.uniovi.es/pub/games/msdos/ \
ftp.uniovi.es/pub/games/msdos/ \
ftp.ziplink.net/users/rhino/ \
ftp.kiae.su/pub/.1/msdos/games/play/3d/
PKGNAMEPREFIX= ${DN3DPKGNAMEPREFIX}
DISTFILES= #
MAINTAINER= alepulver@FreeBSD.org
COMMENT= Duke Nukem 3D Data
USE_ZIP= yes
NO_BUILD= yes
NO_WRKSUBDIR= yes
OPTIONS= SHAREWARE "Install shareware game data version 1.3" off
DATADIR= ${DN3DDIR}
.include "Makefile.include"
.include <bsd.port.pre.mk>
.if defined(WITH_SHAREWARE)
DISTFILES+= 3dduke13.zip
PLIST_SUB+= SHAREWARE=""
post-extract:
@cd ${WRKSRC} && ${UNZIP_CMD} -qo DN3DSW13.SHR
do-install:
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/DUKE3D.GRP ${DATADIR}/duke3d.grp
.else
PLIST_SUB+= SHAREWARE="@comment "
SUB_FILES+= pkg-message
post-install:
@${ECHO_CMD}
@${CAT} ${PKGMESSAGE}
@${ECHO_CMD}
.endif
.include <bsd.port.post.mk>