1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00
freebsd-ports/games/twitch/Makefile
Rusmir Dusko 763b4b8c4a - Bump PORTREVISION for pkg-plist change
- Change master sites, add icon
- Transfer maintainership to games@ team
- Add license (GPLv2)
- Add DOCS and Option
- Use files/twitch.in instead of construct
- Add pkg-message, information about usage
- Add Desktop entry file
- Fix the usage of 'python' to get rid of the implicit
  lang/python dependency, add REINPLACE, fix deprecated code
- Simplify installation handling
- Recreate pkg-plist with make makeplist
2014-04-14 21:56:12 +00:00

57 lines
1.5 KiB
Makefile

# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= twitch
PORTVERSION= 1.0
PORTREVISION= 9
CATEGORIES= games
MASTER_SITES= SF/${PORTNAME}/Twitch/${PORTVERSION}/ \
SF/nemysisfreebsdp/${CATEGORIES}/:icons
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
${PORTNAME}.png:icons
EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
MAINTAINER= games@FreeBSD.org
COMMENT= Overhead 2-d shooter, reminiscent of games like Robotron
LICENSE= GPLv2
RUN_DEPENDS= ${PYGAME}
USE_PYTHON= yes
PORTDOCS= AUTHORS BUGS README
OPTIONS_DEFINE= DOCS
SUB_FILES= ${PORTNAME} pkg-message
DESKTOP_ENTRIES="Twitch" "" "${PORTNAME}" \
"${PORTNAME}" "Game;ActionGame;" ""
post-patch:
@${REINPLACE_CMD} -e 's|^.*#!.*python.*$$|#!${PYTHON_CMD}|; \
s|whrandom|random|' \
${WRKSRC}/${PORTNAME}.py
@(cd ${WRKSRC} && ${RM} *.py.bak)
do-build:
@${PYTHON_CMD} -m compileall ${WRKSRC}
@${PYTHON_CMD} -O -m compileall ${WRKSRC}
do-install:
@${REINPLACE_CMD} -e 's|%%PYTHON_CMD%%|${PYTHON_CMD}|' \
${WRKDIR}/${PORTNAME}
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
@(cd ${WRKSRC} && ${COPYTREE_SHARE} "images levels sound" \
${STAGEDIR}${DATADIR})
.for f in *.py *.pyc *.pyo
${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${DATADIR}
.endfor
${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \
${STAGEDIR}${PREFIX}/share/pixmaps/
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>