blob: 2dcfed761a3924090f37f82ae6eef0389943be1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/multitail/multitail-5.2.2.ebuild,v 1.1 2008/08/19 12:15:16 pva Exp $
inherit flag-o-matic toolchain-funcs
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 ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE="debug"
DEPEND="sys-libs/ncurses"
src_compile() {
tc-export CC
use debug && append-flags "-D_DEBUG"
emake all || die "make failed"
}
src_install () {
dobin multitail
insinto /etc
doins multitail.conf
insinto /etc/multitail/
doins colors-example.pl colors-example.sh convert-geoip.pl convert-simple.pl
dodoc Changes readme.txt thanks.txt
dohtml manual.html manual-nl.html
doman multitail.1
}
|