mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-11 07:44:12 +02:00
75 lines
1.5 KiB
Bash
75 lines
1.5 KiB
Bash
# Copyright 2024-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# Autogenerated by pycargoebuild 0.13.5
|
|
|
|
EAPI=8
|
|
|
|
CRATES=""
|
|
RUST_MIN_VER="1.85.0"
|
|
|
|
declare -A GIT_CRATES=(
|
|
[libdrm_amdgpu_sys]='https://github.com/Umio-Yasuno/libdrm-amdgpu-sys-rs;69196107b2a8ab8dabfd67265f004f16f146a308;libdrm-amdgpu-sys-rs-%commit%'
|
|
)
|
|
|
|
inherit desktop cargo
|
|
|
|
DESCRIPTION="Tool to display AMDGPU usage."
|
|
HOMEPAGE="https://github.com/Umio-Yasuno/amdgpu_top"
|
|
SRC_URI="
|
|
https://github.com/Umio-Yasuno/amdgpu_top/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz
|
|
${CARGO_CRATE_URIS}
|
|
"
|
|
SRC_URI+=" https://github.com/gentoo-crate-dist/${PN}/releases/download/v${PV}/${P}-crates.tar.xz"
|
|
|
|
LICENSE="MIT"
|
|
# Dependent crate licenses
|
|
LICENSE+="
|
|
Apache-2.0 BSD Boost-1.0 CC0-1.0 ISC MIT OFL-1.1
|
|
UbuntuFontLicense-1.0 Unicode-3.0 ZLIB
|
|
"
|
|
SLOT="0"
|
|
KEYWORDS="amd64"
|
|
|
|
IUSE="man"
|
|
|
|
DEPEND="
|
|
x11-libs/libdrm:=[video_cards_amdgpu]
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="
|
|
man? (
|
|
|| (
|
|
app-text/lowdown
|
|
virtual/pandoc
|
|
)
|
|
)
|
|
"
|
|
|
|
QA_PREBUILT="/usr/bin/amdgpu_top"
|
|
|
|
DOCS=(
|
|
README.md
|
|
)
|
|
|
|
src_compile() {
|
|
cargo_src_compile
|
|
|
|
if use man; then
|
|
local docgen=lowdown
|
|
|
|
# prefer pandoc if it's installed
|
|
has_version virtual/pandoc && docgen=pandoc
|
|
|
|
"${docgen}" docs/man.${PN}.md -s -t man -o docs/${PN}.1 \
|
|
|| die "failed to generate man page with ${docgen}"
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
cargo_src_install
|
|
|
|
use man && doman docs/${PN}.1
|
|
domenu assets/*.desktop
|
|
dodoc "${DOCS[@]}" docs/*
|
|
}
|