Per discussion with bapt on helping pkg handle the changing of these deps and avoiding impossible upgrade senarios. PR: 246767 Reviewed by: manu, bapt Approved by: x11 Differential Revision: https://reviews.freebsd.org/D30824
36 lines
712 B
Makefile
36 lines
712 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
|
|
|
|
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>
|