mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
2167d2404d
Epiphany is a multiplatform clone of Boulderdash. The player must collect all valuable minerals scattered in levels, avoiding being hit by a falling boulder, or (worst) by a bomb. WWW: http://epiphany.sourceforge.net/
43 lines
837 B
Makefile
43 lines
837 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= epiphany
|
|
PORTVERSION= 0.7.0
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-src/${PORTVERSION}
|
|
PKGNAMESUFFIX= -game
|
|
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Multiplatform clone of Boulderdash
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf localbase
|
|
USE_SDL= sdl mixer
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/epiphany-game
|
|
PORTDOCS= AUTHORS README BUGS
|
|
PORTDATA= *
|
|
|
|
DESKTOP_ENTRIES="Epiphany" \
|
|
"" \
|
|
"" \
|
|
"${PORTNAME}-game" \
|
|
"Game;ArcadeGame;" \
|
|
""
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|