ddae4e92d8
Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
29 lines
795 B
Makefile
29 lines
795 B
Makefile
PORTNAME= assistant
|
|
PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH}
|
|
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
|
|
QT_BINARIES= yes
|
|
|
|
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}
|
|
|
|
# Link in QtHelp port
|
|
_QT5_ADDITIONAL_LINK= help
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${INSTALL_WRKSRC}/images/assistant-128.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/assistant-qt5.png
|
|
|
|
.include <bsd.port.mk>
|