mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
3e67d040d7
PR: 197522 Submitted by: jbeich Approved by: portmgr
37 lines
866 B
Makefile
37 lines
866 B
Makefile
# Created by: Alejandro Pulver <alejandro@varnet.biz>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= freedoom
|
|
PORTVERSION= 0.7
|
|
CATEGORIES= games
|
|
MASTER_SITES= SAVANNAH/${PORTNAME}/${PORTNAME}-iwad
|
|
PKGNAMEPREFIX= ${DMPKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}-iwad-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Complete Doom-based game IWAD that is Free Software
|
|
|
|
USES= zip
|
|
NO_BUILD= yes
|
|
|
|
DATADIR= ${DMDIR}/${PORTNAME}
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
PLIST_FILES= %%DATADIR%%/doom2.wad
|
|
PLIST_DIRS= %%DATADIR%%
|
|
PORTDOCS= ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doom2.wad ${STAGEDIR}${DATADIR}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include "${.CURDIR}/../doom-data/Makefile.include"
|
|
|
|
.include <bsd.port.mk>
|