diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-06-27 14:08:59 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-06-27 14:09:07 +0100 |
commit | b72c2184db8e5a08e8b34966acd1d4b787ed5dd1 (patch) | |
tree | b7db7c1b54a907b6029c5a23da893ab935172c41 /games-emulation/dolphin/dolphin-9999.ebuild | |
parent | net-libs/gupnp: bump to 1.2.3 (diff) | |
download | gentoo-b72c2184db8e5a08e8b34966acd1d4b787ed5dd1.tar.gz gentoo-b72c2184db8e5a08e8b34966acd1d4b787ed5dd1.tar.bz2 gentoo-b72c2184db8e5a08e8b34966acd1d4b787ed5dd1.zip |
games-emulation/dolphin: use bundled vulkan-headers
Gentoo's dev-util/vulkan-headers removed API that dolphin relied on.
Let's sue bundled headers. Fix is proposed by Gabriel Marcano.
Reported-by: Gabriel Marcano
Closes: https://bugs.gentoo.org/729832
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'games-emulation/dolphin/dolphin-9999.ebuild')
-rw-r--r-- | games-emulation/dolphin/dolphin-9999.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/games-emulation/dolphin/dolphin-9999.ebuild b/games-emulation/dolphin/dolphin-9999.ebuild index 9645554b04fb..55392d47b0fd 100644 --- a/games-emulation/dolphin/dolphin-9999.ebuild +++ b/games-emulation/dolphin/dolphin-9999.ebuild @@ -61,7 +61,6 @@ RDEPEND=" " DEPEND="${RDEPEND} app-arch/zip - dev-util/vulkan-headers media-libs/freetype sys-devel/gettext virtual/pkgconfig" @@ -79,6 +78,12 @@ src_prepare() { local KEEP_SOURCES=( Bochs_disasm FreeSurround + + # vulkan's API is not backwards-compatible: + # new release dropped VK_PRESENT_MODE_RANGE_SIZE_KHR + # but dolphin still relies on it, bug #729832 + Vulkan + cpp-optparse # no support for for using system library glslang |