summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfram Schlich <wschlich@gentoo.org>2006-10-31 15:43:32 +0000
committerWolfram Schlich <wschlich@gentoo.org>2006-10-31 15:43:32 +0000
commit0d44e4271f03aad104c542bee995eea31b254f9b (patch)
treeb52926bae48928377abaa137e3a472e9006e2746 /app-text
parentscsilib-headers were not installed in the previous versions. And as (diff)
downloadgentoo-2-0d44e4271f03aad104c542bee995eea31b254f9b.tar.gz
gentoo-2-0d44e4271f03aad104c542bee995eea31b254f9b.tar.bz2
gentoo-2-0d44e4271f03aad104c542bee995eea31b254f9b.zip
version bump
(Portage version: 2.1.1_pre4-r3)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/multitail/ChangeLog8
-rw-r--r--app-text/multitail/files/digest-multitail-4.2.03
-rw-r--r--app-text/multitail/multitail-4.2.0.ebuild31
3 files changed, 41 insertions, 1 deletions
diff --git a/app-text/multitail/ChangeLog b/app-text/multitail/ChangeLog
index 7fb4f072bb20..d0cdebdab565 100644
--- a/app-text/multitail/ChangeLog
+++ b/app-text/multitail/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-text/multitail
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.40 2006/06/20 19:57:17 wschlich Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/ChangeLog,v 1.41 2006/10/31 15:43:32 wschlich Exp $
+
+*multitail-4.2.0 (31 Oct 2006)
+
+ 31 Oct 2006; Wolfram Schlich <wschlich@gentoo.org>
+ +multitail-4.2.0.ebuild:
+ version bump
20 Jun 2006; Wolfram Schlich <wschlich@gentoo.org> metadata.xml:
maintainership takeover (ka0ttic is MIA)
diff --git a/app-text/multitail/files/digest-multitail-4.2.0 b/app-text/multitail/files/digest-multitail-4.2.0
new file mode 100644
index 000000000000..3e1efa7363cb
--- /dev/null
+++ b/app-text/multitail/files/digest-multitail-4.2.0
@@ -0,0 +1,3 @@
+MD5 4a5bd73d166973b117083ed513a9246e multitail-4.2.0.tgz 131431
+RMD160 c49c60b83e6df4d3f35665014b8f05941f3cbe8f multitail-4.2.0.tgz 131431
+SHA256 4ed1fc2c73538ac0fbbb895b1727218e230ceec8a0f670f34fcf37c793ab681e multitail-4.2.0.tgz 131431
diff --git a/app-text/multitail/multitail-4.2.0.ebuild b/app-text/multitail/multitail-4.2.0.ebuild
new file mode 100644
index 000000000000..a77c737b0084
--- /dev/null
+++ b/app-text/multitail/multitail-4.2.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/multitail-4.2.0.ebuild,v 1.1 2006/10/31 15:43:32 wschlich Exp $
+
+inherit flag-o-matic
+
+DESCRIPTION="Tail with multiple windows."
+HOMEPAGE="http://www.vanheusden.com/multitail/index.html"
+SRC_URI="http://www.vanheusden.com/multitail/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
+IUSE="debug"
+
+DEPEND="virtual/libc
+ sys-libs/ncurses"
+
+src_compile() {
+ use debug && append-flags "-D_DEBUG"
+ emake all || die "make failed"
+}
+
+src_install () {
+ dobin multitail
+ insinto /etc
+ doins multitail.conf
+ dodoc Changes INSTALL license.txt readme.txt
+ dohtml manual.html
+ doman multitail.1
+}