mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
28 lines
741 B
Makefile
28 lines
741 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= assistant
|
|
DISTVERSION= ${QT5_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
PKGNAMEPREFIX= qt5-
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Qt 5 documentation browser
|
|
|
|
USES= compiler:c++11-lang qmake qt-dist:5,tools
|
|
USE_QT= core gui help network printsupport sql widgets \
|
|
buildtools_build sql-sqlite3_run
|
|
|
|
DESKTOP_ENTRIES="Qt 5 Assistant" "" \
|
|
"${PREFIX}/share/pixmaps/assistant-qt5.png" \
|
|
"${PREFIX}/${QT_BINDIR_REL}/assistant" \
|
|
"Development;Qt;" true
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME}
|
|
INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME}
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${INSTALL_WRKSRC}/images/assistant-128.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/assistant-qt5.png
|
|
|
|
.include <bsd.port.mk>
|