blob: 583919401e7671496bfd1735d2266a35cf5f350e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nfdump/nfdump-1.5.1.ebuild,v 1.2 2008/10/29 11:33:21 flameeyes Exp $
inherit eutils
DESCRIPTION="A set of tools to collect and process netflow data"
HOMEPAGE="http://nfdump.sourceforge.net/"
SRC_URI="mirror://sourceforge/nfdump/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND="dev-lang/perl"
src_compile() {
econf || die "econf failed"
# Parallel make issue, see bug #240746
emake -j1 || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README
}
|