mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
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>
This commit is contained in:
parent
1de9574a01
commit
1e5b33d7a1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=108556
4 changed files with 44 additions and 0 deletions
|
@ -297,6 +297,7 @@
|
|||
SUBDIR += psmisc
|
||||
SUBDIR += pstack
|
||||
SUBDIR += pstree
|
||||
SUBDIR += pv
|
||||
SUBDIR += pwd_unmkdb
|
||||
SUBDIR += pwg
|
||||
SUBDIR += pwgen
|
||||
|
|
32
sysutils/pv/Makefile
Normal file
32
sysutils/pv/Makefile
Normal file
|
@ -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>
|
2
sysutils/pv/distinfo
Normal file
2
sysutils/pv/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
MD5 (pv-0.8.5.tar.bz2) = a6eeadbc2fbd9c23e329f47ff37b8c83
|
||||
SIZE (pv-0.8.5.tar.bz2) = 84289
|
9
sysutils/pv/pkg-descr
Normal file
9
sysutils/pv/pkg-descr
Normal file
|
@ -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
|
Loading…
Add table
Reference in a new issue