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 B6DAF138334 for ; Thu, 14 Mar 2019 20:30:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93488E092F; Thu, 14 Mar 2019 20:30:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 66BDFE092F for ; Thu, 14 Mar 2019 20:30:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C829D335D07 for ; Thu, 14 Mar 2019 20:30:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C959326 for ; Thu, 14 Mar 2019 20:30:30 +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: <1552595413.bf33e9e6359b29c84525ac7cc5d581e7e96b8b18.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: bf33e9e6359b29c84525ac7cc5d581e7e96b8b18 X-VCS-Branch: master Date: Thu, 14 Mar 2019 20:30:30 +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: 1b2687a7-d293-4d1e-81cb-c4c349942b2e X-Archives-Hash: a66e3a7eef8d589a6cce745469e30e8a commit: bf33e9e6359b29c84525ac7cc5d581e7e96b8b18 Author: David Heidelberg ixit cz> AuthorDate: Sat Mar 9 11:24:53 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Mar 14 20:30:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf33e9e6 media-libs/mesa: d3d9 now supports also iris Signed-off-by: David Heidelberg ixit.cz> Closes: https://github.com/gentoo/gentoo/pull/11315 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-9999.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index e66a4bbfece..254bd0f3514 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -41,7 +41,7 @@ IUSE="${IUSE_VIDEO_CARDS} vdpau vulkan vulkan-overlay wayland xa xvmc" REQUIRED_USE=" - d3d9? ( dri3 || ( video_cards_r300 video_cards_r600 video_cards_radeonsi video_cards_nouveau video_cards_vmware ) ) + d3d9? ( dri3 || ( video_cards_iris video_cards_r300 video_cards_r600 video_cards_radeonsi video_cards_nouveau video_cards_vmware ) ) gles1? ( egl ) gles2? ( egl ) vulkan? ( dri3 @@ -356,7 +356,8 @@ multilib_src_configure() { $(meson_use unwind libunwind) ) - if use video_cards_r300 || + if use video_cards_iris || + use video_cards_r300 || use video_cards_r600 || use video_cards_radeonsi || use video_cards_nouveau ||