public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ronny Gutbrod" <gentoo@tastytea.de>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/dxvk-bin/
Date: Tue,  2 Mar 2021 00:40:36 +0000 (UTC)	[thread overview]
Message-ID: <1614645608.a9ba3f7fd0b193e11f24015c997df4fb96f0569f.tastytea@gentoo> (raw)

commit:     a9ba3f7fd0b193e11f24015c997df4fb96f0569f
Author:     Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Mar  2 00:38:29 2021 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Mar  2 00:40:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a9ba3f7f

app-emulation/dxvk-bin: Version bump 1.8.1.

Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>

 app-emulation/dxvk-bin/Manifest              |  1 +
 app-emulation/dxvk-bin/dxvk-bin-1.8.1.ebuild | 73 ++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/app-emulation/dxvk-bin/Manifest b/app-emulation/dxvk-bin/Manifest
index 910e7d78..8d50074b 100644
--- a/app-emulation/dxvk-bin/Manifest
+++ b/app-emulation/dxvk-bin/Manifest
@@ -1,2 +1,3 @@
 DIST dxvk-bin-1.7.3.tar.gz 7866514 BLAKE2B 3ac1427535dece18229d35dc44be75a4644e1252a7eba2eaccae3fb131d154412bc7a83ec33d0283374c21b70861652e5da50eea942b247ffdaa8a9b6fdd81a5 SHA512 11f66dda37419f54d78c7505d6aced2dc880c0f86f1eb91d0139ae9d3f0dbda149763670abeb953f5b073d8b705f922c3ff2b1f52cb87fab6f18e2a9f254f7a3
+DIST dxvk-bin-1.8.1.tar.gz 7942210 BLAKE2B 9c27d473037d28eb4999260f871c338e96ed08522ba9497e20eee9d5a951a73e5606ef684f67adad0f7a5ebb9559b43d42c589774666be66369ea6f605f5d8f7 SHA512 485a1fe584aa3607997d4405e61df7b67d87aec47d56bb645901b20ea6cbf2024e8ce135cd5bef6591587dc3d058650f2b6889b5cde321a8a4e4137a68cd541b
 DIST dxvk-bin-1.8.tar.gz 7905165 BLAKE2B 49e012ff180d0135329b5a02cede51722ae74670b367f93d7a0606262e314541ef1cfcd11e115510bf377c7cb8618b90843602d2b28de9b373abc2f6018458a4 SHA512 b5971d30e26261a2961f9b7c1eaabe71cce8ac846446fe5382563abb1212c01e05f3e151b293654a22f3253f052378ef781f29ca3ee0f5bac02be41c5f1a8816

diff --git a/app-emulation/dxvk-bin/dxvk-bin-1.8.1.ebuild b/app-emulation/dxvk-bin/dxvk-bin-1.8.1.ebuild
new file mode 100644
index 00000000..e705789d
--- /dev/null
+++ b/app-emulation/dxvk-bin/dxvk-bin-1.8.1.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MULTILIB_COMPAT=( abi_x86_{32,64} )
+inherit multilib-minimal
+
+MY_P="dxvk-${PV}"
+DESCRIPTION="Vulkan-based implementation of D3D9, D3D10 and D3D11 for Linux / Wine"
+HOMEPAGE="https://github.com/doitsujin/dxvk"
+SRC_URI="https://github.com/doitsujin/dxvk/releases/download/v${PV}/${MY_P}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="video_cards_nvidia"
+
+DEPEND=""
+RDEPEND="
+	|| (
+		video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-440.31 )
+		>=media-libs/mesa-19.2
+	)
+	|| (
+		>=app-emulation/wine-staging-4.5[${MULTILIB_USEDEP},vulkan]
+		>=app-emulation/wine-vanilla-4.5[${MULTILIB_USEDEP},vulkan]
+	)
+"
+
+S="${WORKDIR}/${MY_P}"
+
+# NOTE: Various repos contain dxvk ebuilds that install into …/dxvk.
+# To not clash with them, this ebuild installs into …/dxvk-bin.
+
+src_prepare() {
+	default
+
+	sed -i "s|^basedir=.*$|basedir=\"${EPREFIX}\"|" setup_dxvk.sh || die
+
+	# Delete installation instructions for unused ABIs.
+	if ! use abi_x86_64; then
+		sed -i '/installFile "$win64_sys_path"/d' setup_dxvk.sh || die
+	fi
+	if ! use abi_x86_32; then
+		sed -i '/installFile "$win32_sys_path"/d' setup_dxvk.sh || die
+	fi
+
+	fix_install_dir() {
+		local bits="${MULTILIB_ABI_FLAG:8:2}"
+		# Fix installation directory.
+		sed -i "s|\"x${bits}\"|\"usr/$(get_libdir)/dxvk-bin\"|" \
+			setup_dxvk.sh || die
+	}
+	multilib_foreach_abi fix_install_dir
+}
+
+multilib_src_install() {
+	local bits="${MULTILIB_ABI_FLAG:8:2}"
+	insinto "usr/$(get_libdir)/dxvk-bin"
+	insopts --mode=755
+	doins "${S}/x${bits}/"*.dll
+}
+
+multilib_src_install_all() {
+	newbin setup_dxvk.sh setup_dxvk-bin.sh
+}
+
+pkg_postinst() {
+	elog "dxvk-bin is installed, but not activated. You have to create DLL overrides"
+	elog "in order to make use of it. To do so, set WINEPREFIX and execute"
+	elog "setup_dxvk-bin.sh install --symlink."
+}


             reply	other threads:[~2021-03-02  0:40 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-02  0:40 Ronny Gutbrod [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-07-14 17:03 [gentoo-commits] repo/proj/guru:dev commit in: app-emulation/dxvk-bin/ Ronny Gutbrod
2022-07-14 17:03 Ronny Gutbrod
2022-03-29  0:23 [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-03-28 13:55 ` [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-03-29  0:23 [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-03-28 13:55 ` [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-03-28 13:55 Ronny Gutbrod
2022-03-06  5:48 Ronny Gutbrod
2022-03-06  5:48 Ronny Gutbrod
2022-01-25 11:47 Ronny Gutbrod
2022-01-25 11:47 Ronny Gutbrod
2022-01-11 23:31 Ronny Gutbrod
2022-01-11 23:31 Ronny Gutbrod
2021-09-20 14:18 Ronny Gutbrod
2021-09-20 14:18 Ronny Gutbrod
2021-07-26 14:48 Ronny Gutbrod
2021-07-26 14:48 Ronny Gutbrod
2021-06-15 18:44 Ronny Gutbrod
2021-06-15 18:44 Ronny Gutbrod
2021-03-02  0:40 Ronny Gutbrod
2021-02-19 14:58 Ronny Gutbrod
2021-02-19 14:58 Ronny Gutbrod
2020-12-02 16:48 Ronny Gutbrod
2020-12-02 16:48 Ronny Gutbrod
2020-10-07 17:38 Ronny Gutbrod
2020-10-07 17:38 Ronny Gutbrod
2020-08-13 18:25 Ronny Gutbrod
2020-08-13 18:25 Ronny Gutbrod
2020-05-16 16:18 Ronny Gutbrod
2020-04-21 19:27 Ronny Gutbrod
2020-04-21 19:00 Ronny Gutbrod

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1614645608.a9ba3f7fd0b193e11f24015c997df4fb96f0569f.tastytea@gentoo \
    --to=gentoo@tastytea.de \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox