diff options
author | Harri Nieminen <moikkis@gmail.com> | 2017-01-16 18:37:09 +0200 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2017-01-17 15:16:29 -0800 |
commit | eb45cb2c7545487ca3eb8215ead72c729fdeff44 (patch) | |
tree | 1ef87bfd9d4b5af019055cea63d73b64fa663c42 /x11-drivers | |
parent | x11-drivers/xf86-video-r128: Version bump to 6.10.2. (diff) | |
download | gentoo-eb45cb2c7545487ca3eb8215ead72c729fdeff44.tar.gz gentoo-eb45cb2c7545487ca3eb8215ead72c729fdeff44.tar.bz2 gentoo-eb45cb2c7545487ca3eb8215ead72c729fdeff44.zip |
x11-drivers/xf86-video-qxl: Version bump to 0.1.5.
Fixes building against xorg-server-19
Build tested only
Gentoo bug: 599976
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-video-qxl/Manifest | 1 | ||||
-rw-r--r-- | x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/x11-drivers/xf86-video-qxl/Manifest b/x11-drivers/xf86-video-qxl/Manifest index 0ba41f5003e2..bac499005bed 100644 --- a/x11-drivers/xf86-video-qxl/Manifest +++ b/x11-drivers/xf86-video-qxl/Manifest @@ -1,2 +1,3 @@ DIST xf86-video-qxl-0.1.3.tar.bz2 479196 SHA256 75786637cbfe278de78d52baa5aab217dd29af1b8a1f8b12d0c3c2584b6bc88c SHA512 0826f72725f4220f8ed33f823412662eb3aa3c650987a04f1c82a26b1e85a06b949b2490cffc5357b2272a3c39f481475b92c8cf2ef2e9575cf1d9a1be702b6d WHIRLPOOL c7018dbc7ac3430d205620d8e114e99c2335468babde7f3ae1285020a8ce6b492375501b15cf4699db9ada8dd94c623ecfb59c89e034e116d50e56db4f5a0915 DIST xf86-video-qxl-0.1.4.tar.bz2 487656 SHA256 e57ad22f0b1daf8979e722be0cc38d351bfcc2e41568edc566d2bade5a621105 SHA512 6ce518bb3ee9fce6066b492351c25a4a429edf7eff4ecbe9dc49fe5ee1f1d68586761624d2601f4bb6c4f4ddf7996f2fc8024707501b0de76ab6932bfe82c51d WHIRLPOOL 3dcce31b1cdfda33ca78e66b9c221b27e0073808f956e0c98460fb2979d8dedf84f45f4adbbed6114c26597e5e2bc1d6be4b46fce83d6afdef0be63d2d848549 +DIST xf86-video-qxl-0.1.5.tar.bz2 508266 SHA256 b18682e04503c6326f7bf7190f3ee50a3d4d69758a2a3cc9af102a6b3f114c92 SHA512 7510b2d037b3e978df6063b29e2406f3d1270695a239f29fdaec9b1dc65a30ab10cb959f15eb336f78e93aa708d41c64c5ea43803958feffc64542229605b782 WHIRLPOOL a26536171723e74f086ba9fb244a9a4a148d05a26b21798c20bf83bcca752541ea0f2a92cb91cb9b583e8d2a1d6166974458fddd0c95661abdee15509e8f7b48 diff --git a/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild b/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild new file mode 100644 index 000000000000..b27e1cbe4954 --- /dev/null +++ b/x11-drivers/xf86-video-qxl/xf86-video-qxl-0.1.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 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 +} |