# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 inherit meson if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="https://gitlab.freedesktop.org/asahi/virglrenderer.git" inherit git-r3 else MY_PV="asahi-$(ver_cut 5)" MY_P="${PN}-${MY_PV}" SRC_URI="https://gitlab.freedesktop.org/asahi/${PN}/-/archive/${MY_PV}/${MY_P}.tar.bz2" S="${WORKDIR}/${MY_P}" KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86" fi DESCRIPTION="library used implement a virtual 3D GPU used by qemu" HOMEPAGE="https://virgil3d.github.io/" LICENSE="MIT" SLOT="0" IUSE="static-libs" RDEPEND=" >=x11-libs/libdrm-2.4.50 media-libs/libepoxy media-libs/mesa x11-libs/libX11 " DEPEND="${RDEPEND}" # Most of the testsuite cannot run in our sandboxed environment, just don't # deal with it for now. RESTRICT="test" src_configure() { local emesonargs=( -Ddefault_library=$(usex static-libs both shared) -Ddrm-renderers=asahi-experimental ) meson_src_configure }