summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authorriastradh <riastradh>2017-04-08 18:08:53 +0000
committerriastradh <riastradh>2017-04-08 18:08:53 +0000
commit35a8b3172360bd848e0b975ba44b49eea2ace758 (patch)
treea562440a8084ff8edab8becf05da2cc349e1c66d /chat
parent1fbdb3074f25eb5ee37c76ff7fbbc5e527b5870e (diff)
downloadpkgsrc-35a8b3172360bd848e0b975ba44b49eea2ace758.tar.gz
dbus is optional in gajim.
Diffstat (limited to 'chat')
-rw-r--r--chat/gajim/Makefile3
-rw-r--r--chat/gajim/options.mk11
2 files changed, 9 insertions, 5 deletions
diff --git a/chat/gajim/Makefile b/chat/gajim/Makefile
index 030b10518f3..a25a2cea9e4 100644
--- a/chat/gajim/Makefile
+++ b/chat/gajim/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.33 2017/02/12 06:25:07 ryoon Exp $
+# $NetBSD: Makefile,v 1.34 2017/04/08 18:08:53 riastradh Exp $
DISTNAME= gajim-0.15
PKGREVISION= 16
@@ -12,7 +12,6 @@ COMMENT= Jabber client written in PyGTK
LICENSE= gnu-gpl-v3
DEPENDS= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
-DEPENDS= ${PYPKGPREFIX}-dbus>=0.81:../../sysutils/py-dbus
DEPENDS= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # py-gtk2
diff --git a/chat/gajim/options.mk b/chat/gajim/options.mk
index 39d14cade22..759c6ed91ad 100644
--- a/chat/gajim/options.mk
+++ b/chat/gajim/options.mk
@@ -1,8 +1,8 @@
-# $NetBSD: options.mk,v 1.8 2017/01/01 14:43:25 wiz Exp $
+# $NetBSD: options.mk,v 1.9 2017/04/08 18:08:53 riastradh Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gajim
-PKG_SUPPORTED_OPTIONS= avahi gnome gnome-keyring ssl
-PKG_SUGGESTED_OPTIONS= ssl
+PKG_SUPPORTED_OPTIONS= avahi dbus gnome gnome-keyring ssl
+PKG_SUGGESTED_OPTIONS= dbus ssl
.include "../../mk/bsd.options.mk"
@@ -27,3 +27,8 @@ PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # py-ORBit via py-gnome2
.if !empty(PKG_OPTIONS:Mgnome-keyring)
DEPENDS+= ${PYPKGPREFIX}-gnome2-desktop-[0-9]*:../../x11/py-gnome2-desktop
.endif
+
+# dbus
+.if !empty(PKG_OPTIONS:Mdbus)
+DEPENDS= ${PYPKGPREFIX}-dbus>=0.81:../../sysutils/py-dbus
+.endif