mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
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
38 lines
924 B
Makefile
38 lines
924 B
Makefile
# Created by: Kris Moore <kmoore@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= diligent
|
|
PORTVERSION= 0.2.7
|
|
PORTREVISION= 4
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= net-im
|
|
|
|
MAINTAINER= kmoore@FreeBSD.org
|
|
COMMENT= Unofficial Qt Slack client
|
|
|
|
LICENSE= LGPL3
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_QT5= core gui linguist network svg \
|
|
webkit widgets x11extras buildtools_build
|
|
USE_GL= gl
|
|
USES= compiler:c++11-lang qmake
|
|
|
|
QMAKE_ARGS= CONFIG+="configure"
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= trueos
|
|
GH_PROJECT= diligent
|
|
PLIST_FILES= bin/diligent \
|
|
share/applications/diligent.desktop \
|
|
share/icons/diligent.png
|
|
SUB_FILES= diligent.desktop
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/diligent ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKDIR}/${SUB_FILES} ${STAGEDIR}${PREFIX}/share/applications/
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons
|
|
${INSTALL_DATA} ${WRKSRC}/images/png/Slack.png ${STAGEDIR}${PREFIX}/share/icons/diligent.png
|
|
|
|
.include <bsd.port.mk>
|