mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-20 20:43:09 -04:00
sys-process/nvtop: add 3.0.2, fix 9999
Signed-off-by: YiFei Zhu <zhuyifei1999@gmail.com>
This commit is contained in:
49
sys-process/nvtop/nvtop-3.0.2.ebuild
Normal file
49
sys-process/nvtop/nvtop-3.0.2.ebuild
Normal file
@@ -0,0 +1,49 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit cmake xdg
|
||||
|
||||
DESCRIPTION="NVIDIA GPUs htop like monitoring tool"
|
||||
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_intel video_cards_amdgpu video_cards_nvidia video_cards_freedreno"
|
||||
|
||||
RDEPEND="
|
||||
video_cards_intel? ( virtual/udev )
|
||||
video_cards_amdgpu? ( x11-libs/libdrm[video_cards_amdgpu] )
|
||||
video_cards_nvidia? ( x11-drivers/nvidia-drivers )
|
||||
video_cards_freedreno? ( x11-libs/libdrm[video_cards_freedreno] )
|
||||
sys-libs/ncurses:0=
|
||||
"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr"
|
||||
-DCURSES_NEED_WIDE=$(usex unicode)
|
||||
-DINTEL_SUPPORT=$(usex video_cards_intel)
|
||||
-DNVIDIA_SUPPORT=$(usex video_cards_nvidia)
|
||||
-DAMDGPU_SUPPORT=$(usex video_cards_amdgpu)
|
||||
-DMSM_SUPPORT=$(usex video_cards_freedreno)
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
Reference in New Issue
Block a user