New port: sysutils/cmdwatch - watches output of a specific command

PR:		ports/42169
Submitted by:	Brad Johnson <bjohnson@wedgie.org>
This commit is contained in:
Edwin Groothuis 2003-01-16 05:00:09 +00:00
parent ff608940cc
commit 1efa0b5ed1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=73224
7 changed files with 42 additions and 0 deletions

View File

@ -34,6 +34,7 @@
SUBDIR += cfengine2
SUBDIR += checkservice
SUBDIR += clockspeed
SUBDIR += cmdwatch
SUBDIR += colorize
SUBDIR += comconsole
SUBDIR += consolehm

View File

@ -0,0 +1,18 @@
# New ports collection makefile for: cmdwatch
# Date created: 8-28-2002
# Whom: bjohnson@wedgie.org
#
# $FreeBSD$
#
PORTNAME= cmdwatch
PORTVERSION= 0.2.0
CATEGORIES= sysutils
MASTER_SITES= ftp://wedgie.org/pub/ \
ftp://ftp.apexds.com/pub/
MAINTAINER= bjohnson@wedgie.org
MAN1= cmdwatch.1
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (cmdwatch-0.2.0.tar.gz) = 1f606291c5ea4ef988318e37946dc0fc

View File

@ -0,0 +1,15 @@
--- Makefile.orig Wed Jan 15 20:58:11 2003
+++ Makefile Wed Jan 15 20:58:53 2003
@@ -26,9 +26,9 @@
@rm -f *.o cmdwatch
install : all
- @install cmdwatch /usr/local/bin/
- @install -m 444 cmdwatch.1 /usr/local/man/man1/
+ @install cmdwatch ${PREFIX}/bin/
+ @install -m 444 cmdwatch.1 ${PREFIX}/man/man1/
@echo "Installing cmdwatch"
uninstall :
- @rm /usr/local/bin/cmdwatch
+ @rm ${PREFX}/bin/cmdwatch

View File

@ -0,0 +1 @@
Watches the output from a command at specified intervals

View File

@ -0,0 +1,5 @@
This is the familiar Linux "watch" utility originally written by Tony
Rems <rembo@unisoft.com> with help from Francois Pinard and more recently
Mike Coleman <mkc@acm.org>. I found it useful, so here it is. Basically
"watches" the output of a given command at a specified interval in a nice,
ncurses-based format.

View File

@ -0,0 +1 @@
bin/cmdwatch