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 13107139694 for ; Fri, 3 Mar 2017 22:51:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B935E0C33; Fri, 3 Mar 2017 22:51:07 +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 EDAB4E0C33 for ; Fri, 3 Mar 2017 22:51:06 +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 D228E341713 for ; Fri, 3 Mar 2017 22:51:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3D7E5B6C for ; Fri, 3 Mar 2017 22:51: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: <1488581454.17b0cbe42483cffbe1fa6002276128e345603020.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/vulkan-loader/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/vulkan-loader/vulkan-loader-9999.ebuild X-VCS-Directories: media-libs/vulkan-loader/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 17b0cbe42483cffbe1fa6002276128e345603020 X-VCS-Branch: master Date: Fri, 3 Mar 2017 22:51: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: 97b98906-54c7-4dcf-8c15-5bd714b88827 X-Archives-Hash: ee8e5885fe1e7a3058321f135501be1b commit: 17b0cbe42483cffbe1fa6002276128e345603020 Author: Matt Turner gentoo org> AuthorDate: Fri Mar 3 22:30:21 2017 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Mar 3 22:50:54 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17b0cbe4 media-libs/vulkan-loader: Add wayland and X USE flags. Bug: https://bugs.gentoo.org/607154 media-libs/vulkan-loader/vulkan-loader-9999.ebuild | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild index 3ffa6bfad76..a70dc0dc647 100644 --- a/media-libs/vulkan-loader/vulkan-loader-9999.ebuild +++ b/media-libs/vulkan-loader/vulkan-loader-9999.ebuild @@ -20,10 +20,12 @@ HOMEPAGE="https://www.khronos.org/vulkan/" LICENSE="Apache-2.0" SLOT="0" -IUSE="" +IUSE="wayland X" -DEPEND="${PYTHON_DEPS}" RDEPEND="" +DEPEND="${PYTHON_DEPS} + wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] ) + X? ( x11-libs/libX11:=[${MULTILIB_USEDEP}] )" DOCS=( README.md LICENSE.txt ) @@ -36,6 +38,9 @@ multilib_src_configure() { -DBUILD_VKJSON=False -DBUILD_LOADER=True -DBUILD_WSI_MIR_SUPPORT=False + -DBUILD_WSI_WAYLAND_SUPPORT=$(usex wayland) + -DBUILD_WSI_XCB_SUPPORT=$(usex X) + -DBUILD_WSI_XLIB_SUPPORT=$(usex X) ) cmake-utils_src_configure }