1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

New port: graphics/ttyplot

ttyplot is a realtime plotting utility for terminal with data input from
stdin.

It takes data from standard input / UNIX pipeline, most commonly some tool
like ping, snmpget, netstat, ifconfig, sar, vmstat, etc., and plots in text
mode on a terminal in real time.

It supports rate calculation for counters and up to two graphs on a single
display using reverse video for the second line.

WWW: https://github.com/tenox7/ttyplot
This commit is contained in:
Mateusz Piotrowski 2020-04-07 10:27:20 +00:00
parent 88630fdbf6
commit e1ed2cf149
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=530963
4 changed files with 38 additions and 0 deletions

View File

@ -1020,6 +1020,7 @@
SUBDIR += tkpng
SUBDIR += togl
SUBDIR += ttygif
SUBDIR += ttyplot
SUBDIR += tumble
SUBDIR += tweeny
SUBDIR += ufraw

24
graphics/ttyplot/Makefile Normal file
View File

@ -0,0 +1,24 @@
# $FreeBSD$
PORTNAME= ttyplot
DISTVERSION= 1.4
CATEGORIES= graphics
MAINTAINER= 0mp@FreeBSD.org
COMMENT= Realtime plotting utility for TTY with data input from stdin
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= ncurses
USE_GITHUB= yes
GH_ACCOUNT= tenox7
MAKE_ARGS= CFLAGS="${CFLAGS}"
PLIST_FILES= bin/${PORTNAME}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1586254468
SHA256 (tenox7-ttyplot-1.4_GH0.tar.gz) = 11974754981406d19cfa16865b59770faaf3ade8d909d9a0134dc56e00d29bd4
SIZE (tenox7-ttyplot-1.4_GH0.tar.gz) = 46922

View File

@ -0,0 +1,10 @@
ttyplot is a realtime plotting utility for terminal with data input from stdin.
It takes data from standard input / UNIX pipeline, most commonly some tool like
ping, snmpget, netstat, ifconfig, sar, vmstat, etc., and plots in text mode on
a terminal in real time.
It supports rate calculation for counters and up to two graphs on a single
display using reverse video for the second line.
WWW: https://github.com/tenox7/ttyplot