Gentoo Archives: gentoo-commits

From: Ronny Gutbrod <gentoo@××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/dxvk-bin/
Date: Tue, 11 Jan 2022 23:31:54
Message-Id: 1641943835.04385a32d01322355f7eeff24a95cc0f90b9d6bc.tastytea@gentoo
1 commit: 04385a32d01322355f7eeff24a95cc0f90b9d6bc
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Tue Jan 11 23:30:35 2022 +0000
4 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
5 CommitDate: Tue Jan 11 23:30:35 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=04385a32
7
8 app-emulation/dxvk-bin: Version bump 1.9.3
9
10 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
11
12 app-emulation/dxvk-bin/Manifest | 1 +
13 app-emulation/dxvk-bin/dxvk-bin-1.9.3.ebuild | 73 ++++++++++++++++++++++++++++
14 2 files changed, 74 insertions(+)
15
16 diff --git a/app-emulation/dxvk-bin/Manifest b/app-emulation/dxvk-bin/Manifest
17 index 56dc4295b..d1ec10419 100644
18 --- a/app-emulation/dxvk-bin/Manifest
19 +++ b/app-emulation/dxvk-bin/Manifest
20 @@ -1,2 +1,3 @@
21 DIST dxvk-bin-1.9.1.tar.gz 8130256 BLAKE2B 50e49c69f7f43df09098e9c65089826cc4bb92bab53aeb9e07c2876fa1c07c04b600ca0598c790fb4eab6b076cc61f815e8566f6c0adbd6fc5462862fee19324 SHA512 4ab2be529c295ace85ac5731053e894383f72cb1b601b74a6fcfb581fb61568657a7e7f6842f5af1339a58ab57e33e79209f63e659732bd9774f956be2d88b31
22 DIST dxvk-bin-1.9.2.tar.gz 8141894 BLAKE2B 69fbecc6328e00aea6196144762dbbcac4d6c1b66b91ed11477a4f533977b950caf26f113f120a9c60d75ac91d974499ce24822862df394ded7f2e24c42f4448 SHA512 5f5fcba0b36270f9c5bb52ae62b3fa4acf0d865b63a1b48c05ab6901ccd716f8b71399773eb2d4fbf66e7606322de1598aebf4414138a73ee1063c77382dd444
23 +DIST dxvk-bin-1.9.3.tar.gz 8233946 BLAKE2B e58e8ff3b9ba8c54029b6b5588826697a2547571308364ec85480f4766d985fc06fa57b77fa89d2d2c988d722fc82296108a84075559f2b4a5fc968331b0fe31 SHA512 a88baa78b792575bc45d9a36831eab72a5c4fa93001cc96a109cbb42b5d922a1c8569784c0e40780f13b7200b6644e30443155cfcecd375f1c6ad0d980a20d25
24
25 diff --git a/app-emulation/dxvk-bin/dxvk-bin-1.9.3.ebuild b/app-emulation/dxvk-bin/dxvk-bin-1.9.3.ebuild
26 new file mode 100644
27 index 000000000..2db44fbf3
28 --- /dev/null
29 +++ b/app-emulation/dxvk-bin/dxvk-bin-1.9.3.ebuild
30 @@ -0,0 +1,73 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +MULTILIB_COMPAT=( abi_x86_{32,64} )
37 +inherit multilib-minimal
38 +
39 +MY_P="dxvk-${PV}"
40 +DESCRIPTION="Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine"
41 +HOMEPAGE="https://github.com/doitsujin/dxvk"
42 +SRC_URI="https://github.com/doitsujin/dxvk/releases/download/v${PV}/${MY_P}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="ZLIB"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="video_cards_nvidia"
48 +
49 +DEPEND=""
50 +RDEPEND="
51 + || (
52 + video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-440.31 )
53 + >=media-libs/mesa-20.2
54 + )
55 + || (
56 + >=app-emulation/wine-staging-4.5[${MULTILIB_USEDEP},vulkan]
57 + >=app-emulation/wine-vanilla-4.5[${MULTILIB_USEDEP},vulkan]
58 + )
59 +"
60 +
61 +S="${WORKDIR}/${MY_P}"
62 +
63 +# NOTE: Various repos contain dxvk ebuilds that install into …/dxvk.
64 +# To not clash with them, this ebuild installs into …/dxvk-bin.
65 +
66 +src_prepare() {
67 + default
68 +
69 + sed -i "s|^basedir=.*$|basedir=\"${EPREFIX}\"|" setup_dxvk.sh || die
70 +
71 + # Delete installation instructions for unused ABIs.
72 + if ! use abi_x86_64; then
73 + sed -i '/installFile "$win64_sys_path"/d' setup_dxvk.sh || die
74 + fi
75 + if ! use abi_x86_32; then
76 + sed -i '/installFile "$win32_sys_path"/d' setup_dxvk.sh || die
77 + fi
78 +
79 + fix_install_dir() {
80 + local bits="${MULTILIB_ABI_FLAG:8:2}"
81 + # Fix installation directory.
82 + sed -i "s|\"x${bits}\"|\"usr/$(get_libdir)/dxvk-bin\"|" \
83 + setup_dxvk.sh || die
84 + }
85 + multilib_foreach_abi fix_install_dir
86 +}
87 +
88 +multilib_src_install() {
89 + local bits="${MULTILIB_ABI_FLAG:8:2}"
90 + insinto "usr/$(get_libdir)/dxvk-bin"
91 + insopts --mode=755
92 + doins "${S}/x${bits}/"*.dll
93 +}
94 +
95 +multilib_src_install_all() {
96 + newbin setup_dxvk.sh setup_dxvk-bin.sh
97 +}
98 +
99 +pkg_postinst() {
100 + elog "dxvk-bin is installed, but not activated. You have to create DLL overrides"
101 + elog "in order to make use of it. To do so, set WINEPREFIX and execute"
102 + elog "setup_dxvk-bin.sh install --symlink."
103 +}