blob: eff59469418fd6871bc4734549aa8da8a81fc24a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="AMD Debugger API"
HOMEPAGE="https://github.com/ROCm/ROCdbgapi"
SRC_URI="https://github.com/ROCm/ROCdbgapi/archive/rocm-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/ROCdbgapi-rocm-${PV}"
LICENSE="MIT"
SLOT="0/$(ver_cut 1-2)"
KEYWORDS="~amd64"
IUSE="doc"
BDEPEND="
doc? (
app-text/doxygen[dot]
virtual/latex-base
dev-texlive/texlive-latexextra
dev-texlive/texlive-plaingeneric
)
"
RDEPEND="
dev-libs/rocm-comgr:${SLOT}
dev-libs/rocr-runtime:${SLOT}
"
DEPEND="${RDEPEND}"
src_prepare() {
sed -e "s/-Werror//" \
-e "s/if(DOXYGEN_FOUND)/if(WITH_DOCS AND DOXYGEN_FOUND)/" \
-e "s:\${CMAKE_INSTALL_DATADIR}/html/amd-dbgapi:\${CMAKE_INSTALL_DOCDIR}/html:" \
-i CMakeLists.txt || die
# Clang 19 detects error
# https://github.com/ROCm/ROCdbgapi/issues/12
sed -e "s/->n_next/->m_next/g" -i src/utils.h || die
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DWITH_DOCS=$(usex doc ON OFF)
-DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
)
cmake_src_configure
}
src_compile() {
cmake_src_compile
use doc && cmake_src_compile doc
}
src_install() {
cmake_src_install
# remove unneeded copy
rm -r "${ED}/usr/share/doc/${PF}-asan" || die
}
|