diff options
| author | Henry Hu <henry.hu.sh@gmail.com> | 2026-04-27 03:46:37 +0000 |
|---|---|---|
| committer | Vladimir Druzenko <vvd@FreeBSD.org> | 2026-04-27 03:51:09 +0000 |
| commit | b7c9c5d3b912684d2cc3a528f8bfbe71963ee613 (patch) | |
| tree | 75b0110957f6919755b1958004eb77c7192c8779 | |
| parent | 93c37129829ff6d5da3fea99a5edb3b097449286 (diff) | |
sysutils/nvtop: New port: GPU & Accelerator process monitoring
NVTOP stands for Neat Videocard TOP, a (h)top like task monitor for GPUs
and accelerators. It can handle multiple GPUs and print information
about them in a htop-familiar way.
Currently supported vendors are AMD (Linux amdgpu driver), Apple
(limited M1 & M2 support), Huawei (Ascend), Intel (Linux i915/Xe
drivers), NVIDIA (Linux proprietary divers), Qualcomm Adreno (Linux MSM
driver), Broadcom VideoCore (Linux v3d driver), Rockchip, MetaX (MXSML
driver), Enflame (Linux EFML driver).
PR: 294825
Sponsored by: UNIS Labs
| -rw-r--r-- | sysutils/Makefile | 1 | ||||
| -rw-r--r-- | sysutils/nvtop/Makefile | 19 | ||||
| -rw-r--r-- | sysutils/nvtop/distinfo | 3 | ||||
| -rw-r--r-- | sysutils/nvtop/pkg-descr | 9 | ||||
| -rw-r--r-- | sysutils/nvtop/pkg-plist | 5 |
5 files changed, 37 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index a3515c5c0044..eb54a0477e64 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -812,6 +812,7 @@ SUBDIR += nvimpager SUBDIR += nvme-cli SUBDIR += nvramtool + SUBDIR += nvtop SUBDIR += oak SUBDIR += obliterate SUBDIR += oc diff --git a/sysutils/nvtop/Makefile b/sysutils/nvtop/Makefile new file mode 100644 index 000000000000..9bc65d2827f4 --- /dev/null +++ b/sysutils/nvtop/Makefile @@ -0,0 +1,19 @@ +PORTNAME= nvtop +DISTVERSION= 3.3.2 +CATEGORIES= sysutils graphics + +MAINTAINER= henry.hu.sh@gmail.com +COMMENT= GPU & Accelerator process monitoring +WWW= https://github.com/Syllo/nvtop/ + +LICENSE= GPLv3 + +BUILD_DEPENDS= libdrm>0:graphics/libdrm \ + libsysinfo>0:devel/libsysinfo +LIB_DEPENDS= libudev.so:devel/libudev-devd + +USES= cmake ncurses pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= Syllo + +.include <bsd.port.mk> diff --git a/sysutils/nvtop/distinfo b/sysutils/nvtop/distinfo new file mode 100644 index 000000000000..329ca26e4672 --- /dev/null +++ b/sysutils/nvtop/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1777247949 +SHA256 (Syllo-nvtop-3.3.2_GH0.tar.gz) = 48a295f3b3a917cc851d1aa8b185c09fde3a1b1e741fc57d7fa96b3671271630 +SIZE (Syllo-nvtop-3.3.2_GH0.tar.gz) = 316591 diff --git a/sysutils/nvtop/pkg-descr b/sysutils/nvtop/pkg-descr new file mode 100644 index 000000000000..6876afc5fbdd --- /dev/null +++ b/sysutils/nvtop/pkg-descr @@ -0,0 +1,9 @@ +NVTOP stands for Neat Videocard TOP, a (h)top like task monitor for GPUs and +accelerators. It can handle multiple GPUs and print information about them +in a htop-familiar way. + +Currently supported vendors are AMD (Linux amdgpu driver), Apple (limited M1 +& M2 support), Huawei (Ascend), Intel (Linux i915/Xe drivers), NVIDIA (Linux +proprietary divers), Qualcomm Adreno (Linux MSM driver), Broadcom VideoCore +(Linux v3d driver), Rockchip, MetaX (MXSML driver), Enflame (Linux EFML +driver). diff --git a/sysutils/nvtop/pkg-plist b/sysutils/nvtop/pkg-plist new file mode 100644 index 000000000000..d425403dc2f3 --- /dev/null +++ b/sysutils/nvtop/pkg-plist @@ -0,0 +1,5 @@ +bin/nvtop +share/applications/nvtop.desktop +share/icons/hicolor/scalable/apps/nvtop.svg +share/man/man1/nvtop.1.gz +share/metainfo/io.github.syllo.nvtop.metainfo.xml |
