1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00
freebsd-ports/games/flukz/Makefile
Tobias C. Berner b1a1d38bf9 Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
From now on, ports that depend on Qt4 will have to set
	USES=		qt:4
	USE_QT=		foo bar
ports depending on Qt5 will use
	USES=		qt:5
	USE_QT=		foo bar

PR:		229225
Exp-run by:	antoine
Reviewed by:	mat
Approved by:	portmgr (antoine)
Differential Revision:	→https://reviews.freebsd.org/D15540
2018-06-28 17:39:53 +00:00

32 lines
788 B
Makefile

# $FreeBSD$
PORTNAME= flukz
PORTVERSION= 0.4
CATEGORIES= games
MASTER_SITES= http://download.tuxfamily.org/${PORTNAME}/
DISTNAME= ${PORTNAME}${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Vertically scrolling shoot'em up
USES= qmake qt:4
USE_QT= multimedia network moc_build rcc_build
DESKTOP_ENTRIES= Flukz "" ${PORTNAME} \
${PORTNAME} "Game;ArcadeGame;" true
PLIST_FILES= bin/flukz \
share/pixmaps/flukz.png
post-patch:
${REINPLACE_CMD} 's,flukz_debug,flukz,' ${WRKSRC}/flukz.pro
${REINPLACE_CMD} 's,malloc.h,stdlib.h,' \
${WRKSRC}/src/soundengine/stb_vorbis.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/flukz ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/images/flukz-24x32.png \
${STAGEDIR}${PREFIX}/share/pixmaps/flukz.png
.include <bsd.port.mk>