26 lines
611 B
Bash
26 lines
611 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-admin/xtail/xtail-2.1.ebuild,v 1.22 2009/04/07 03:12:23 mr_bones_ Exp $
|
|
|
|
EAPI=2
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Tail multiple logfiles at once, even if rotated"
|
|
HOMEPAGE="http://www.unicom.com/sw/xtail/"
|
|
SRC_URI="http://www.unicom.com/sw/xtail/${P}.tar.gz"
|
|
|
|
LICENSE="as-is"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc sparc x86"
|
|
IUSE=""
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
emake || die "emake failed"
|
|
}
|
|
|
|
src_install() {
|
|
dobin xtail || die
|
|
doman xtail.1 || die
|
|
dodoc README
|
|
}
|