blob: 655cd0313dd8c743ad2b7fdce8d28b578057faa7 (
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
|
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake optfeature toolchain-funcs xdg
DESCRIPTION="A monitor of resources"
HOMEPAGE="https://github.com/aristocratos/btop"
SRC_URI="
https://github.com/aristocratos/btop/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
BDEPEND="
app-text/lowdown
"
DOCS=( "README.md" "CHANGELOG.md" )
pkg_setup() {
if [[ "${MERGE_TYPE}" != "binary" ]]; then
if tc-is-clang ; then
if [[ "$(clang-major-version)" -lt 16 ]]; then
die "sys-process/btop requires >=sys-devel/clang-16.0.0 to build."
fi
elif ! tc-is-gcc ; then
die "$(tc-getCXX) is not a supported compiler. Please use sys-devel/gcc or >=sys-devel/clang-16.0.0 instead."
fi
fi
}
src_configure() {
local mycmakeargs=(
-DBTOP_GPU=true
-DBTOP_RSMI_STATIC=false
-DBTOP_STATIC=false
# These settings can be controlled in make.conf CFLAGS/CXXFLAGS
-DBTOP_FORTIFY=false
-DBTOP_LTO=false
-DBTOP_WERROR=false
-DBTOP_USE_MOLD=false
)
cmake_src_configure
}
pkg_postinst() {
xdg_pkg_postinst
optfeature "GPU monitoring support (Radeon GPUs)" dev-util/rocm-smi
optfeature "GPU monitoring support (NVIDIA GPUs)" x11-drivers/nvidia-drivers
}
|