1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
freebsd-ports/games/cave9/Makefile
Dmitry Marakasov ad9fb2545e cave9 is a gravity cave-exploration game.
Use only two buttons to activate the thrust jets of your ship in
this first-person 3D version of the classic SF-Cave game.

WWW: http://code.google.com/p/cave9/
2008-09-23 19:17:21 +00:00

45 lines
909 B
Makefile

# New ports collection makefile for: cave9
# Date created: 17 Sep 2008
# Whom: Dmitry Marakasov <amdmi3@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= cave9
PORTVERSION= 0.3
CATEGORIES= games
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
DISTNAME= ${PORTNAME}_src-${PORTVERSION}
DISTFILES= ${DISTNAME}.tgz \
${PORTNAME}_data-${DATAVER}.tgz
MAINTAINER= amdmi3@FreeBSD.org
COMMENT= Gravity cave-exploration game
DATAVER= 4
USE_GMAKE= yes
USE_SDL= sdl ttf image
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
BUILD_WRKSRC= ${WRKSRC}/src
MAKEFILE= GNUmakefile
CFLAGS+= -DDATADIR=\\\"${DATADIR}\\\"
PORTDOCS= *
post-extract:
@${MV} ${WRKDIR}/data ${WRKSRC}/
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/cave9 ${PREFIX}/bin
${MKDIR} ${DATADIR}
${INSTALL_DATA} ${WRKSRC}/data/* ${DATADIR}/
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}
.endif
.include <bsd.port.mk>