diff options
author | Matt Turner <mattst88@gentoo.org> | 2017-07-20 14:26:37 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2017-07-20 16:03:07 -0700 |
commit | 45989621b436f179f3f433d32550930e60e43823 (patch) | |
tree | 0ea83db67eb395650cdb19db2ae665290d5f7c63 /media-libs/vulkan-loader/vulkan-loader-1.0.54.0.ebuild | |
parent | dev-util/ctags: version bump. (diff) | |
download | gentoo-45989621b436f179f3f433d32550930e60e43823.tar.gz gentoo-45989621b436f179f3f433d32550930e60e43823.tar.bz2 gentoo-45989621b436f179f3f433d32550930e60e43823.zip |
media-libs/vulkan-loader: Version bump to 1.0.54.0
Diffstat (limited to 'media-libs/vulkan-loader/vulkan-loader-1.0.54.0.ebuild')
-rw-r--r-- | media-libs/vulkan-loader/vulkan-loader-1.0.54.0.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/media-libs/vulkan-loader/vulkan-loader-1.0.54.0.ebuild b/media-libs/vulkan-loader/vulkan-loader-1.0.54.0.ebuild new file mode 100644 index 000000000000..152f97552fc0 --- /dev/null +++ b/media-libs/vulkan-loader/vulkan-loader-1.0.54.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python3_{4,5} ) + +if [[ "${PV}" == "9999" ]]; then + EGIT_REPO_URI="https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers.git" + inherit git-r3 +else + KEYWORDS="~amd64" + SRC_URI="https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/archive/sdk-${PV}.tar.gz -> ${P}.tar.gz" + S="${WORKDIR}/Vulkan-LoaderAndValidationLayers-sdk-${PV}" +fi + +inherit python-any-r1 cmake-multilib + +DESCRIPTION="Vulkan Installable Client Driver (ICD) Loader" +HOMEPAGE="https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="wayland X" + +RDEPEND="" +DEPEND="${PYTHON_DEPS} + wayland? ( dev-libs/wayland:=[${MULTILIB_USEDEP}] ) + X? ( x11-libs/libX11:=[${MULTILIB_USEDEP}] )" + +src_prepare() { + default + eapply "${FILESDIR}"/${P}-remove-executable-stack.patch +} + +multilib_src_configure() { + local mycmakeargs=( + -DCMAKE_SKIP_RPATH=True + -DBUILD_TESTS=False + -DBUILD_LAYERS=False + -DBUILD_DEMOS=False + -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 +} + +multilib_src_install() { + keepdir /etc/vulkan/icd.d + + default +} |