game "Entombed", 1982 U.S. Games. Wikipedia "Entombed (video game)" You and your team of archeologists have fallen into the "catacombs of the zombies". There's no time for research, though; the walls are closing in, and the zombies have sprung to life! Fortunately, you've discovered an ancient mystical potion which allows you to create and destroy walls. Bottles of this potion are strewn about the catacombs. Grab them, and you can break through walls when you get stuck, or create a wall behind you, if you're being chased. The longer you survive, the faster you have to move. WWW: http://www.newbreedsoftware.com/entombed/ PR: ports/170918 Submitted by: nemysis (self) Approved by: wg (mentor)
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= entombed
|
|
PORTVERSION= 2007.07.04
|
|
CATEGORIES= games
|
|
MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/entombed/ \
|
|
ftp://ftp.billsgames.com/unix/x/entombed/ \
|
|
SF/nemysisfreebsdp/${CATEGORIES}/${PORTNAME}/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}.png:icons
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= nemysis@FreeBSD.org
|
|
COMMENT= One- or two-player maze game based on the Entombed
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gmake
|
|
USE_SDL= image mixer sdl
|
|
|
|
PORTDOCS= AUTHORS.txt CHANGES.txt README.txt TODO.txt
|
|
|
|
DESKTOP_ENTRIES="Entombed" "${COMMENT}" "${PORTNAME}" \
|
|
"${PORTNAME}" "Game;ArcadeGame;" false
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|CC=gcc|CC=${CC}|' \
|
|
${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.for d in embedded images images_halfsize music sounds
|
|
@(cd ${WRKSRC}/data && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR})
|
|
.endfor
|
|
|
|
${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|