Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id CDA947A2AA for ; Sat, 8 Apr 2017 18:08:54 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7C61A84DC1; Sat, 8 Apr 2017 18:08:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0C01784DBF for ; Sat, 8 Apr 2017 18:08:54 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id McMxln9ntzFK for ; Sat, 8 Apr 2017 18:08:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 9279184D86 for ; Sat, 8 Apr 2017 18:08:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8C078FBE4; Sat, 8 Apr 2017 18:08:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149167493352760" MIME-Version: 1.0 Date: Sat, 8 Apr 2017 18:08:53 +0000 From: "Taylor R Campbell" Subject: CVS commit: pkgsrc/chat/gajim To: pkgsrc-changes@NetBSD.org Reply-To: riastradh@netbsd.org X-Mailer: log_accum Message-Id: <20170408180853.8C078FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_149167493352760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: riastradh Date: Sat Apr 8 18:08:53 UTC 2017 Modified Files: pkgsrc/chat/gajim: Makefile options.mk Log Message: dbus is optional in gajim. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/chat/gajim/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/chat/gajim/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149167493352760 Content-Disposition: inline Content-Length: 1657 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/gajim/Makefile diff -u pkgsrc/chat/gajim/Makefile:1.33 pkgsrc/chat/gajim/Makefile:1.34 --- pkgsrc/chat/gajim/Makefile:1.33 Sun Feb 12 06:25:07 2017 +++ pkgsrc/chat/gajim/Makefile Sat Apr 8 18:08:53 2017 @@ -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 Index: pkgsrc/chat/gajim/options.mk diff -u pkgsrc/chat/gajim/options.mk:1.8 pkgsrc/chat/gajim/options.mk:1.9 --- pkgsrc/chat/gajim/options.mk:1.8 Sun Jan 1 14:43:25 2017 +++ pkgsrc/chat/gajim/options.mk Sat Apr 8 18:08:53 2017 @@ -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 # .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 --_----------=_149167493352760--