diff options
author | riastradh <riastradh@pkgsrc.org> | 2020-04-28 05:47:10 +0000 |
---|---|---|
committer | riastradh <riastradh@pkgsrc.org> | 2020-04-28 05:47:10 +0000 |
commit | c31f9fb4bb3fea70e536fb0049a253890e740eb6 (patch) | |
tree | 43c6ed7c1e5196592a3b52eb4d27475bd595536e /chat/mumble | |
parent | 9f6dacd78a93981aca5a876cef0a5d5906e718b7 (diff) | |
download | pkgsrc-c31f9fb4bb3fea70e536fb0049a253890e740eb6.tar.gz |
chat/mumble: add dbus option
Diffstat (limited to 'chat/mumble')
-rw-r--r-- | chat/mumble/options.mk | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/chat/mumble/options.mk b/chat/mumble/options.mk index c7e9f75a18d..ae654a13726 100644 --- a/chat/mumble/options.mk +++ b/chat/mumble/options.mk @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.4 2019/10/20 11:10:48 nia Exp $ +# $NetBSD: options.mk,v 1.5 2020/04/28 05:47:10 riastradh Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.mumble -PKG_SUPPORTED_OPTIONS= alsa pulseaudio portaudio -PKG_SUGGESTED_OPTIONS= portaudio +PKG_SUPPORTED_OPTIONS= alsa dbus pulseaudio portaudio +PKG_SUGGESTED_OPTIONS= dbus portaudio PKG_SUGGESTED_OPTIONS.Linux= alsa .include "../../mk/bsd.options.mk" @@ -14,6 +14,13 @@ CONFIG_OPTIONS+= CONFIG+=alsa CONFIG_OPTIONS+= CONFIG+=no-alsa .endif +.if !empty(PKG_OPTIONS:Mdbus) +CONFIG_OPTIONS+= CONFIG+=dbus +#.include "../../x11/qt5-qtdbus/buildlink3.mk" +.else +CONFIG_OPTIONS+= CONFIG+=no-dbus +.endif + .if !empty(PKG_OPTIONS:Mpulseaudio) .include "../../audio/pulseaudio/buildlink3.mk" .else |