Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
37 lines
761 B
Makefile
37 lines
761 B
Makefile
PORTNAME= bubble-chains
|
|
PORTVERSION= 0.2.0
|
|
DISTVERSIONPREFIX= V
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Free crossplatform 2D arcade-puzzle game
|
|
WWW= https://github.com/ArsMasiuk/bubble-chains
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ArsMasiuk
|
|
|
|
USES= qmake qt:5 xorg
|
|
USE_QT= core gui widgets xml opengl multimedia x11extras \
|
|
qmake:build buildtools:build
|
|
USE_XORG= x11 xrandr
|
|
|
|
QMAKE_ARGS= DATADIR="${DATADIR}"
|
|
|
|
PORTDOCS= README
|
|
PORTDATA= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \
|
|
${WRKSRC}/main.cpp
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|