Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/wine:master commit in: app-emulation/vkd3d/
Date: Mon, 28 Sep 2020 02:41:07
Message-Id: 1601259979.7cddf9837754604d83a96b713b519834afc9c63c.sarnex@gentoo
1 commit: 7cddf9837754604d83a96b713b519834afc9c63c
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 28 02:26:19 2020 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 02:26:19 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=7cddf983
7
8 app-emulation/vkd3d: Bump to 1.2
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 app-emulation/vkd3d/Manifest | 1 +
14 app-emulation/vkd3d/vkd3d-1.2.ebuild | 39 ++++++++++++++++++++++++++++++++++++
15 2 files changed, 40 insertions(+)
16
17 diff --git a/app-emulation/vkd3d/Manifest b/app-emulation/vkd3d/Manifest
18 index 257e832..7014678 100644
19 --- a/app-emulation/vkd3d/Manifest
20 +++ b/app-emulation/vkd3d/Manifest
21 @@ -1 +1,2 @@
22 DIST vkd3d-1.0.tar.xz 461884 BLAKE2B 4dbd729f9e795d3d81178abc1a8774c0bbe6a5257c96c97acf1e4b4cdb5b7e30c77235e8b8fa57f7db3196caf30c55c3b0c07e2981629dd6177436a3cd117d33 SHA512 55712528688cdedc63049e168b371b470dbb8e31ddc36d8b23b0655f4a061726eb8556b9abf3cb887f6bd21379959aed9fab93ba0fd53813aec413ebec71d615
23 +DIST vkd3d-1.2.tar.xz 611240 BLAKE2B e7ea3f7120ad1092be0239bdc2e6d0dfdfecc3b1c2e7c359c4bfbd8c259f092e041a75a0e896da9a1c6370d5716590711128d31c9e552897b177b300b9a15107 SHA512 ca9d5b11e7770747b78b61f43196b45b7bda8d2dd4f1d76da915f895a04dc28c20499e1e433f5ce17416964fe0f37cdc907e7aa540ec9105afbc8a100094f3e7
24
25 diff --git a/app-emulation/vkd3d/vkd3d-1.2.ebuild b/app-emulation/vkd3d/vkd3d-1.2.ebuild
26 new file mode 100644
27 index 0000000..f866aca
28 --- /dev/null
29 +++ b/app-emulation/vkd3d/vkd3d-1.2.ebuild
30 @@ -0,0 +1,39 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit multilib-minimal
37 +
38 +if [[ "${PV}" == "9999" ]]; then
39 + EGIT_REPO_URI="https://source.winehq.org/git/vkd3d.git"
40 + inherit git-r3
41 +else
42 + KEYWORDS="~amd64 ~x86"
43 + SRC_URI="https://dl.winehq.org/vkd3d/source/${P}.tar.xz"
44 +fi
45 +
46 +IUSE="spirv-tools"
47 +RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] )
48 + media-libs/vulkan-loader[${MULTILIB_USEDEP},X]
49 + x11-libs/xcb-util:=[${MULTILIB_USEDEP}]
50 + x11-libs/xcb-util-keysyms:=[${MULTILIB_USEDEP}]
51 + x11-libs/xcb-util-wm:=[${MULTILIB_USEDEP}]"
52 +
53 +DEPEND="${RDEPEND}
54 + dev-util/spirv-headers
55 + dev-util/vulkan-headers"
56 +
57 +DESCRIPTION="D3D12 to Vulkan translation library"
58 +HOMEPAGE="https://source.winehq.org/git/vkd3d.git/"
59 +
60 +LICENSE="LGPL-2.1"
61 +SLOT="0"
62 +
63 +multilib_src_configure() {
64 + local myconf=(
65 + $(use_with spirv-tools)
66 + )
67 +
68 + ECONF_SOURCE=${S} econf "${myconf[@]}"
69 +}