summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-08-26 03:35:07 +0000
committerMike Frysinger <vapier@gentoo.org>2004-08-26 03:35:07 +0000
commitd9c2f62327b3e667a190483f6bceccc974995c40 (patch)
tree312b30b387df48f560da2bc3aca2e24b78fd4a7e /app-misc/grc/grc-1.0.6.ebuild
parentAdded x86-fbsd to the list of archs (diff)
downloadgentoo-2-d9c2f62327b3e667a190483f6bceccc974995c40.tar.gz
gentoo-2-d9c2f62327b3e667a190483f6bceccc974995c40.tar.bz2
gentoo-2-d9c2f62327b3e667a190483f6bceccc974995c40.zip
more color baby !
Diffstat (limited to 'app-misc/grc/grc-1.0.6.ebuild')
-rw-r--r--app-misc/grc/grc-1.0.6.ebuild21
1 files changed, 15 insertions, 6 deletions
diff --git a/app-misc/grc/grc-1.0.6.ebuild b/app-misc/grc/grc-1.0.6.ebuild
index 495bf6ef866c..d0d362ec6416 100644
--- a/app-misc/grc/grc-1.0.6.ebuild
+++ b/app-misc/grc/grc-1.0.6.ebuild
@@ -1,10 +1,12 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/grc/grc-1.0.6.ebuild,v 1.6 2004/06/24 22:14:26 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/grc/grc-1.0.6.ebuild,v 1.7 2004/08/26 03:35:07 vapier Exp $
+
+inherit eutils
DESCRIPTION="Generic Colouriser is yet another colouriser for beautifying your logfiles or output of commands"
-SRC_URI="http://melkor.dnp.fmph.uniba.sk/~garabik/grc/grc_${PV}.tar.gz"
HOMEPAGE="http://melkor.dnp.fmph.uniba.sk/~garabik/grc.html"
+SRC_URI="http://melkor.dnp.fmph.uniba.sk/~garabik/grc/grc_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
@@ -13,12 +15,19 @@ IUSE=""
RDEPEND="dev-lang/python"
-src_install() {
+src_unpack() {
+ unpack ${A}
+ cp -rf ${S}{,.orig}
+ cd ${S}
+ epatch ${FILESDIR}/${PV}-support-more-files.patch
+}
+
+src_install() {
insinto /usr/share/grc
- doins conf.*
+ doins conf.* ${FILESDIR}/conf.* || die "share files"
insinto /etc
- doins grc.conf
- dobin grc grcat
+ doins grc.conf || die "conf"
+ dobin grc grcat || die "dobin"
dodoc README INSTALL TODO CHANGES CREDITS
doman grc.1 grcat.1
}