From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-936234-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 9EB6E139694
	for <garchives@archives.gentoo.org>; Sat,  4 Mar 2017 07:23:45 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 0B638E0C37;
	Sat,  4 Mar 2017 07:23:45 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id E2ADEE0C37
	for <gentoo-commits@lists.gentoo.org>; Sat,  4 Mar 2017 07:23:44 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 298E734173D
	for <gentoo-commits@lists.gentoo.org>; Sat,  4 Mar 2017 07:23:44 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 956295BD3
	for <gentoo-commits@lists.gentoo.org>; Sat,  4 Mar 2017 07:23:42 +0000 (UTC)
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" <mattst88@gentoo.org>
Message-ID: <1488612213.fc2569837710e0cc981421473b313d4fae71c326.mattst88@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/
X-VCS-Repository: repo/gentoo
X-VCS-Files: x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild
X-VCS-Directories: x11-libs/libxkbcommon/
X-VCS-Committer: mattst88
X-VCS-Committer-Name: Matt Turner
X-VCS-Revision: fc2569837710e0cc981421473b313d4fae71c326
X-VCS-Branch: master
Date: Sat,  4 Mar 2017 07:23:42 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 6ca184e4-e5b5-40c6-bc86-9534ab737b0c
X-Archives-Hash: a3cd94245a17e852492fb5d05ad98ae0

commit:     fc2569837710e0cc981421473b313d4fae71c326
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  4 07:10:46 2017 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Mar  4 07:23:33 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc256983

x11-libs/libxkbcommon: Depend on xproto and kbproto only for USE=X

Bug: https://bugs.gentoo.org/589598

 x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild b/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild
index e5f42e6ef0d..a8a1cb62faf 100644
--- a/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild
+++ b/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild
@@ -22,9 +22,11 @@ IUSE="X doc test"
 
 DEPEND="sys-devel/bison
 	sys-devel/flex
-	X? ( >=x11-libs/libxcb-1.10[${MULTILIB_USEDEP},xkb] )
-	>=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}]
-	>=x11-proto/kbproto-1.0.6-r1[${MULTILIB_USEDEP}]
+	X? (
+		>=x11-libs/libxcb-1.10[${MULTILIB_USEDEP},xkb]
+		>=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}]
+		>=x11-proto/kbproto-1.0.6-r1[${MULTILIB_USEDEP}]
+	)
 	doc? ( app-doc/doxygen )"
 RDEPEND=""