mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
Signed-off-by: Sv. Lockal <lockalsash@gmail.com> Signed-off-by: Sam James <sam@gentoo.org>
59 lines
1.4 KiB
Bash
59 lines
1.4 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{10..12} )
|
|
|
|
inherit cmake python-any-r1
|
|
|
|
DESCRIPTION="Callback/Activity Library for Performance tracing AMD GPU's"
|
|
HOMEPAGE="https://github.com/ROCm/rocprofiler"
|
|
SRC_URI="https://github.com/ROCm/${PN}/archive/rocm-${PV}.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-rocm-${PV}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0/$(ver_cut 1-2)"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
=dev-libs/rocr-runtime-5*
|
|
=dev-util/roctracer-5*
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
$(python_gen_any_dep '
|
|
dev-python/cppheaderparser[${PYTHON_USEDEP}]
|
|
')
|
|
"
|
|
|
|
PATCHES=( "${FILESDIR}/${PN}-4.3.0-nostrip.patch"
|
|
"${FILESDIR}/${PN}-4.3.0-no-aqlprofile.patch"
|
|
"${FILESDIR}/${PN}-5.1.3-remove-Werror.patch"
|
|
"${FILESDIR}/${PN}-5.3.3-gentoo-location.patch"
|
|
"${FILESDIR}/${PN}-5.3.3-fix-python3.12-warning.patch"
|
|
"${FILESDIR}/${PN}-5.3.3-remove-aql-in-cmake.patch" )
|
|
|
|
python_check_deps() {
|
|
python_has_version "dev-python/cppheaderparser[${PYTHON_USEDEP}]"
|
|
}
|
|
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
|
|
sed -e "s,@LIB_DIR@,$(get_libdir),g" -i bin/rpl_run.sh || die
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DCMAKE_SKIP_RPATH=On
|
|
-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
|
|
-DCMAKE_PREFIX_PATH="${EPREFIX}/usr/include/hsa"
|
|
-DPROF_API_HEADER_PATH="${EPREFIX}"/usr/include/roctracer/ext
|
|
-DFILE_REORG_BACKWARD_COMPATIBILITY=OFF
|
|
-DUSE_PROF_API=1
|
|
)
|
|
|
|
cmake_src_configure
|
|
}
|