aboutsummaryrefslogtreecommitdiff
path: root/misc/mtail
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-09-19 13:01:00 +0000
committerRene Ladan <rene@FreeBSD.org>2020-09-19 13:01:00 +0000
commitb2e5755eb8260645c1601d3b2f26c3298ff0e858 (patch)
tree28d1874e1dbd4cb62d6fbf7efe56d0063931b0ab /misc/mtail
parentd8402760d93fe0876980bd6fe8578526f9254179 (diff)
downloadports-b2e5755eb8260645c1601d3b2f26c3298ff0e858.tar.gz
ports-b2e5755eb8260645c1601d3b2f26c3298ff0e858.zip
Notes
Diffstat (limited to 'misc/mtail')
-rw-r--r--misc/mtail/Makefile43
-rw-r--r--misc/mtail/distinfo3
-rw-r--r--misc/mtail/pkg-descr15
3 files changed, 0 insertions, 61 deletions
diff --git a/misc/mtail/Makefile b/misc/mtail/Makefile
deleted file mode 100644
index 67cb7108c408..000000000000
--- a/misc/mtail/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
-# $FreeBSD$
-
-PORTNAME= mtail
-PORTVERSION= 1.2.0
-PORTREVISION= 1
-CATEGORIES= misc
-MASTER_SITES= http://matt.immute.net/src/mtail/
-
-MAINTAINER= dmgk@FreeBSD.org
-COMMENT= Small tail workalike that performs output coloring
-
-LICENSE= MIT
-LICENSE_FILE= ${WRKSRC}/LICENSE
-
-DEPRECATED= Uses deprecated version of python
-EXPIRATION_DATE= 2020-09-15
-
-USES= python:2.7,run shebangfix tar:tgz
-
-SHEBANG_FILES= ${WRKSRC}/${PORTNAME}
-NO_BUILD= yes
-NO_ARCH= yes
-
-PLIST_FILES= bin/${PORTNAME}
-PORTDOCS= CHANGES README
-PORTEXAMPLES= mtailrc
-
-OPTIONS_DEFINE= DOCS EXAMPLES
-
-do-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
-
-do-install-DOCS-on:
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
- (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
-
-do-install-EXAMPLES-on:
- @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
- (cd ${WRKSRC} && ${INSTALL_DATA} mtailrc.sample \
- ${STAGEDIR}${EXAMPLESDIR}/mtailrc)
-
-.include <bsd.port.mk>
diff --git a/misc/mtail/distinfo b/misc/mtail/distinfo
deleted file mode 100644
index 89c0e8389a82..000000000000
--- a/misc/mtail/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-TIMESTAMP = 1469468477
-SHA256 (mtail-1.2.0.tgz) = 56607660a16d8d2ec2903edea557091502f52d34194adb844ccf99a11e495425
-SIZE (mtail-1.2.0.tgz) = 10798
diff --git a/misc/mtail/pkg-descr b/misc/mtail/pkg-descr
deleted file mode 100644
index 7e4c0fbe0092..000000000000
--- a/misc/mtail/pkg-descr
+++ /dev/null
@@ -1,15 +0,0 @@
-mtail is a small tail workalike that performs output coloring using ansi
-escape sequences (although the sequences are overridable, so you could cause
-it to output something else, e.g. html font tags, if you really wanted to).
-mtail is written in python, is fairly small, and should be relatively
-platform-independent.
-
-It has a config file that can contain an arbitrary number of entries, each
-of which has a series of regular expressions to indicate which files to color
-according to which entry. for each entry, the config file specifies a coloring
-scheme using regular expressions and, optionally, filters to apply to each
-line before coloring (for example, to strip out extra info, etc.). the config
-file also may override the predefined colors and the escape sequences (or
-whatever) actually used to perform the coloring.
-
-WWW: http://matt.immute.net/src/mtail/