diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2024-04-01 15:27:17 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2024-04-02 09:04:52 -0400 |
commit | e3b3011ae9d48955fb8af1c5e3d85f77fcb70abd (patch) | |
tree | 871cdd4e351c615d04868ac091c4734669318bb2 /app-emulation/vkd3d | |
parent | app-emulation/ruffle: drop 0_p20240117 (diff) | |
download | gentoo-e3b3011ae9d48955fb8af1c5e3d85f77fcb70abd.tar.gz gentoo-e3b3011ae9d48955fb8af1c5e3d85f77fcb70abd.tar.bz2 gentoo-e3b3011ae9d48955fb8af1c5e3d85f77fcb70abd.zip |
app-emulation/vkd3d: drop 1.10
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'app-emulation/vkd3d')
-rw-r--r-- | app-emulation/vkd3d/Manifest | 1 | ||||
-rw-r--r-- | app-emulation/vkd3d/files/vkd3d-1.9-implicit-gettid.patch | 10 | ||||
-rw-r--r-- | app-emulation/vkd3d/vkd3d-1.10.ebuild | 51 |
3 files changed, 0 insertions, 62 deletions
diff --git a/app-emulation/vkd3d/Manifest b/app-emulation/vkd3d/Manifest index 8467f886d3ee..e46132d73bb4 100644 --- a/app-emulation/vkd3d/Manifest +++ b/app-emulation/vkd3d/Manifest @@ -1,2 +1 @@ -DIST vkd3d-1.10.tar.xz 956600 BLAKE2B 141a8364ef4d34cef9eeef1fe78c18b8da3778627046ac543c3f18cd53a5a6517757532c3469475e1047f2ab7c621ebdd3655899d24aeec5093943a19bcb3958 SHA512 26db0322fe26a3ad361cec15b82ac461e2751cdc6e9f65f393b0aa533bba4644cdb2a454af9cf96efb09b562bd2bf9e9b765d0eee4b4cc7be34e0763d31c6f60 DIST vkd3d-1.11.tar.xz 1016132 BLAKE2B 634f5f99f7605814d36a90270ddb82a6a11e2b6bfc2cdc6a6d4d31b730b9d5739479770fe00704f27a726c39aa115272c0a79dbcff8baf251188a4b3ead8faeb SHA512 2b14f7f8d4d58c2bfc6c30aa0d24b6789c0887b2869cfb6be98d03b7b001a74a1fbe24439229fa4d3a618a69fe8eeb77d7a520a16276ae494fe6ee2357dd31d0 diff --git a/app-emulation/vkd3d/files/vkd3d-1.9-implicit-gettid.patch b/app-emulation/vkd3d/files/vkd3d-1.9-implicit-gettid.patch deleted file mode 100644 index bb9f0658a799..000000000000 --- a/app-emulation/vkd3d/files/vkd3d-1.9-implicit-gettid.patch +++ /dev/null @@ -1,10 +0,0 @@ -Dirty quick fix for implicit function check, VKD3D_CHECK_FUNC is -unsuitable to handle it. - -Update: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/528 ---- a/configure -+++ b/configure -@@ -18656,2 +18656,3 @@ - /* end confdefs.h. */ -+#include <unistd.h> - int main(void) { return gettid(); } diff --git a/app-emulation/vkd3d/vkd3d-1.10.ebuild b/app-emulation/vkd3d/vkd3d-1.10.ebuild deleted file mode 100644 index b8594f26e81e..000000000000 --- a/app-emulation/vkd3d/vkd3d-1.10.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit multilib-minimal - -DESCRIPTION="D3D12 to Vulkan translation library" -HOMEPAGE="https://gitlab.winehq.org/wine/vkd3d/" -SRC_URI="https://dl.winehq.org/vkd3d/source/${P}.tar.xz" - -LICENSE="LGPL-2.1+" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="ncurses spirv-tools" -RESTRICT="test" #838655 - -RDEPEND=" - media-libs/vulkan-loader[${MULTILIB_USEDEP}] - ncurses? ( sys-libs/ncurses:= ) - spirv-tools? ( dev-util/spirv-tools[${MULTILIB_USEDEP}] ) -" -DEPEND=" - ${RDEPEND} - dev-util/spirv-headers - dev-util/vulkan-headers -" -BDEPEND=" - sys-devel/flex - sys-devel/bison - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${PN}-1.9-implicit-gettid.patch -) - -multilib_src_configure() { - local conf=( - $(multilib_native_use_with ncurses) - $(use_with spirv-tools) - --disable-doxygen-pdf - --without-xcb - ) - - ECONF_SOURCE=${S} econf "${conf[@]}" -} - -multilib_src_install_all() { - find "${ED}" -type f -name '*.la' -delete || die -} |