diff options
author | 2022-08-05 13:45:39 +0100 | |
---|---|---|
committer | 2022-09-06 12:03:23 -0400 | |
commit | 5731299155df8c5e614383a356813f04fd6bc082 (patch) | |
tree | 9a3346beb24ee4ea3b004676b0d336dea91e32b9 /dev-util/directx-headers/directx-headers-1.606.4.ebuild | |
parent | dev-lang/lua: remove wrong 5.1.6 (diff) | |
download | gentoo-5731299155df8c5e614383a356813f04fd6bc082.tar.gz gentoo-5731299155df8c5e614383a356813f04fd6bc082.tar.bz2 gentoo-5731299155df8c5e614383a356813f04fd6bc082.zip |
dev-util/directx-headers: Add new ebuild
This is required to enable the d3d12 and dozen drivers in mesa
This enables OpenGL and Vulkan support within WSL
Signed-off-by: Mike Lothian <mike@fireburn.co.uk>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-util/directx-headers/directx-headers-1.606.4.ebuild')
-rw-r--r-- | dev-util/directx-headers/directx-headers-1.606.4.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-util/directx-headers/directx-headers-1.606.4.ebuild b/dev-util/directx-headers/directx-headers-1.606.4.ebuild new file mode 100644 index 000000000000..e0d36de615c0 --- /dev/null +++ b/dev-util/directx-headers/directx-headers-1.606.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +MY_PN=DirectX-Headers +inherit meson-multilib + +if [[ ${PV} == *9999* ]]; then + EGIT_REPO_URI="https://github.com/microsoft/${MY_PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/microsoft/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}"/${MY_PN}-${PV} +fi + +DESCRIPTION="DirectX header files and WSL stubs" +HOMEPAGE="https://github.com/microsoft/DirectX-Headers" + +LICENSE="MIT" +SLOT="0" + +multilib_src_configure() { + local emesonargs=( + -Dbuild-test=false + ) + + meson_src_configure +} |