mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
The eclass was never used, which broke module loading due to missing linker flags. Closes: https://bugs.gentoo.org/960853 Signed-off-by: Holger Hoffstätte <holger@applied-asynchrony.com> Part-of: https://github.com/gentoo/gentoo/pull/43261 Closes: https://github.com/gentoo/gentoo/pull/43261 Signed-off-by: Sam James <sam@gentoo.org>
27 lines
555 B
Bash
27 lines
555 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
|
|
}
|