# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=3 inherit eutils DESCRIPTION="A tool for watching multiple log files" HOMEPAGE="http://offog.org/code/" SRC_URI="http://offog.org/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="" RDEPEND="${DEPEND}" src_prepare() { epatch "${FILESDIR}"/${P}-color.patch } src_configure() { econf --with-posix-regex } src_compile() { emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc NEWS README || die "dodoc failed" }