aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2004-05-06 21:41:40 +0800
committerpav <pav@FreeBSD.org>2004-05-06 21:41:40 +0800
commit57e83ff3ada161c2e0cf02f78e30349d6c856ec2 (patch)
tree373303d1ba963c791920ba7948468d6217cdb1cb /sysutils
parenta868b95ab2fd54d9d99b9e817e00b9a45decd705 (diff)
downloadfreebsd-ports-graphics-57e83ff3ada161c2e0cf02f78e30349d6c856ec2.tar.gz
freebsd-ports-graphics-57e83ff3ada161c2e0cf02f78e30349d6c856ec2.tar.zst
freebsd-ports-graphics-57e83ff3ada161c2e0cf02f78e30349d6c856ec2.zip
Pipe Viewer (pv) is a terminal-based tool for monitoring the
progress of data through a pipeline. It can be inserted into any normal pipeline between two processes to give a visual indication of how quickly data is passing through, how long it has taken, how near to completion it is, and an estimate of how long it will be until completion. Author: Andrew Wood <andrew.wood@ivarch.com> WWW: http://www.ivarch.com/programs/pv.shtml PR: ports/66309 Submitted by: Daniel Roethlisberger <daniel@roe.ch>
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile1
-rw-r--r--sysutils/pv/Makefile32
-rw-r--r--sysutils/pv/distinfo2
-rw-r--r--sysutils/pv/pkg-descr9
4 files changed, 44 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 36b33c2cc41..1733b6ceea2 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -297,6 +297,7 @@
SUBDIR += psmisc
SUBDIR += pstack
SUBDIR += pstree
+ SUBDIR += pv
SUBDIR += pwd_unmkdb
SUBDIR += pwg
SUBDIR += pwgen
diff --git a/sysutils/pv/Makefile b/sysutils/pv/Makefile
new file mode 100644
index 00000000000..bddddf69538
--- /dev/null
+++ b/sysutils/pv/Makefile
@@ -0,0 +1,32 @@
+# New ports collection makefile for: pv
+# Date created: 04 May 2004
+# Whom: Daniel Roethlisberger <daniel@roe.ch>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pv
+PORTVERSION= 0.8.5
+CATEGORIES= sysutils
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
+ http://dragon.roe.ch/mirrors/distfiles/pv/
+MASTER_SITE_SUBDIR= pipeviewer
+
+MAINTAINER= daniel@roe.ch
+COMMENT= A pipe throughput monitor
+
+USE_BZIP2= yes
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+MAN1= pv.1
+INFO= pv
+
+PLIST_FILES= bin/pv
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/pv ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/doc/quickref.1 ${PREFIX}/man/man1/pv.1
+ ${INSTALL_MAN} ${WRKSRC}/doc/pv.info ${PREFIX}/info
+ install-info ${PREFIX}/info/pv.info ${PREFIX}/info/dir
+
+.include <bsd.port.mk>
diff --git a/sysutils/pv/distinfo b/sysutils/pv/distinfo
new file mode 100644
index 00000000000..8af1f4501fc
--- /dev/null
+++ b/sysutils/pv/distinfo
@@ -0,0 +1,2 @@
+MD5 (pv-0.8.5.tar.bz2) = a6eeadbc2fbd9c23e329f47ff37b8c83
+SIZE (pv-0.8.5.tar.bz2) = 84289
diff --git a/sysutils/pv/pkg-descr b/sysutils/pv/pkg-descr
new file mode 100644
index 00000000000..c5209d35240
--- /dev/null
+++ b/sysutils/pv/pkg-descr
@@ -0,0 +1,9 @@
+Pipe Viewer (pv) is a terminal-based tool for monitoring the
+progress of data through a pipeline. It can be inserted into
+any normal pipeline between two processes to give a visual
+indication of how quickly data is passing through, how long
+it has taken, how near to completion it is, and an estimate
+of how long it will be until completion.
+
+Author: Andrew Wood <andrew.wood@ivarch.com>
+WWW: http://www.ivarch.com/programs/pv.shtml