summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2012-07-25 23:57:32 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2012-07-25 23:57:32 +0000
commita4eceb895bc6bc0278fa3ff48ccd813f3c1c2a27 (patch)
tree7c9d4e0d8b15c52864049c0d00179af20517fa6b /x11-drivers/xf86-video-ati
parentRaise some dependencies. (diff)
downloadgentoo-2-a4eceb895bc6bc0278fa3ff48ccd813f3c1c2a27.tar.gz
gentoo-2-a4eceb895bc6bc0278fa3ff48ccd813f3c1c2a27.tar.bz2
gentoo-2-a4eceb895bc6bc0278fa3ff48ccd813f3c1c2a27.zip
disable XAA to allow building against >=xorg-server-1.12.99.902, bug #428094
(Portage version: 2.2.0_alpha115/cvs/Linux x86_64)
Diffstat (limited to 'x11-drivers/xf86-video-ati')
-rw-r--r--x11-drivers/xf86-video-ati/ChangeLog8
-rw-r--r--x11-drivers/xf86-video-ati/xf86-video-ati-6.14.6-r1.ebuild32
2 files changed, 39 insertions, 1 deletions
diff --git a/x11-drivers/xf86-video-ati/ChangeLog b/x11-drivers/xf86-video-ati/ChangeLog
index fdd7d866c81d..c5c7f8c1a0bf 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-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-ati/ChangeLog,v 1.175 2012/07/12 17:31:31 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-ati/ChangeLog,v 1.176 2012/07/25 23:57:32 chithanh Exp $
+
+*xf86-video-ati-6.14.6-r1 (25 Jul 2012)
+
+ 25 Jul 2012; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ +xf86-video-ati-6.14.6-r1.ebuild, xf86-video-ati-6.14.6.ebuild:
+ disable XAA to allow building against >=xorg-server-1.12.99.902, bug #428094
12 Jul 2012; Brent Baude <ranger@gentoo.org> xf86-video-ati-6.14.4-r1.ebuild:
Marking xf86-video-ati-6.14.4-r1 ppc stable for bug 419473
diff --git a/x11-drivers/xf86-video-ati/xf86-video-ati-6.14.6-r1.ebuild b/x11-drivers/xf86-video-ati/xf86-video-ati-6.14.6-r1.ebuild
new file mode 100644
index 000000000000..3c7142055111
--- /dev/null
+++ b/x11-drivers/xf86-video-ati/xf86-video-ati-6.14.6-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2012 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.14.6-r1.ebuild,v 1.1 2012/07/25 23:57:32 chithanh Exp $
+
+EAPI=4
+
+XORG_DRI=always
+XORG_EAUTORECONF=yes
+inherit xorg-2
+
+DESCRIPTION="ATI video driver"
+
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE=""
+
+RDEPEND=">=x11-libs/libdrm-2.4.36[video_cards_radeon]"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ # disable XAA to allow building against >=xorg-server-1.12.99.902, bug #428094
+ sed -i '/USE_XAA, 1/d' configure.ac || die
+ xorg-2_src_prepare
+}
+
+pkg_setup() {
+ xorg-2_pkg_setup
+ XORG_CONFIGURE_OPTIONS=(
+ --enable-dri
+ --enable-kms
+ --enable-exa
+ )
+}