blob: 8f1314b4bb1823550bb75882ea44d108e88360f4 (
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
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake xdg
DESCRIPTION="(h)top like task monitor for AMD, NVIDIA, Intel and other GPUs"
HOMEPAGE="https://github.com/Syllo/nvtop"
if [[ "${PV}" == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/Syllo/${PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/Syllo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
IUSE="
unicode
video_cards_amdgpu
video_cards_freedreno
video_cards_intel
video_cards_nvidia
video_cards_panfrost
video_cards_panthor
"
RDEPEND="
sys-libs/ncurses:=[unicode(+)?]
video_cards_amdgpu? ( x11-libs/libdrm[video_cards_amdgpu] )
video_cards_freedreno? ( x11-libs/libdrm[video_cards_freedreno] )
video_cards_intel? ( virtual/udev )
video_cards_nvidia? ( x11-drivers/nvidia-drivers )
video_cards_panfrost? ( x11-libs/libdrm )
video_cards_panthor? ( x11-libs/libdrm )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
src_configure() {
local mycmakeargs=(
-DCURSES_NEED_WIDE=$(usex unicode)
-DAMDGPU_SUPPORT=$(usex video_cards_amdgpu)
-DINTEL_SUPPORT=$(usex video_cards_intel)
-DMSM_SUPPORT=$(usex video_cards_freedreno)
-DNVIDIA_SUPPORT=$(usex video_cards_nvidia)
-DPANFROST_SUPPORT=$(usex video_cards_panfrost)
-DPANTHOR_SUPPORT=$(usex video_cards_panthor)
)
cmake_src_configure
}
|