gentoo/x11-drivers/xf86-video-amdgpu/xf86-video-amdgpu-25.0.0-r1.ebuild
Sam James af28e3ec2b
x11-drivers/xf86-video-amdgpu: Stabilize 25.0.0-r1 x86, #966377
Signed-off-by: Sam James <sam@gentoo.org>
2025-11-27 22:54:47 +00:00

27 lines
552 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xorg-meson
if [[ ${PV} != 9999* ]]; then
KEYWORDS="amd64 arm64 ~loong ~ppc64 ~riscv x86"
fi
DESCRIPTION="Accelerated Open Source driver for AMDGPU cards"
IUSE="udev"
RDEPEND=">=x11-libs/libdrm-2.4.89[video_cards_amdgpu]
x11-base/xorg-server[-minimal]
udev? ( virtual/libudev:= )"
DEPEND="${RDEPEND}"
src_configure() {
local XORG_CONFIGURE_OPTIONS=(
-Dglamor=enabled
$(meson_feature udev)
)
xorg-meson_src_configure
}