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 E695B138334 for ; Wed, 16 Oct 2019 06:09:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2ECDDE0894; Wed, 16 Oct 2019 06:09:05 +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 15713E0894 for ; Wed, 16 Oct 2019 06:09:04 +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 EE23534BE84 for ; Wed, 16 Oct 2019 06:09:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 96E88804 for ; Wed, 16 Oct 2019 06:09:01 +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: <1571206124.75bd9efda3f8b27f2b3b3ca3cb8a2f53f84e7d0e.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: 75bd9efda3f8b27f2b3b3ca3cb8a2f53f84e7d0e X-VCS-Branch: master Date: Wed, 16 Oct 2019 06:09:01 +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: 2da786b6-21ce-4054-bad2-4158e0d3e0cb X-Archives-Hash: 57b02e729f409098789f03b2251de90f commit: 75bd9efda3f8b27f2b3b3ca3cb8a2f53f84e7d0e Author: Matt Turner gentoo org> AuthorDate: Wed Oct 16 06:08:05 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Oct 16 06:08:44 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75bd9efd media-libs/mesa: Do not depend on llvm if USE=-gallium Closes: https://bugs.gentoo.org/697806 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-9999.ebuild | 62 +++++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 30 deletions(-) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index cad8a11cea0..92046ad35fa 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -161,51 +161,53 @@ LLVM_DEPSTR_AMDGPU=${LLVM_DEPSTR//]/,llvm_targets_AMDGPU(-)]} CLANG_DEPSTR=${LLVM_DEPSTR//llvm/clang} CLANG_DEPSTR_AMDGPU=${CLANG_DEPSTR//]/,llvm_targets_AMDGPU(-)]} RDEPEND="${RDEPEND} - llvm? ( - opencl? ( - video_cards_r600? ( - ${CLANG_DEPSTR_AMDGPU} - ) - !video_cards_r600? ( - video_cards_radeonsi? ( + gallium? + llvm? ( + opencl? ( + video_cards_r600? ( ${CLANG_DEPSTR_AMDGPU} ) - ) - !video_cards_r600? ( - !video_cards_radeonsi? ( - video_cards_radeon? ( + !video_cards_r600? ( + video_cards_radeonsi? ( ${CLANG_DEPSTR_AMDGPU} ) ) - ) - !video_cards_r600? ( - !video_cards_radeon? ( + !video_cards_r600? ( !video_cards_radeonsi? ( - ${CLANG_DEPSTR} + video_cards_radeon? ( + ${CLANG_DEPSTR_AMDGPU} + ) + ) + ) + !video_cards_r600? ( + !video_cards_radeon? ( + !video_cards_radeonsi? ( + ${CLANG_DEPSTR} + ) ) ) ) - ) - !opencl? ( - video_cards_r600? ( - ${LLVM_DEPSTR_AMDGPU} - ) - !video_cards_r600? ( - video_cards_radeonsi? ( + !opencl? ( + video_cards_r600? ( ${LLVM_DEPSTR_AMDGPU} ) - ) - !video_cards_r600? ( - !video_cards_radeonsi? ( - video_cards_radeon? ( + !video_cards_r600? ( + video_cards_radeonsi? ( ${LLVM_DEPSTR_AMDGPU} ) ) - ) - !video_cards_r600? ( - !video_cards_radeon? ( + !video_cards_r600? ( !video_cards_radeonsi? ( - ${LLVM_DEPSTR} + video_cards_radeon? ( + ${LLVM_DEPSTR_AMDGPU} + ) + ) + ) + !video_cards_r600? ( + !video_cards_radeon? ( + !video_cards_radeonsi? ( + ${LLVM_DEPSTR} + ) ) ) )