blob: 7e6a0a2974a7872157a4d1f5c9070e72ca0e3847 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/logmon/logmon-0.4.4.ebuild,v 1.7 2006/05/07 20:39:19 corsair Exp $
inherit eutils
MY_P="LogMon-${PV}"
DESCRIPTION="Split-screen terminal/ncurses based log viewer"
HOMEPAGE="http://www.edespot.com/code/LogMon/"
SRC_URI="http://www.edespot.com/code/LogMon/${MY_P}.tar.bz2"
S="${WORKDIR}/${MY_P}"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~amd64 ~ppc ppc64 x86"
IUSE=""
DEPEND="sys-libs/ncurses"
src_unpack() {
unpack ${A}
cd "${S}"
# bug 119403 - should be in upstream next release
epatch "${FILESDIR}"/${PN}-0.4.4-char2int.diff
}
src_install() {
dobin logmon || die
dodoc AUTHORS ChangeLog README TODO
}
|