diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-08-31 12:33:46 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2017-08-31 12:33:46 +0000 |
commit | 2167d2404d5b73a25fd469263ad9c0cb63a723ef (patch) | |
tree | 5c7ab4e066b0d9095fe351419c21b95113af76a1 /games/epiphany-game/Makefile | |
parent | 21daf61475caf162a2793f0340f061379651b473 (diff) |
Notes
Diffstat (limited to 'games/epiphany-game/Makefile')
-rw-r--r-- | games/epiphany-game/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/games/epiphany-game/Makefile b/games/epiphany-game/Makefile new file mode 100644 index 000000000000..21c3756b8422 --- /dev/null +++ b/games/epiphany-game/Makefile @@ -0,0 +1,42 @@ +# 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> |