da3162c7c9
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
34 lines
855 B
Makefile
34 lines
855 B
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
|
|
PORTNAME= tanglet
|
|
PORTVERSION= 1.6.0
|
|
DISTVERSIONSUFFIX= -src
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://gottcode.org/tanglet/
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Single player word finding game based on Boggle
|
|
|
|
LICENSE= GPLv3+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-or-later.txt
|
|
|
|
USES= compiler:c++11-lib desktop-file-utils gl pkgconfig qmake \
|
|
qt:5 shared-mime-info tar:bzip2
|
|
USE_GL= gl
|
|
USE_QT= buildtools_build linguisttools_build core gui widgets
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/src/src.pro
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} CREDITS ChangeLog README \
|
|
${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|