mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 16:08:17 +00:00
26 lines
551 B
Bash
26 lines
551 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
|
|
}
|