diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-01-16 05:00:09 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-01-16 05:00:09 +0000 |
commit | 1efa0b5ed13614474ffdc6ced4fa8b378e1573fb (patch) | |
tree | 02e6a192fc45a9709457150f5ad88a639980ac33 /sysutils | |
parent | New port: mail/hotway, a POP3 gateway for Hotmail/MSN mail (diff) |
New port: sysutils/cmdwatch - watches output of a specific command
PR: ports/42169
Submitted by: Brad Johnson <bjohnson@wedgie.org>
Notes
Notes:
svn path=/head/; revision=73224
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/cmdwatch/Makefile | 18 | ||||
-rw-r--r-- | sysutils/cmdwatch/distinfo | 1 | ||||
-rw-r--r-- | sysutils/cmdwatch/files/patch-Makefile | 15 | ||||
-rw-r--r-- | sysutils/cmdwatch/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/cmdwatch/pkg-descr | 5 | ||||
-rw-r--r-- | sysutils/cmdwatch/pkg-plist | 1 |
7 files changed, 42 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index b3feb218aaa4..68b3054d6953 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -34,6 +34,7 @@ SUBDIR += cfengine2 SUBDIR += checkservice SUBDIR += clockspeed + SUBDIR += cmdwatch SUBDIR += colorize SUBDIR += comconsole SUBDIR += consolehm diff --git a/sysutils/cmdwatch/Makefile b/sysutils/cmdwatch/Makefile new file mode 100644 index 000000000000..36dcd487d9dc --- /dev/null +++ b/sysutils/cmdwatch/Makefile @@ -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> diff --git a/sysutils/cmdwatch/distinfo b/sysutils/cmdwatch/distinfo new file mode 100644 index 000000000000..2e9cfe6f30a1 --- /dev/null +++ b/sysutils/cmdwatch/distinfo @@ -0,0 +1 @@ +MD5 (cmdwatch-0.2.0.tar.gz) = 1f606291c5ea4ef988318e37946dc0fc diff --git a/sysutils/cmdwatch/files/patch-Makefile b/sysutils/cmdwatch/files/patch-Makefile new file mode 100644 index 000000000000..ab4f5b5b70b7 --- /dev/null +++ b/sysutils/cmdwatch/files/patch-Makefile @@ -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 diff --git a/sysutils/cmdwatch/pkg-comment b/sysutils/cmdwatch/pkg-comment new file mode 100644 index 000000000000..5d9723f8eb01 --- /dev/null +++ b/sysutils/cmdwatch/pkg-comment @@ -0,0 +1 @@ +Watches the output from a command at specified intervals diff --git a/sysutils/cmdwatch/pkg-descr b/sysutils/cmdwatch/pkg-descr new file mode 100644 index 000000000000..732cef55638a --- /dev/null +++ b/sysutils/cmdwatch/pkg-descr @@ -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. diff --git a/sysutils/cmdwatch/pkg-plist b/sysutils/cmdwatch/pkg-plist new file mode 100644 index 000000000000..aeacad5df57e --- /dev/null +++ b/sysutils/cmdwatch/pkg-plist @@ -0,0 +1 @@ +bin/cmdwatch |