diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-10-16 16:20:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-10-16 16:20:10 +0000 |
commit | 5f1051bc49a15c079deedd6a20895e9194a46e91 (patch) | |
tree | c583a2b5531a51ae520ff7c2791d69b1d23e097c /x11-drivers | |
parent | Version bump #524878 by jospezial. (diff) | |
download | gentoo-2-5f1051bc49a15c079deedd6a20895e9194a46e91.tar.gz gentoo-2-5f1051bc49a15c079deedd6a20895e9194a46e91.tar.bz2 gentoo-2-5f1051bc49a15c079deedd6a20895e9194a46e91.zip |
Version bump #524884 by jospezial. Add missing dependencies #515478 by Patrick Lauer.
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'x11-drivers')
-rw-r--r-- | x11-drivers/xf86-video-ati/ChangeLog | 8 | ||||
-rw-r--r-- | x11-drivers/xf86-video-ati/xf86-video-ati-7.5.0.ebuild | 49 |
2 files changed, 56 insertions, 1 deletions
diff --git a/x11-drivers/xf86-video-ati/ChangeLog b/x11-drivers/xf86-video-ati/ChangeLog index 547eb785b137..dcf42af4b660 100644 --- a/x11-drivers/xf86-video-ati/ChangeLog +++ b/x11-drivers/xf86-video-ati/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-drivers/xf86-video-ati # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-ati/ChangeLog,v 1.216 2014/06/26 10:28:25 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-ati/ChangeLog,v 1.217 2014/10/16 16:20:10 vapier Exp $ + +*xf86-video-ati-7.5.0 (16 Oct 2014) + + 16 Oct 2014; Mike Frysinger <vapier@gentoo.org> +xf86-video-ati-7.5.0.ebuild: + Version bump #524884 by jospezial. Add missing dependencies #515478 by + Patrick Lauer. *xf86-video-ati-7.4.0 (26 Jun 2014) diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-7.5.0.ebuild b/x11-drivers/xf86-video-ati/xf86-video-ati-7.5.0.ebuild new file mode 100644 index 000000000000..8eec1d32c55b --- /dev/null +++ b/x11-drivers/xf86-video-ati/xf86-video-ati-7.5.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-ati/xf86-video-ati-7.5.0.ebuild,v 1.1 2014/10/16 16:20:10 vapier Exp $ + +EAPI=5 + +XORG_DRI=always +inherit linux-info xorg-2 + +DESCRIPTION="ATI video driver" +HOMEPAGE="http://www.x.org/wiki/ati/" + +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="+glamor udev" + +RDEPEND=">=x11-libs/libdrm-2.4.58[video_cards_radeon] + >=x11-libs/libpciaccess-0.8.0 + glamor? ( || ( + x11-base/xorg-server[glamor] + >=x11-libs/glamor-0.6 + ) ) + udev? ( virtual/udev )" +DEPEND="${RDEPEND} + x11-proto/fontsproto + x11-proto/randrproto + x11-proto/renderproto + x11-proto/videoproto + x11-proto/xextproto + x11-proto/xf86driproto + x11-proto/xproto" + +pkg_pretend() { + if use kernel_linux ; then + if kernel_is -ge 3 9; then + CONFIG_CHECK="~!DRM_RADEON_UMS ~!FB_RADEON" + else + CONFIG_CHECK="~DRM_RADEON_KMS ~!FB_RADEON" + fi + fi + check_extra_config +} + +src_configure() { + XORG_CONFIGURE_OPTIONS=( + $(use_enable glamor) + $(use_enable udev) + ) + xorg-2_src_configure +} |