From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5F25C138334 for ; Mon, 15 Jul 2019 22:52:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CF97E082B; Mon, 15 Jul 2019 22:52:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10841E082B for ; Mon, 15 Jul 2019 22:52:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52994347C4E for ; Mon, 15 Jul 2019 22:52:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A37555B for ; Mon, 15 Jul 2019 22:52:18 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1563231122.559136967423b703801d9cdf0b692e5d9b779fff.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo 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: 559136967423b703801d9cdf0b692e5d9b779fff X-VCS-Branch: master Date: Mon, 15 Jul 2019 22:52:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f3db3a97-48ef-4c68-8905-466556c20b36 X-Archives-Hash: 5d8ecd4773ab845cd291fbe4ea07059f commit: 559136967423b703801d9cdf0b692e5d9b779fff Author: Matt Turner gentoo org> AuthorDate: Mon Jul 15 22:49:17 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Jul 15 22:52:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55913696 media-libs/mesa: Add lima and panfrost panfrost should be usable in mesa-19.2. Closes: https://bugs.gentoo.org/686218 Closes: https://bugs.gentoo.org/687896 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-9999.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index b45409f64da..de737e259d6 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -30,7 +30,7 @@ RESTRICT=" " RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi" -VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 intel iris nouveau vc4 virgl vivante vmware" +VIDEO_CARDS="${RADEON_CARDS} freedreno i915 i965 intel iris lima nouveau panfrost vc4 virgl vivante vmware" for card in ${VIDEO_CARDS}; do IUSE_VIDEO_CARDS+=" video_cards_${card}" done @@ -54,7 +54,9 @@ REQUIRED_USE=" video_cards_i915? ( || ( classic gallium ) ) video_cards_i965? ( classic ) video_cards_iris? ( gallium ) + video_cards_lima? ( gallium ) video_cards_nouveau? ( || ( classic gallium ) ) + video_cards_panfrost? ( gallium ) video_cards_radeon? ( || ( classic gallium ) gallium? ( x86? ( llvm ) amd64? ( llvm ) ) ) video_cards_r100? ( classic ) @@ -401,11 +403,15 @@ multilib_src_configure() { fi if use video_cards_freedreno || + use video_cards_lima || + use video_cards_panfrost || use video_cards_vc4 || use video_cards_vivante; then gallium_enable -- kmsro fi + gallium_enable video_cards_lima lima + gallium_enable video_cards_panfrost panfrost gallium_enable video_cards_vc4 vc4 gallium_enable video_cards_vivante etnaviv gallium_enable video_cards_vmware svga