Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libxkbcommon/
Date: Sat, 04 Mar 2017 07:23:45
Message-Id: 1488612213.fc2569837710e0cc981421473b313d4fae71c326.mattst88@gentoo
1 commit: fc2569837710e0cc981421473b313d4fae71c326
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 07:10:46 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 07:23:33 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc256983
7
8 x11-libs/libxkbcommon: Depend on xproto and kbproto only for USE=X
9
10 Bug: https://bugs.gentoo.org/589598
11
12 x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild | 8 +++++---
13 1 file changed, 5 insertions(+), 3 deletions(-)
14
15 diff --git a/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild b/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild
16 index e5f42e6ef0d..a8a1cb62faf 100644
17 --- a/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild
18 +++ b/x11-libs/libxkbcommon/libxkbcommon-0.7.1.ebuild
19 @@ -22,9 +22,11 @@ IUSE="X doc test"
20
21 DEPEND="sys-devel/bison
22 sys-devel/flex
23 - X? ( >=x11-libs/libxcb-1.10[${MULTILIB_USEDEP},xkb] )
24 - >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}]
25 - >=x11-proto/kbproto-1.0.6-r1[${MULTILIB_USEDEP}]
26 + X? (
27 + >=x11-libs/libxcb-1.10[${MULTILIB_USEDEP},xkb]
28 + >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}]
29 + >=x11-proto/kbproto-1.0.6-r1[${MULTILIB_USEDEP}]
30 + )
31 doc? ( app-doc/doxygen )"
32 RDEPEND=""