Gentoo Archives: gentoo-commits

From: "Chí-Thanh Christopher Nguyễn" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-qxl/
Date: Sun, 29 May 2016 18:28:07
Message-Id: 1464546487.56c87cf06e4cb1c23349dedf27704ae70a384c3a.chithanh@gentoo
1 commit: 56c87cf06e4cb1c23349dedf27704ae70a384c3a
2 Author: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 29 18:28:07 2016 +0000
4 Commit: Chí-Thanh Christopher Nguyễn <chithanh <AT> gentoo <DOT> org>
5 CommitDate: Sun May 29 18:28:07 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56c87cf0
7
8 x11-drivers/xf86-video-qxl: fix Xspice shebang
9
10 Bug: https://bugs.gentoo.org/show_bug.cgi?id=568868
11
12 Package-Manager: portage-2.2.28
13
14 .../xf86-video-qxl/xf86-video-qxl-0.1.4-r1.ebuild | 34 ++++++++++++++++++++++
15 1 file changed, 34 insertions(+)
16
17 diff --git a/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.4-r1.ebuild b/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.4-r1.ebuild
18 new file mode 100644
19 index 0000000..6dd24ea
20 --- /dev/null
21 +++ b/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.4-r1.ebuild
22 @@ -0,0 +1,34 @@
23 +# Copyright 1999-2016 Gentoo Foundation
24 +# Distributed under the terms of the GNU General Public License v2
25 +# $Id$
26 +
27 +EAPI=5
28 +PYTHON_COMPAT=( python2_7 )
29 +inherit python-single-r1 xorg-2
30 +
31 +DESCRIPTION="QEMU QXL paravirt video driver"
32 +
33 +KEYWORDS="~amd64 ~x86"
34 +IUSE="xspice"
35 +
36 +RDEPEND="xspice? (
37 + app-emulation/spice
38 + ${PYTHON_DEPS}
39 + )
40 + x11-base/xorg-server[-minimal]
41 + >=x11-libs/libdrm-2.4.46"
42 +DEPEND="${RDEPEND}
43 + x11-proto/xf86dgaproto
44 + >=app-emulation/spice-protocol-0.12.0"
45 +
46 +src_prepare() {
47 + python_fix_shebang scripts
48 + xorg-2_src_prepare
49 +}
50 +
51 +src_configure() {
52 + XORG_CONFIGURE_OPTIONS=(
53 + $(use_enable xspice)
54 + )
55 + xorg-2_src_configure
56 +}