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 F25A3139694 for ; Wed, 15 Feb 2017 21:08:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4544BE0BA3; Wed, 15 Feb 2017 21:08:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1FD54E0BA3 for ; Wed, 15 Feb 2017 21:08:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29D7C34108B for ; Wed, 15 Feb 2017 21:08:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6E344914 for ; Wed, 15 Feb 2017 21:08:39 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1487192914.8887e178a3f5bbd7a8959a4bbd6a0282cb698659.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mesa/mesa-17.0.0.ebuild media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8887e178a3f5bbd7a8959a4bbd6a0282cb698659 X-VCS-Branch: master Date: Wed, 15 Feb 2017 21:08:39 +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: f6df00c5-5c5e-4b6a-9dc2-dfdf27896a56 X-Archives-Hash: 35733a1ee61ea85cfb716371c6a3f9ff commit: 8887e178a3f5bbd7a8959a4bbd6a0282cb698659 Author: Michał Górny gentoo org> AuthorDate: Wed Feb 15 21:06:54 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Feb 15 21:08:34 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8887e178 media-libs/mesa: Fix uncond call to llvm_pkg_setup, #608536 media-libs/mesa/mesa-17.0.0.ebuild | 4 +++- media-libs/mesa/mesa-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/media-libs/mesa/mesa-17.0.0.ebuild b/media-libs/mesa/mesa-17.0.0.ebuild index b35f0bc5ef..d6d58afc0d 100644 --- a/media-libs/mesa/mesa-17.0.0.ebuild +++ b/media-libs/mesa/mesa-17.0.0.ebuild @@ -201,7 +201,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - LLVM_MAX_SLOT=4 llvm_pkg_setup + if use llvm || use opencl; then + LLVM_MAX_SLOT=4 llvm_pkg_setup + fi python-any-r1_pkg_setup } diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index fe87f66a7b..2f05b05d30 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -188,7 +188,9 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - llvm_pkg_setup + if use llvm || use opencl; then + llvm_pkg_setup + fi python-any-r1_pkg_setup }