summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTavis Ormandy <taviso@gentoo.org>2003-07-07 13:23:49 +0000
committerTavis Ormandy <taviso@gentoo.org>2003-07-07 13:23:49 +0000
commitea07ad0cae85509173fe9b95433804d0df906f42 (patch)
tree6a06af883e9a5507c32eb34da167d3e635677ee6 /app-misc/mtail
parentinitial import (diff)
downloadhistorical-ea07ad0cae85509173fe9b95433804d0df906f42.tar.gz
historical-ea07ad0cae85509173fe9b95433804d0df906f42.tar.bz2
historical-ea07ad0cae85509173fe9b95433804d0df906f42.zip
initial import
Diffstat (limited to 'app-misc/mtail')
-rw-r--r--app-misc/mtail/Manifest3
-rw-r--r--app-misc/mtail/files/digest-mtail-1.1.11
-rw-r--r--app-misc/mtail/metadata.xml18
-rw-r--r--app-misc/mtail/mtail-1.1.1.ebuild23
4 files changed, 44 insertions, 1 deletions
diff --git a/app-misc/mtail/Manifest b/app-misc/mtail/Manifest
index a75b17c739e5..5839244cfd5a 100644
--- a/app-misc/mtail/Manifest
+++ b/app-misc/mtail/Manifest
@@ -1,3 +1,4 @@
-MD5 1fbbb333519fba3ee4768adf0ed1a7fc mtail-1.1.1.ebuild 487
+MD5 8d82e55d6bebd355b71efc033b15a834 mtail-1.1.1.ebuild 583
+MD5 c50d97bc8b12f89c625741c223ca267b ChangeLog 341
MD5 d8d8d641e0e3ddcd194f2d82609bdd8c metadata.xml 1580
MD5 d53c96ae2db32498bc23b9f5ee342a5d files/digest-mtail-1.1.1 58
diff --git a/app-misc/mtail/files/digest-mtail-1.1.1 b/app-misc/mtail/files/digest-mtail-1.1.1
new file mode 100644
index 000000000000..e42ef8641e28
--- /dev/null
+++ b/app-misc/mtail/files/digest-mtail-1.1.1
@@ -0,0 +1 @@
+MD5 166ccd3bfea04fdc81940b256d7d6f18 mtail-1.1.1.tgz 9124
diff --git a/app-misc/mtail/metadata.xml b/app-misc/mtail/metadata.xml
new file mode 100644
index 000000000000..b7fc4dc2dee1
--- /dev/null
+++ b/app-misc/mtail/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>taviso@gentoo.org</email>
+ <name>Tavis Ormandy</name>
+</maintainer>
+<longdescription>
+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. for details see the sample config file.
+
+mtail was inspired primarily by my dissatisfaction with colortail, which was written in c++, but i have since seen several other similar utilities, mostly in python, most notably generic colouriser and pctail. i believe that mtail offers various advantages over each of these other tools, including ease of configurability, lack of odd command-line options, and overall simplicity.
+
+for further information, see the README.
+</longdescription>
+</pkgmetadata>
diff --git a/app-misc/mtail/mtail-1.1.1.ebuild b/app-misc/mtail/mtail-1.1.1.ebuild
new file mode 100644
index 000000000000..e84c6a099989
--- /dev/null
+++ b/app-misc/mtail/mtail-1.1.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/mtail/mtail-1.1.1.ebuild,v 1.1 2003/07/07 13:23:41 taviso Exp $
+
+DESCRIPTION="tail workalike, that performs output colourising"
+HOMEPAGE="http://matt.immute.net/src/mtail/"
+SRC_URI="http://matt.immute.net/src/mtail/mtail-${PV}.tgz"
+LICENSE="as-is"
+
+SLOT="0"
+KEYWORDS="~x86 ~alpha"
+IUSE=""
+
+DEPEND=""
+
+RDEPEND="dev-lang/python"
+
+S=${WORKDIR}/${P}
+
+src_install() {
+ dobin mtail
+ dodoc CHANGES LICENSE mtailrc.sample README
+}