mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
40 lines
931 B
Makefile
40 lines
931 B
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cutemaze
|
|
PORTVERSION= 1.2.4
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://gottcode.org/${PORTNAME}/
|
|
DISTNAME= ${PORTNAME}-${DISTVERSION}-src
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Simple, top-down game in which mazes are randomly generated
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= qmake qt:5 tar:bzip2
|
|
USE_GL= gl
|
|
USE_QT= core gui svg imageformats_run widgets \
|
|
linguisttools_build buildtools_build
|
|
|
|
PORTDOCS= ChangeLog README
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|share/man|man|' \
|
|
${WRKSRC}/cutemaze.pro
|
|
|
|
post-patch-NLS-off:
|
|
@${REINPLACE_CMD} -i '' '/qm.files/,/qm.path/s/^/#/' \
|
|
${WRKSRC}/cutemaze.pro
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|