diff options
author | danfe <danfe@FreeBSD.org> | 2017-06-02 04:22:18 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2017-06-02 04:22:18 +0800 |
commit | 7358518dcec1fbdf6de5a227fdc00a283a9497e2 (patch) | |
tree | af648ee94a2ed6bd22e8298c147a10cb02438d97 /net-p2p/torrent-file-editor | |
parent | a1f62ece94f8c71722676c3a79b9fea47235d5d3 (diff) | |
download | freebsd-ports-gnome-7358518dcec1fbdf6de5a227fdc00a283a9497e2.tar.gz freebsd-ports-gnome-7358518dcec1fbdf6de5a227fdc00a283a9497e2.tar.zst freebsd-ports-gnome-7358518dcec1fbdf6de5a227fdc00a283a9497e2.zip |
- Add missing `desktop-file-utils' to USES as reported by `stage-qa'
- Allow to optionally inhibit donation text in the About dialog
Diffstat (limited to 'net-p2p/torrent-file-editor')
-rw-r--r-- | net-p2p/torrent-file-editor/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/net-p2p/torrent-file-editor/Makefile b/net-p2p/torrent-file-editor/Makefile index 56eeaf11e5ec..8701ce22e5dd 100644 --- a/net-p2p/torrent-file-editor/Makefile +++ b/net-p2p/torrent-file-editor/Makefile @@ -11,16 +11,21 @@ COMMENT= Qt-based GUI tool for creating and editing .torrent files LICENSE= GPLv3 -USES= cmake +USES= cmake desktop-file-utils _QT4_DEPS= linguisttools_build moc_build qmake_build rcc_build \ uic_build corelib gui _QT5_DEPS= buildtools_build linguisttools_build qmake_build \ core gui widgets -OPTIONS_DEFINE= QT5 +OPTIONS_DEFINE= DONATION QT5 +OPTIONS_DEFAULT= DONATION + +DONATION_DESC= Show donation text in the About dialog QT5_DESC= Build against Qt 5 instead of Qt 4 +DONATION_CMAKE_OFF= -DDISABLE_DONATION:BOOL=ON + QT5_USE= QT5=${_QT5_DEPS:ts,} QT5_USE_OFF= QT4=${_QT4_DEPS:ts,} QT5_LIB_DEPENDS_OFF= libqjson.so:devel/qjson |