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 47175138334 for ; Thu, 30 Aug 2018 17:50:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DEACE07D7; Thu, 30 Aug 2018 17:50:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 18F40E07D7 for ; Thu, 30 Aug 2018 17:50:18 +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 F0446335CE4 for ; Thu, 30 Aug 2018 17:50:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BD903A4 for ; Thu, 30 Aug 2018 17:50:03 +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: <1535651380.a630c85b702d55a873b2c61f50a715f537dcf07f.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: a630c85b702d55a873b2c61f50a715f537dcf07f X-VCS-Branch: master Date: Thu, 30 Aug 2018 17:50:03 +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-Archives-Salt: 7289b7f4-cacf-44c1-a51a-1f940821d316 X-Archives-Hash: 84d5f423b7bfb90b1d6e3fd6e32706b8 commit: a630c85b702d55a873b2c61f50a715f537dcf07f Author: Matt Turner gentoo org> AuthorDate: Thu Aug 30 16:44:52 2018 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Aug 30 17:49:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a630c85b media-libs/mesa: Allow USE=xa with VIDEO_CARDS=vmware Closes: https://bugs.gentoo.org/664524 media-libs/mesa/mesa-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 229179f667a..dd53f7a46a2 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -281,8 +281,9 @@ pkg_pretend() { if use xa; then if ! use video_cards_freedreno && - ! use video_cards_nouveau; then - ewarn "Ignoring USE=xa since VIDEO_CARDS does not contain freedreno or nouveau" + ! use video_cards_nouveau && + ! use video_cards_vmware; then + ewarn "Ignoring USE=xa since VIDEO_CARDS does not contain freedreno, nouveau, or vmware" fi fi @@ -387,7 +388,8 @@ multilib_src_configure() { fi if use video_cards_freedreno || - use video_cards_nouveau; then + use video_cards_nouveau || + use video_cards_vmware; then emesonargs+=($(meson_use xa gallium-xa)) else emesonargs+=(-Dgallium-xa=false)