Files
guru/media-libs/opencomposite/opencomposite-9999.ebuild
Patrick Nicolas 16ebc41d48 media-libs/opencomposite: add multilib
Signed-off-by: Patrick Nicolas <patricknicolas@laposte.net>
2024-12-08 13:02:09 +01:00

61 lines
1.4 KiB
Bash

# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake-multilib
DESCRIPTION="OpenVR over OpenXR compatibility layer"
HOMEPAGE="https://gitlab.com/znixian/OpenOVR"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/znixian/OpenOVR.git"
EGIT_BRANCH="openxr"
else
KEYWORDS="~amd64"
fi
LICENSE="GPL-3 Apache-2.0 MIT"
SLOT="0"
DEPEND="
dev-lang/python
dev-util/vulkan-headers
media-libs/glm
media-libs/libglvnd[${MULTILIB_USEDEP},X]
media-libs/openxr-loader[${MULTILIB_USEDEP}]
"
RDEPEND="${DEPEND}"
multilib_src_configure()
{
# Installing to /usr would not work with Steam bacause pressure vessel
# sandbox mounts /usr as /run/host/usr and openvr path would point to a
# non-existing location.
#
# Pressure vessel would need to be fixed and patch the location
# as it does for vulkan and other similar configuration files.
local mycmakeargs=(
"-DCMAKE_INSTALL_PREFIX=/opt"
# Required for Proton: https://gitlab.com/znixian/OpenOVR/-/issues/416
"-DUSE_SYSTEM_OPENXR=OFF"
"-DUSE_SYSTEM_GLM=ON"
)
cmake_src_configure
}
multilib_src_install()
{
cmake_src_install
insinto /opt/OpenComposite
doins "${FILESDIR}/openvrpaths.vrpath"
}
pkg_postinst()
{
elog "For applications to use OpenComposite, symlink"
elog "~/.config/openvr/openvrpaths.vrpath to /opt/OpenComposite/openvrpaths.vrpath."
}