blob: 9d4b3a402cc3d45fb434368cd63ec04be241dd23 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nb/nb-0.6.5-r1.ebuild,v 1.2 2010/02/11 15:57:34 jer Exp $
inherit eutils autotools
DESCRIPTION="Nodebrain is a tool to monitor and do event correlation."
HOMEPAGE="http://nodebrain.sourceforge.net/"
SRC_URI="mirror://sourceforge/nodebrain/${P}-source.tar.gz"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="dev-lang/perl"
RDEPEND="!sys-boot/netboot"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-CFLAGS-as-needed.patch"
eautoreconf
}
src_install() {
#DIR="${D}/usr" ./install-nb || die "install failed"
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS README THANKS sample/*
dohtml html/*
}
|