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-drivers/xf86-video-intel/
Date: Sat, 04 Mar 2017 06:49:42
Message-Id: 1488610169.c60a8ab5dc2f29d766d5ba98bd6268950b2a5c9f.mattst88@gentoo
1 commit: c60a8ab5dc2f29d766d5ba98bd6268950b2a5c9f
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 06:35:45 2017 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 06:49:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c60a8ab5
7
8 x11-drivers/xf86-video-intel: Add a USE=tools flag.
9
10 Bug: https://bugs.gentoo.org/584866
11
12 x11-drivers/xf86-video-intel/metadata.xml | 1 +
13 .../xf86-video-intel-2.99.917_p20170216.ebuild | 14 +++++++++++++-
14 2 files changed, 14 insertions(+), 1 deletion(-)
15
16 diff --git a/x11-drivers/xf86-video-intel/metadata.xml b/x11-drivers/xf86-video-intel/metadata.xml
17 index 0deb4bd3c1b..ba66807bf03 100644
18 --- a/x11-drivers/xf86-video-intel/metadata.xml
19 +++ b/x11-drivers/xf86-video-intel/metadata.xml
20 @@ -9,6 +9,7 @@
21 <flag name="dri3" restrict="&lt;=x11-drivers/xf86-video-intel-2.99.917_p20160621">Enable DRI3 support</flag>
22 <flag name="dri3">Use DRI3 by default</flag>
23 <flag name="sna">Enable SandyBridge's New Acceleration (useful on all chipsets, not just SandyBridge)</flag>
24 + <flag name="tools">Build the intel-virtual-output tool</flag>
25 <flag name="uxa">Enable UMA Acceleration Architecture</flag>
26 <flag name="xvmc">Enables X-Video Motion Compensation support</flag>
27 </use>
28
29 diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20170216.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20170216.ebuild
30 index c5b6ccb86c7..2a3ba759a68 100644
31 --- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20170216.ebuild
32 +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20170216.ebuild
33 @@ -10,7 +10,7 @@ inherit linux-info xorg-2 flag-o-matic
34 DESCRIPTION="X.Org driver for Intel cards"
35
36 KEYWORDS="~amd64 ~x86 ~amd64-fbsd -x86-fbsd"
37 -IUSE="debug dri3 +sna +udev uxa xvmc"
38 +IUSE="debug dri3 +sna tools +udev uxa xvmc"
39 COMMIT_ID="860c3664fe79c1fe92095ff345068f1fc7e4e651"
40 SRC_URI="https://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/${COMMIT_ID}.tar.xz -> ${P}.tar.xz"
41
42 @@ -31,6 +31,17 @@ RDEPEND="
43 sna? (
44 >=x11-base/xorg-server-1.10
45 )
46 + tools? (
47 + x11-libs/libX11
48 + x11-libs/libxcb
49 + x11-libs/libXcursor
50 + x11-libs/libXdamage
51 + x11-libs/libXinerama
52 + x11-libs/libXrandr
53 + x11-libs/libXrender
54 + x11-libs/libxshmfence
55 + x11-libs/libXtst
56 + )
57 udev? (
58 virtual/udev
59 )
60 @@ -54,6 +65,7 @@ src_configure() {
61 $(use_enable dri dri3)
62 $(usex dri3 "--with-default-dri=3")
63 $(use_enable sna)
64 + $(use_enable tools)
65 $(use_enable udev)
66 $(use_enable uxa)
67 $(use_enable xvmc)