x11-drivers/xf86-video-qxl: fix Xspice shebang
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
Sun, 29 May 2016 18:28:07 +0000 (20:28 +0200)
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
Sun, 29 May 2016 18:28:07 +0000 (20:28 +0200)
Bug: https://bugs.gentoo.org/show_bug.cgi?id=568868

Package-Manager: portage-2.2.28

x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.4-r1.ebuild [new file with mode: 0644]

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
new file mode 100644 (file)
index 0000000..6dd24ea
--- /dev/null
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 )
+inherit python-single-r1 xorg-2
+
+DESCRIPTION="QEMU QXL paravirt video driver"
+
+KEYWORDS="~amd64 ~x86"
+IUSE="xspice"
+
+RDEPEND="xspice? (
+               app-emulation/spice
+               ${PYTHON_DEPS}
+       )
+       x11-base/xorg-server[-minimal]
+       >=x11-libs/libdrm-2.4.46"
+DEPEND="${RDEPEND}
+       x11-proto/xf86dgaproto
+       >=app-emulation/spice-protocol-0.12.0"
+
+src_prepare() {
+       python_fix_shebang scripts
+       xorg-2_src_prepare
+}
+
+src_configure() {
+       XORG_CONFIGURE_OPTIONS=(
+               $(use_enable xspice)
+       )
+       xorg-2_src_configure
+}