diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2020-04-02 03:58:13 +0800 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2020-04-02 03:58:13 +0800 |
commit | 2f5f8c95888668229b3b626c311e8803b7b0c0f5 (patch) | |
tree | 6b05545fe75d3d87073a3c95b658618938f18646 /net-im | |
parent | ab0d033bf36cde22fb142c1fd1a45520c77a12f1 (diff) | |
download | freebsd-ports-gnome-2f5f8c95888668229b3b626c311e8803b7b0c0f5.tar.gz freebsd-ports-gnome-2f5f8c95888668229b3b626c311e8803b7b0c0f5.tar.zst freebsd-ports-gnome-2f5f8c95888668229b3b626c311e8803b7b0c0f5.zip |
net-im/qTox: Add the DESKTOP_NOTIFICATIONS option
It uses devel/snorenotify
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/qTox/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/net-im/qTox/Makefile b/net-im/qTox/Makefile index 22e2cafb52ab..c289aaedf4b1 100644 --- a/net-im/qTox/Makefile +++ b/net-im/qTox/Makefile @@ -5,7 +5,7 @@ PORTNAME= qTox DISTVERSIONPREFIX= v DISTVERSION= 1.16.3-784 DISTVERSIONSUFFIX= -g981ecfca -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im net-p2p MAINTAINER= yuri@FreeBSD.org @@ -33,13 +33,18 @@ USE_QT= core gui network xml opengl sql sql-sqlite3_run widgets svg \ CMAKE_ARGS= -DGIT_DESCRIBE:STRING=${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} CMAKE_OFF= USE_CCACHE -OPTIONS_DEFINE= FILTERAUDIO PLATFORM_EXTENSIONS SPELL_CHECK APPINDICATOR GTK_SYSTRAY STATUSNOTIFIER -OPTIONS_DEFAULT= FILTERAUDIO PLATFORM_EXTENSIONS SPELL_CHECK GTK_SYSTRAY STATUSNOTIFIER # removing GTK_SYSTRAY, STATUSNOTIFIER doesn't reduce dependencies -PLATFORM_EXTENSIONS_DESC= Enable platform specific extensions -FILTERAUDIO_DESC= Enable the echo canceling backend +OPTIONS_DEFINE= DESKTOP_NOTIFICATIONS FILTERAUDIO PLATFORM_EXTENSIONS SPELL_CHECK APPINDICATOR GTK_SYSTRAY STATUSNOTIFIER +OPTIONS_DEFAULT= DESKTOP_NOTIFICATIONS FILTERAUDIO PLATFORM_EXTENSIONS SPELL_CHECK GTK_SYSTRAY STATUSNOTIFIER # removing GTK_SYSTRAY, STATUSNOTIFIER doesn't reduce dependencies + +DESKTOP_NOTIFICATIONS_DESC= Use snorenotify for desktop notifications +DESKTOP_NOTIFICATIONS_CMAKE_BOOL= DESKTOP_NOTIFICATIONS +DESKTOP_NOTIFICATIONS_LIB_DEPENDS= libsnore-qt5.so:devel/snorenotify +FILTERAUDIO_DESC= Enable the echo canceling backend FILTERAUDIO_CMAKE_BOOL= USE_FILTERAUDIO FILTERAUDIO_LIB_DEPENDS= libfilteraudio.so:audio/libfilteraudio + +PLATFORM_EXTENSIONS_DESC= Enable platform specific extensions PLATFORM_EXTENSIONS_CMAKE_BOOL= PLATFORM_EXTENSIONS PLATFORM_EXTENSIONS_USES= xorg PLATFORM_EXTENSIONS_USE= XORG=x11,xscrnsaver |