diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2007-12-24 18:45:01 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2007-12-24 18:45:01 +0000 |
commit | a31832329c82339b4396da7ad233a1dfb408d395 (patch) | |
tree | 0cd56266118f000010b1b389e1dcfd656c00b258 /x11-drivers/xf86-video-ati | |
parent | Marking gtk-engines-qt-0.8 ppc64 for bug 202662 (diff) | |
download | gentoo-2-a31832329c82339b4396da7ad233a1dfb408d395.tar.gz gentoo-2-a31832329c82339b4396da7ad233a1dfb408d395.tar.bz2 gentoo-2-a31832329c82339b4396da7ad233a1dfb408d395.zip |
Bump to new release candidate. Highlights from upstream: Improved PLL handling; better support for laptop lids; faster randr rotation with EXA using r1xx/r2xx; improved Mac support; fix rotated cursor problem; other bug fixes.
(Portage version: 2.1.4_rc9)
Diffstat (limited to 'x11-drivers/xf86-video-ati')
-rw-r--r-- | x11-drivers/xf86-video-ati/ChangeLog | 11 | ||||
-rw-r--r-- | x11-drivers/xf86-video-ati/files/digest-xf86-video-ati-6.7.197 | 6 | ||||
-rw-r--r-- | x11-drivers/xf86-video-ati/xf86-video-ati-6.7.197.ebuild | 35 |
3 files changed, 51 insertions, 1 deletions
diff --git a/x11-drivers/xf86-video-ati/ChangeLog b/x11-drivers/xf86-video-ati/ChangeLog index 4552ce434e7a..1077918d18c5 100644 --- a/x11-drivers/xf86-video-ati/ChangeLog +++ b/x11-drivers/xf86-video-ati/ChangeLog @@ -1,6 +1,15 @@ # ChangeLog for x11-drivers/xf86-video-ati # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-ati/ChangeLog,v 1.56 2007/11/16 16:28:00 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-ati/ChangeLog,v 1.57 2007/12/24 18:45:00 dberkholz Exp $ + +*xf86-video-ati-6.7.197 (24 Dec 2007) + + 24 Dec 2007; Donnie Berkholz <dberkholz@gentoo.org>; + +xf86-video-ati-6.7.197.ebuild: + Bump to new release candidate. Highlights from upstream: Improved PLL + handling; better support for laptop lids; faster randr rotation with EXA + using r1xx/r2xx; improved Mac support; fix rotated cursor problem; other bug + fixes. *xf86-video-ati-6.7.196-r1 (16 Nov 2007) diff --git a/x11-drivers/xf86-video-ati/files/digest-xf86-video-ati-6.7.197 b/x11-drivers/xf86-video-ati/files/digest-xf86-video-ati-6.7.197 new file mode 100644 index 000000000000..0df3a3958859 --- /dev/null +++ b/x11-drivers/xf86-video-ati/files/digest-xf86-video-ati-6.7.197 @@ -0,0 +1,6 @@ +MD5 56566e8c3fb4bb99791d1788d0a9a1a8 x11-driver-patches-4.tar.bz2 346 +RMD160 fcbd405de080d07612d46f455b927035fd8123a8 x11-driver-patches-4.tar.bz2 346 +SHA256 07069bbd072f2def50e83801a8f2a41a4c96495104f15cd6f56f7df7f89769bf x11-driver-patches-4.tar.bz2 346 +MD5 7bd53945ce6d0b48b7fd558039e82aa2 xf86-video-ati-6.7.197.tar.bz2 750653 +RMD160 8852b45803d3c6ef4e29e737507dbbaa8697e06c xf86-video-ati-6.7.197.tar.bz2 750653 +SHA256 b6c67996cfdbbf9b3a191b9092f5d515dd7fae564544626792dd5ef404e29134 xf86-video-ati-6.7.197.tar.bz2 750653 diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-6.7.197.ebuild b/x11-drivers/xf86-video-ati/xf86-video-ati-6.7.197.ebuild new file mode 100644 index 000000000000..91316a7d9fc2 --- /dev/null +++ b/x11-drivers/xf86-video-ati/xf86-video-ati-6.7.197.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2007 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-6.7.197.ebuild,v 1.1 2007/12/24 18:45:00 dberkholz Exp $ + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" +XDPVER=4 + +inherit x-modular + +DESCRIPTION="ATI video driver" + +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="dri" + +RDEPEND=">=x11-base/xorg-server-1.2" +DEPEND="${RDEPEND} + x11-proto/fontsproto + x11-proto/randrproto + x11-proto/videoproto + x11-proto/xextproto + x11-proto/xineramaproto + x11-proto/xf86miscproto + x11-proto/xproto + dri? ( x11-proto/glproto + x11-proto/xf86driproto + >=x11-libs/libdrm-2 )" + +CONFIGURE_OPTIONS="$(use_enable dri)" + +pkg_setup() { + if use dri && ! built_with_use x11-base/xorg-server dri; then + die "Build x11-base/xorg-server with USE=dri." + fi +} |