mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
Signed-off-by: Yiyang Wu <xgreenlandforwyy@gmail.com> Signed-off-by: Benda Xu <heroxbd@gentoo.org>
32 lines
916 B
Bash
32 lines
916 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
if [[ ${PV} == *9999 ]] ; then
|
|
EGIT_REPO_URI="https://github.com/RadeonOpenCompute/rocminfo/"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://github.com/RadeonOpenCompute/rocminfo/archive/rocm-${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
S="${WORKDIR}/rocminfo-rocm-${PV}"
|
|
fi
|
|
|
|
DESCRIPTION="ROCm Application for Reporting System Info"
|
|
HOMEPAGE="https://github.com/RadeonOpenCompute/rocminfo"
|
|
LICENSE="UoI-NCSA"
|
|
SLOT="0/$(ver_cut 1-2)"
|
|
|
|
RDEPEND=">=dev-libs/rocr-runtime-${PV}"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=("${FILESDIR}/${PN}-5.1.3-detect-builtin-amdgpu.patch")
|
|
|
|
src_prepare() {
|
|
sed -e "/CPACK_RESOURCE_FILE_LICENSE/d" -i CMakeLists.txt || die
|
|
sed -e "/num_change_since_prev_pkg(/cset(NUM_COMMITS 0)" -i cmake_modules/utils.cmake || die # Fix QA issue on "git not found"
|
|
cmake_src_prepare
|
|
}
|