2019-07-14 01:32:59 +02:00
|
|
|
# Copyright 1999-2019 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
MULTILIB_COMPAT=( abi_x86_{32,64} )
|
|
|
|
inherit meson multilib-minimal ninja-utils
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
inherit git-r3
|
|
|
|
fi
|
|
|
|
|
|
|
|
DESCRIPTION="Vulkan-based D3D11 and D3D10 implementation for Linux / Wine"
|
|
|
|
HOMEPAGE="https://github.com/doitsujin/dxvk"
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
EGIT_REPO_URI="https://github.com/doitsujin/dxvk.git"
|
|
|
|
else
|
2019-08-23 22:41:43 +02:00
|
|
|
SRC_URI="https://github.com/doitsujin/dxvk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
2019-07-14 01:32:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
LICENSE="ZLIB"
|
|
|
|
SLOT="0"
|
|
|
|
if [[ "${PV}" == "9999" ]]; then
|
|
|
|
KEYWORDS=""
|
|
|
|
else
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
fi
|
|
|
|
IUSE="video_cards_nvidia"
|
|
|
|
|
|
|
|
COMMON_DEPEND="virtual/wine[${MULTILIB_USEDEP}]"
|
|
|
|
DEPEND="
|
|
|
|
${COMMON_DEPEND}
|
|
|
|
dev-util/vulkan-headers
|
|
|
|
dev-util/glslang
|
|
|
|
"
|
|
|
|
RDEPEND="
|
|
|
|
${COMMON_DEPEND}
|
|
|
|
media-libs/vulkan-loader[${MULTILIB_USEDEP}]
|
|
|
|
|| (
|
|
|
|
>=app-emulation/wine-any-4.5
|
|
|
|
>=app-emulation/wine-d3d9-4.5
|
|
|
|
>=app-emulation/wine-staging-4.5
|
|
|
|
>=app-emulation/wine-vanilla-4.5
|
|
|
|
)
|
|
|
|
|| (
|
2019-11-20 02:46:22 +01:00
|
|
|
video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-440.31 )
|
2019-07-14 01:32:59 +02:00
|
|
|
>=media-libs/mesa-19.2
|
|
|
|
)
|
|
|
|
"
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
sed -i "s|^basedir=.*$|basedir=\"${EPREFIX}\"|" setup_dxvk.sh || die
|
2019-08-23 22:41:43 +02:00
|
|
|
sed -i "s|\"x64\"|\"usr/${LIBDIR_amd64}/dxvk\"|" setup_dxvk.sh || die
|
|
|
|
sed -i "s|\"x32\"|\"usr/${LIBDIR_x86}/dxvk\"|" setup_dxvk.sh || die
|
2019-07-14 01:32:59 +02:00
|
|
|
|
|
|
|
if ! use abi_x86_64; then
|
|
|
|
sed -i '|installFile "$win64_sys_path"|d' setup_dxvk.sh
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! use abi_x86_32; then
|
|
|
|
sed -i '|installFile "$win32_sys_path"|d' setup_dxvk.sh
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
multilib_src_configure() {
|
|
|
|
local bit="${MULTILIB_ABI_FLAG:8:2}"
|
2019-08-22 20:25:54 +02:00
|
|
|
|
2019-07-14 01:32:59 +02:00
|
|
|
local emesonargs=(
|
2019-08-23 22:41:43 +02:00
|
|
|
--libdir=$(get_libdir)/dxvk
|
|
|
|
--bindir=$(get_libdir)/dxvk/bin
|
2019-07-14 01:32:59 +02:00
|
|
|
--cross-file=../${P}/build-wine${bit}.txt
|
|
|
|
)
|
|
|
|
meson_src_configure
|
|
|
|
}
|
|
|
|
|
|
|
|
multilib_src_compile() {
|
|
|
|
EMESON_SOURCE="${S}"
|
|
|
|
meson_src_compile
|
|
|
|
}
|
|
|
|
|
|
|
|
multilib_src_install() {
|
|
|
|
meson_src_install
|
|
|
|
}
|
|
|
|
|
|
|
|
multilib_src_install_all() {
|
|
|
|
dobin setup_dxvk.sh
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
elog "dxvk 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.sh install --symlink."
|
|
|
|
}
|