diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2024-01-08 07:49:23 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2024-01-08 07:57:52 -0500 |
commit | e93476a6263a45afe34ed08d4f1173fe60649694 (patch) | |
tree | c8f448de909931715b16bb0c2e0c55391151f7bf /app-emulation/vkd3d | |
parent | Revert "app-emulation/vkd3d: sys-devel/bison -> app-alternatives/yacc" (diff) | |
download | gentoo-e93476a6263a45afe34ed08d4f1173fe60649694.tar.gz gentoo-e93476a6263a45afe34ed08d4f1173fe60649694.tar.bz2 gentoo-e93476a6263a45afe34ed08d4f1173fe60649694.zip |
app-emulation/vkd3d: drop 1.9
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/vkd3d-1.9.ebuild | 51 |
2 files changed, 0 insertions, 52 deletions
diff --git a/app-emulation/vkd3d/Manifest b/app-emulation/vkd3d/Manifest index 34fd5c26b6d7..28793588a192 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.9.tar.xz 902300 BLAKE2B 62c71b98912e66d86a2d2d934f6bd4c252cced68d3ad96c23b7404dbe346e7a11e43affb1959b389cfc90b53f32b2011ceeca6d066bcae876d24ff0822719d2b SHA512 7fe931fca4bc2e13bd59f2068d758581797aa15530fb811d71323e3cd83a0f12ec3a00e2951f38033fccf8eabfca45e06dad79d80ccc164e047e13cbfc960d0e diff --git a/app-emulation/vkd3d/vkd3d-1.9.ebuild b/app-emulation/vkd3d/vkd3d-1.9.ebuild deleted file mode 100644 index a07c6243deca..000000000000 --- a/app-emulation/vkd3d/vkd3d-1.9.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=" - app-alternatives/lex - 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 -} |