# Copyright 2022-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 # note: version <2.0 should be kept for longer given it's the # last version to support /dev/null; then eerror "With USE=crossdev-mingw, it is necessary to setup the mingw toolchain." eerror "For instructions, please see: https://wiki.gentoo.org/wiki/Mingw" use abi_x86_32 && use abi_x86_64 && eerror "Also, with USE=abi_x86_32, will need both i686 and x86_64 toolchains." die "USE=crossdev-mingw is set but ${tool} was not found" elif [[ ! $(LC_ALL=C ${tool} -v 2>&1) =~ "Thread model: posix" ]]; then eerror "${PN} requires GCC to be built with --enable-threads=posix" eerror "Please see: https://wiki.gentoo.org/wiki/Mingw#POSIX_threads_for_Windows" die "USE=crossdev-mingw is set but ${tool} does not use POSIX threads" fi done fi } src_prepare() { default sed -i "/^basedir=/s|=.*|=${EPREFIX}/usr/lib/${PN}|" setup_dxvk.sh || die } src_configure() { use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} # random segfaults been reported with LTO in some games, filter as # a safety (note that optimizing this further won't really help # performance, GPU does the actual work) filter-lto # -mavx with mingw-gcc has a history of obscure issues and # disabling is seen as safer, e.g. `WINEARCH=win32 winecfg` # crashes with -march=skylake >=wine-8.10, similar issues with # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx if [[ ${CHOST} != *-mingw* ]]; then if [[ ! -v MINGW_BYPASS ]]; then unset AR CC CXX RC STRIP filter-flags '-fuse-ld=*' filter-flags '-mfunction-return=thunk*' #878849 # some bashrc-mv users tend to do CFLAGS="${LDFLAGS}" and then # strip-unsupported-flags miss these during compile-only tests # (primarily done for 23.0 profiles' -z, not full coverage) filter-flags '-Wl,-z,*' #928038 fi CHOST_amd64=x86_64-w64-mingw32 CHOST_x86=i686-w64-mingw32 CHOST=$(usex x86 ${CHOST_x86} ${CHOST_amd64}) strip-unsupported-flags fi multilib-minimal_src_configure } multilib_src_configure() { # multilib's ${CHOST_amd64}-gcc -m32 is unusable with crossdev, # unset again so meson eclass will set ${CHOST}-gcc + others use crossdev-mingw && [[ ! -v MINGW_BYPASS ]] && unset AR CC CXX RC STRIP local emesonargs=( --prefix="${EPREFIX}"/usr/lib/${PN} --{bin,lib}dir=x${MULTILIB_ABI_FLAG: -2} $(meson_use {,enable_}d3d9) $(meson_use {,enable_}d3d10) $(meson_use {,enable_}d3d11) $(meson_use {,enable_}dxgi) $(usev !debug --strip) # portage won't strip .dll, so allow it here -Denable_tests=false # needs wine/vulkan and is intended for manual use ) meson_src_configure } multilib_src_install_all() { dobin setup_dxvk.sh dodoc README.md dxvk.conf find "${ED}" -type f -name '*.a' -delete || die } pkg_preinst() { [[ -e ${EROOT}/usr/$(get_libdir)/dxvk/d3d11.dll ]] && DXVK_HAD_OVERLAY= } pkg_postinst() { if [[ ! ${REPLACING_VERSIONS} ]]; then elog "To enable ${PN} on a wine prefix, you can run the following command:" elog elog " WINEPREFIX=/path/to/prefix setup_dxvk.sh install --symlink" elog elog "See ${EROOT}/usr/share/doc/${PF}/README.md* for details." elif [[ -v DXVK_HAD_OVERLAY ]]; then # temporary warning until this version is more widely used elog "Gentoo's main repo ebuild for ${PN} uses different paths than most overlays." elog "If you were using symbolic links in wine prefixes it may be necessary to" elog "refresh them by re-running the command:" elog elog " WINEPREFIX=/path/to/prefix setup_dxvk.sh install --symlink" elog elog "Also, if you were using /etc/${PN}.conf, ${PN} is no longer patched to load" elog "it. See ${EROOT}/usr/share/doc/${PF}/README.md* for handling configs." fi }