e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
44 lines
992 B
Makefile
44 lines
992 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tiled
|
|
PORTVERSION= 1.0.3
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= graphics editors games
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= General purpose tile map editor
|
|
|
|
LICENSE= BSD2CLAUSE BSD3CLAUSE GPLv2+
|
|
LICENSE_COMB= multi
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= bjorn
|
|
|
|
USES= compiler:c++11-lib desktop-file-utils qmake shared-mime-info
|
|
USE_QT5= core gui widgets opengl network \
|
|
buildtools_build linguisttools_build
|
|
USE_GL= gl
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= PYTHON DOCS
|
|
OPTIONS_DEFAULT=PYTHON
|
|
OPTIONS_SUB= yes
|
|
|
|
PYTHON_DESC= Enable python plugin
|
|
PYTHON_USES= pkgconfig python:2.7
|
|
PYTHON_QMAKE_OFF= DISABLE_PYTHON_PLUGIN=yes
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name "*.pro" -exec ${REINPLACE_CMD} -e 's|share/man|man|' {} \;
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in AUTHORS README.md NEWS.md
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|