20e736bcd5
- Trim master sites, add icon - Trim to use default permissions for licenses, if not defined - Trim dependency for ${PYGAME} - Trim docs, not install COPYING INSTALL into DOCSDIR and mute dir install - Add Desktop entry file - Trim files/patch-Makefile for right installation - Trim pkg-plist, share/games/monsterz --> DATADIR Approved by: wxs (mentor)
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
# Created by: thierry@pompo.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= monsterz
|
|
PORTVERSION= 0.7.1
|
|
PORTREVISION= 6
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://sam.zoy.org/monsterz/ \
|
|
SF/nemysisfreebsdp/:icons
|
|
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
|
${PORTNAME}.png:icons
|
|
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= Monsterz - arcade puzzle game
|
|
|
|
LICENSE= WTFPL
|
|
LICENSE_NAME= Do What The [expletive] You Want To Public License, Version 2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
LICENSE_PERMS= ${_LICENSE_PERMS_DEFAULT}
|
|
|
|
RUN_DEPENDS= ${PYGAME}
|
|
|
|
USE_PYTHON= yes
|
|
MAKE_ENV= prefix=${PREFIX}
|
|
|
|
PORTDOCS= AUTHORS README TODO
|
|
|
|
SCOREDIR= /var/games
|
|
PLIST_SUB= SCOREDIR=${SCOREDIR}
|
|
|
|
DESKTOP_ENTRIES="Monsterz" "${COMMENT}" "${PORTNAME}" \
|
|
"${PORTNAME}" "Game;ArcadeGame;" false
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.for d in graphics sound
|
|
@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${d} ${DATADIR})
|
|
.endfor
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${DATADIR}
|
|
@${PYTHON_CMD} -m compileall ${DATADIR}
|
|
@${PYTHON_CMD} -O -m compileall ${DATADIR}
|
|
${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png ${PREFIX}/share/pixmaps/
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|