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 1QCWIV-00034v-1O for garchives@archives.gentoo.org; Wed, 20 Apr 2011 12:14:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FFB71C019; Wed, 20 Apr 2011 12:14:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 592581C019 for ; Wed, 20 Apr 2011 12:14:10 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8F421B403A for ; Wed, 20 Apr 2011 12:14:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0D0EB80234 for ; Wed, 20 Apr 2011 12:14:09 +0000 (UTC) From: "Tomas Chvatal" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tomas Chvatal" 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: scarabeus X-VCS-Committer-Name: Tomas Chvatal X-VCS-Revision: afdc57526be09b59a49adf20c8f4c4219a6e087e Date: Wed, 20 Apr 2011 12:14:09 +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: 0196c6fd01b53a2dbdece71a5884f6b7 commit: afdc57526be09b59a49adf20c8f4c4219a6e087e Author: Tomas Chvatal gentoo org> AuthorDate: Wed Apr 20 12:14:02 2011 +0000 Commit: Tomas Chvatal gentoo org> CommitDate: Wed Apr 20 12:14:02 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/x11.git;a=3Dc= ommit;h=3Dafdc5752 [media-libs/mesa] Migrate to git-2 eclass. Update radeon to match trunk c= onfigure.ac --- media-libs/mesa/mesa-9999.ebuild | 13 ++++++------- 1 files changed, 6 insertions(+), 7 deletions(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999= .ebuild index 7ad6f2e..be7f604 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -7,7 +7,7 @@ EAPI=3D3 EGIT_REPO_URI=3D"git://anongit.freedesktop.org/mesa/mesa" =20 if [[ ${PV} =3D 9999* ]]; then - GIT_ECLASS=3D"git" + GIT_ECLASS=3D"git-2" EXPERIMENTAL=3D"true" fi =20 @@ -124,7 +124,7 @@ pkg_setup() { } =20 src_unpack() { - [[ $PV =3D 9999* ]] && git_src_unpack || base_src_unpack + [[ $PV =3D 9999* ]] && git-2_src_unpack || base_src_unpack } =20 src_prepare() { @@ -155,7 +155,6 @@ src_prepare() { "${S}"/src/mesa/shader/slang/library/Makefile || die fi =20 - [[ $PV =3D 9999* ]] && git_src_prepare base_src_prepare =20 eautoreconf @@ -225,7 +224,7 @@ src_configure() { $(use_enable video_cards_nouveau gallium-nouveau) $(use_enable video_cards_intel gallium-i915) $(use_enable video_cards_intel gallium-i965) - $(use_enable video_cards_radeon gallium-radeon) + $(use_enable video_cards_radeon gallium-r300) $(use_enable video_cards_radeon gallium-r600) " if use video_cards_i915 || \ @@ -242,9 +241,9 @@ src_configure() { fi if use video_cards_r300 || \ use video_cards_radeon; then - myconf+=3D" --enable-gallium-radeon" + myconf+=3D" --enable-gallium-r300" else - myconf+=3D" --disable-gallium-radeon" + myconf+=3D" --disable-gallium-r300" fi if use video_cards_r600 || \ use video_cards_radeon; then @@ -360,7 +359,7 @@ pkg_postinst() { if use classic || use gallium; then eselect mesa set --auto fi -=09 + # warn about patent encumbered texture-float if use !bindist; then elog "USE=3D\"bindist\" was not set. Potentially patent encumbered cod= e was"