diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-05-14 21:27:03 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-05-14 21:27:03 +0000 |
commit | b7908e3ac941e3fad290d7139cda82ec957c8dce (patch) | |
tree | 87e4bfc0175f02d3ce1dab66d007e10ff4eb8fbb /app-misc | |
parent | New ebuild downloads the patches itself. (diff) | |
download | gentoo-2-b7908e3ac941e3fad290d7139cda82ec957c8dce.tar.gz gentoo-2-b7908e3ac941e3fad290d7139cda82ec957c8dce.tar.bz2 gentoo-2-b7908e3ac941e3fad290d7139cda82ec957c8dce.zip |
Close bug 2550.
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/colortail/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/colortail/colortail-0.3.0-r1.ebuild | 38 |
2 files changed, 45 insertions, 1 deletions
diff --git a/app-misc/colortail/ChangeLog b/app-misc/colortail/ChangeLog index 6e89a16d95c4..fa17f636e3d5 100644 --- a/app-misc/colortail/ChangeLog +++ b/app-misc/colortail/ChangeLog @@ -1,7 +1,13 @@ # ChangeLog for app-misc/colortail # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/colortail/ChangeLog,v 1.2 2002/04/27 23:08:35 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/colortail/ChangeLog,v 1.3 2002/05/14 21:27:03 g2boojum Exp $ +*colortail-0.3.0-r1 (14 May 2002) + + 14 May 2002; Grant Goodyear <g2boojum@gentoo.org> : + + Added a symlink from /usr/bin/wrappers/tail to /usr/bin/colortail. + *colortail-0.3.0 (12 Feb 2002) 12 Feb 2002; mike polniak <mikpolniak@adelphia.net> colortail-0.3.0.ebuild : diff --git a/app-misc/colortail/colortail-0.3.0-r1.ebuild b/app-misc/colortail/colortail-0.3.0-r1.ebuild new file mode 100644 index 000000000000..168d34f6b7bd --- /dev/null +++ b/app-misc/colortail/colortail-0.3.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-misc/colortail/colortail-0.3.0-r1.ebuild,v 1.1 2002/05/14 21:27:03 g2boojum Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Colortail custom colors your log files and works like tail" +SRC_URI="http://www.student.hk-r.se/~pt98jan/colortail-0.3.0.tar.gz" +HOMEPAGE="http://www.student.hk-r.se/~pt98jan/colortail.html" + +DEPEND="virtual/glibc" + +src_compile() { + ./configure --prefix=/usr --host=${CHOST} + make || die +} + +src_install() { + + make DESTDIR=${D} install || die + dodoc README example-conf/conf* + dodir /usr/bin/wrappers + dosym /usr/bin/colortail /usr/bin/wrappers/tail +} + +pkg_postinst() { + if grep /usr/bin/wrappers /etc/profile > /dev/null + then + echo "/etc/profile already updated for wrappers" + else + echo "Add this to the end of your ${ROOT}etc/profile:" + echo + echo "#Put /usr/bin/wrappers in path before /usr/bin" + echo 'export PATH=/usr/bin/wrappers:${PATH}' + fi +} + + + |