svn commit: r530963 - in head/graphics: . ttyplot
Mateusz Piotrowski
0mp at FreeBSD.org
Tue Apr 7 10:27:21 UTC 2020
Author: 0mp
Date: Tue Apr 7 10:27:20 2020
New Revision: 530963
URL: https://svnweb.freebsd.org/changeset/ports/530963
Log:
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
Added:
head/graphics/ttyplot/
head/graphics/ttyplot/Makefile (contents, props changed)
head/graphics/ttyplot/distinfo (contents, props changed)
head/graphics/ttyplot/pkg-descr (contents, props changed)
Modified:
head/graphics/Makefile
Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile Tue Apr 7 10:19:40 2020 (r530962)
+++ head/graphics/Makefile Tue Apr 7 10:27:20 2020 (r530963)
@@ -1020,6 +1020,7 @@
SUBDIR += tkpng
SUBDIR += togl
SUBDIR += ttygif
+ SUBDIR += ttyplot
SUBDIR += tumble
SUBDIR += tweeny
SUBDIR += ufraw
Added: head/graphics/ttyplot/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/ttyplot/Makefile Tue Apr 7 10:27:20 2020 (r530963)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME= ttyplot
+DISTVERSION= 1.4
+CATEGORIES= graphics
+
+MAINTAINER= 0mp at 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>
Added: head/graphics/ttyplot/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/ttyplot/distinfo Tue Apr 7 10:27:20 2020 (r530963)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1586254468
+SHA256 (tenox7-ttyplot-1.4_GH0.tar.gz) = 11974754981406d19cfa16865b59770faaf3ade8d909d9a0134dc56e00d29bd4
+SIZE (tenox7-ttyplot-1.4_GH0.tar.gz) = 46922
Added: head/graphics/ttyplot/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/graphics/ttyplot/pkg-descr Tue Apr 7 10:27:20 2020 (r530963)
@@ -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
More information about the svn-ports-head
mailing list