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
38 lines
779 B
Makefile
38 lines
779 B
Makefile
PORTNAME= qtfm
|
|
PORTVERSION= 6.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-fm
|
|
|
|
MAINTAINER= jgh@FreeBSD.org
|
|
COMMENT= Small, lightweight file manager based on pure Qt
|
|
WWW= https://qtfm.eu
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libinotify.so:devel/libinotify
|
|
|
|
USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5
|
|
USE_GL= gl
|
|
USE_QT= concurrent core dbus gui widgets \
|
|
buildtools:build qmake:build
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= rodlie
|
|
|
|
QMAKE_ARGS= MANDIR=${PREFIX}/share/man \
|
|
PREFIX=${PREFIX} \
|
|
XDGDIR=${PREFIX}/etc/xdg \
|
|
DOCDIR=${DOCSDIR}
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|docs.path.*|docs.path = $$$${DOCDIR}|' \
|
|
${WRKSRC}/libfm/libfm.pro
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/qtfm
|
|
|
|
.include <bsd.port.mk>
|