From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RK03G-0000il-Ac for garchives@archives.gentoo.org; Sat, 29 Oct 2011 03:57:46 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF24A21C021; Sat, 29 Oct 2011 03:57:38 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8BFF221C021 for ; Sat, 29 Oct 2011 03:57:38 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C237E641FF for ; Sat, 29 Oct 2011 03:57:37 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id E93FA80042 for ; Sat, 29 Oct 2011 03:57:36 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: Subject: [gentoo-commits] proj/x11:master commit in: media-libs/mesa/ X-VCS-Repository: proj/x11 X-VCS-Files: media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: beb5234f323d6e7f5ee2c0be80734c265f10073a Date: Sat, 29 Oct 2011 03:57:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 8cdff1e7ee991e1b65f9e4e5c460d0d8 commit: beb5234f323d6e7f5ee2c0be80734c265f10073a Author: Matt Turner gmail com> AuthorDate: Sat Oct 29 03:57:06 2011 +0000 Commit: Matt Turner gmail com> CommitDate: Sat Oct 29 03:57:06 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/x11.git;a=3Dc= ommit;h=3Dbeb5234f media-libs/mesa: r300 and r600 classic drivers have been removed --- media-libs/mesa/mesa-9999.ebuild | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999= .ebuild index 751a1d1..efe0511 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -66,6 +66,8 @@ REQUIRED_USE=3D" video_cards_i915? ( classic ) video_cards_r100? ( classic ) video_cards_r200? ( classic ) + video_cards_r300? ( gallium ) + video_cards_r600? ( gallium ) video_cards_vmware? ( gallium ) " =20 @@ -188,13 +190,9 @@ src_configure() { # ATI code driver_enable video_cards_r100 radeon driver_enable video_cards_r200 r200 - driver_enable video_cards_r300 r300 - driver_enable video_cards_r600 r600 if ! use video_cards_r100 && \ - ! use video_cards_r200 && \ - ! use video_cards_r300 && \ - ! use video_cards_r600; then - driver_enable video_cards_radeon radeon r200 r300 r600 + ! use video_cards_r200; then + driver_enable video_cards_radeon radeon r200 fi fi =20