1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-22 08:58:47 +00:00

tail variant designed for web developers monitoring logfiles

MonkeyTail allows a user to tail multiple files on both local and remote hosts
and clearly marks inactivity by putting 5 newlines in the output whenever a
pause in output over 3 seconds is detected.

MonkeyTail is implemented a fairly simple wrapper script around standard tail,
ssh, and sudo.

WWW:	http://dollyfish.net.nz/projects/monkeytail

PR:		ports/127351
Submitted by:	Yi-Jheng Lin <yzlin at cs.nctu.edu.tw>
This commit is contained in:
Martin Wilke 2008-09-26 23:34:14 +00:00
parent f7acb6707d
commit d20c85f90e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=220874
4 changed files with 53 additions and 0 deletions

View File

@ -446,6 +446,7 @@
SUBDIR += modules
SUBDIR += monit
SUBDIR += monitord
SUBDIR += monkeytail
SUBDIR += mono-kmod
SUBDIR += most
SUBDIR += mount.app

View File

@ -0,0 +1,40 @@
# New ports collection makefile for: monkeytail
# Date created: 2008-09-13
# Whom: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw>
#
# $FreeBSD$
#
PORTNAME= monkeytail
PORTVERSION= 0.3.0
CATEGORIES= sysutils
MASTER_SITES= http://git.dollyfish.net.nz/releases/${MASTER_SITE_SUBDIR}/
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= yzlin@cs.nctu.edu.tw
COMMENT= A multi-file tail on both local and remote hosts
RUN_DEPENDS= p5-IO>=0:${PORTSDIR}/devel/p5-IO \
${SITE_PERL}/Config/General.pm:${PORTSDIR}/devel/p5-Config-General \
${SITE_PERL}/Getopt/Declare.pm:${PORTSDIR}/devel/p5-Getopt-Declare
USE_PERL5_RUN= yes
NO_BUILD= yes
PORTDOCS= COPYING README
PLIST_FILES= bin/mtail
MAN1= mtail.1
MAN5= mtailrc.5
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/mtail ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/doc/mtail.1 ${MAN1PREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/mtailrc.5 ${MAN5PREFIX}/man/man5
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_MAN} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (monkeytail-0.3.0.tar.gz) = 92ce6f85672c4e9654fd8b13f4582936
SHA256 (monkeytail-0.3.0.tar.gz) = 925eaf4bb7924c3a24891f4725bc583bed21bdaf648e24cd76f9212afd9e0575
SIZE (monkeytail-0.3.0.tar.gz) = 16486

View File

@ -0,0 +1,9 @@
tail variant designed for web developers monitoring logfiles
MonkeyTail allows a user to tail multiple files on both local and remote hosts
and clearly marks inactivity by putting 5 newlines in the output whenever a
pause in output over 3 seconds is detected.
MonkeyTail is implemented a fairly simple wrapper script around standard tail,
ssh, and sudo.
WWW: http://dollyfish.net.nz/projects/monkeytail