gentoo/dev-util/rocm-smi/rocm-smi-7.0.2.ebuild
Sv. Lockal 8d5ad326b5
dev-util/rocm-smi: fix missing dependency for libdrm/amdgpu.h
Closes: https://bugs.gentoo.org/963526
Signed-off-by: Sv. Lockal <lockalsash@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44373
Closes: https://github.com/gentoo/gentoo/pull/44373
Signed-off-by: Sam James <sam@gentoo.org>
2025-10-29 19:23:26 +00:00

74 lines
2.1 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} python3_13t )
inherit cmake linux-info optfeature python-r1
DESCRIPTION="ROCm System Management Interface Library"
HOMEPAGE="https://github.com/ROCm/rocm-systems/tree/develop/projects/rocm-smi-lib"
if [[ ${PV} == *9999 ]] ; then
inherit git-r3
EGIT_SUBMODULES=()
EGIT_REPO_URI="https://github.com/ROCm/rocm-systems.git"
S="${WORKDIR}/${P}/projects/rocm-smi-lib"
else
SRC_URI="https://github.com/ROCm/rocm_smi_lib/archive/rocm-${PV}.tar.gz -> rocm-smi-${PV}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/rocm_smi_lib-rocm-${PV}"
fi
LICENSE="MIT"
SLOT="0/$(ver_cut 1-2)"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}
sys-kernel/linux-headers
x11-libs/libdrm[video_cards_amdgpu]
"
PATCHES=(
"${FILESDIR}"/${PN}-5.7.1-no-strip.patch
"${FILESDIR}"/${PN}-5.7.1-remove-example.patch
)
CONFIG_CHECK="~HSA_AMD ~DRM_AMDGPU"
src_prepare() {
cmake_src_prepare
# Disable code that relies on missing .git directory.
# Just silences potential "git: command not found" QA warnings.
sed -e "/find_program (GIT NAMES git)/d" -i CMakeLists.txt || die
sed -e "/num_change_since_prev_pkg(\${VERSION_PREFIX})/d" -i cmake_modules/utils.cmake || die
local rocm_lib="${EPREFIX}/usr/$(get_libdir)/librocm_smi64.so.@VERSION_MAJOR@"
sed -E "s|path_librocm =.+__file__.+|path_librocm = '${rocm_lib}'|" \
-i python_smi_tools/rsmiBindingsInit.py.in || die
}
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
)
cmake_src_configure
}
src_install() {
cmake_src_install
python_foreach_impl python_newscript python_smi_tools/rocm_smi.py rocm-smi
python_foreach_impl python_domodule python_smi_tools/rsmiBindings.py
python_foreach_impl python_domodule python_smi_tools/rsmiBindingsInit.py
mv "${ED}"/usr/share/doc/rocm-smi-lib/* "${ED}/usr/share/doc/${PF}" || die
rm -r "${ED}"/usr/share/doc/rocm-smi-lib || die
}
pkg_postinst() {
optfeature "vendor and device names instead of hex device IDs" sys-apps/hwdata
}