diff options
author | edwin <edwin@FreeBSD.org> | 2003-01-12 00:09:16 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-01-12 00:09:16 +0000 |
commit | 8fbdf216ae4283b89a8d9b00f6b636e06e0bfc79 (patch) | |
tree | cca76a43d851925584bee2bb34518dfc0db313e1 /sysutils/wtail | |
parent | a4b4e419b658a4d5353532fad92baa3be3d3ea63 (diff) | |
download | FreeBSD-ports-8fbdf216ae4283b89a8d9b00f6b636e06e0bfc79.zip FreeBSD-ports-8fbdf216ae4283b89a8d9b00f6b636e06e0bfc79.tar.gz |
wtail does the equivalent of tail -f on several files at once.
The screen is split into as many parts as there are files to watch.
Compiles on both -STABLE and -CURRENT.
PR: ports/46958
Submitted by: Michael L. Hostbaek <mich@freebsdcluster.org>
Diffstat (limited to 'sysutils/wtail')
-rw-r--r-- | sysutils/wtail/Makefile | 23 | ||||
-rw-r--r-- | sysutils/wtail/distinfo | 1 | ||||
-rw-r--r-- | sysutils/wtail/files/patch-aa | 10 | ||||
-rw-r--r-- | sysutils/wtail/pkg-comment | 1 | ||||
-rw-r--r-- | sysutils/wtail/pkg-descr | 8 | ||||
-rw-r--r-- | sysutils/wtail/pkg-plist | 3 |
6 files changed, 46 insertions, 0 deletions
diff --git a/sysutils/wtail/Makefile b/sysutils/wtail/Makefile new file mode 100644 index 0000000..005f902 --- /dev/null +++ b/sysutils/wtail/Makefile @@ -0,0 +1,23 @@ +# ex:ts=8 +# New ports collection makefile for: wtail +# Date created: Jan 11, 2003 +# Whom: mich@freebsdcluster.org +# +# $FreeBSD$ +# + +PORTNAME= wtail +PORTVERSION= 0.2.0 +CATEGORIES= sysutils +MASTER_SITES= http://www.teaser.fr/~amajorel/wtail/ + +MAINTAINER= mich@freebsdcluster.org + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/wtail ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README +.endif + +.include <bsd.port.mk> diff --git a/sysutils/wtail/distinfo b/sysutils/wtail/distinfo new file mode 100644 index 0000000..79e9e51 --- /dev/null +++ b/sysutils/wtail/distinfo @@ -0,0 +1 @@ +MD5 (wtail-0.2.0.tar.gz) = b3a05a820703302e26b591f7146c696d diff --git a/sysutils/wtail/files/patch-aa b/sysutils/wtail/files/patch-aa new file mode 100644 index 0000000..c835cc2 --- /dev/null +++ b/sysutils/wtail/files/patch-aa @@ -0,0 +1,10 @@ +--- Makefile.orig Fri Jan 10 20:55:21 2003 ++++ Makefile Fri Jan 10 20:55:36 2003 +@@ -52,6 +52,7 @@ + arc=$(ARC); cd $(TMPDIR) && tar -cf - $$arc | gzip >$$arc.tar.gz + + wtail: $(OBJ) ++ $(CC) $(LDFLAGS) -o $@ $(OBJ) + + version.c: VERSION + cat VERSION | sed 's/.*/const char version[] = "&";/' >$@ diff --git a/sysutils/wtail/pkg-comment b/sysutils/wtail/pkg-comment new file mode 100644 index 0000000..e358390 --- /dev/null +++ b/sysutils/wtail/pkg-comment @@ -0,0 +1 @@ +Wtail does the equivalent of tail -f on several files at once diff --git a/sysutils/wtail/pkg-descr b/sysutils/wtail/pkg-descr new file mode 100644 index 0000000..a43369b --- /dev/null +++ b/sysutils/wtail/pkg-descr @@ -0,0 +1,8 @@ +wtail does the equivalent of tail -f on several files at once. The screen +is split into as many parts as there are files to watch. + +WWW: http://www.teaser.fr/~amajorel/wtail/ +AUTHOR: Andre Majorel <amajorel@teaser.fr> + + - Michael L. Hostbaek + mich@freebsdcluster.org diff --git a/sysutils/wtail/pkg-plist b/sysutils/wtail/pkg-plist new file mode 100644 index 0000000..41907b4 --- /dev/null +++ b/sysutils/wtail/pkg-plist @@ -0,0 +1,3 @@ +bin/wtail +%%PORTDOCS%%share/doc/wtail/README +%%PORTDOCS%%@dirrm share/doc/wtail |