blob: a36a66b611f44b27d01c907fb1466f04cfe66959 (
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
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/jnettop/jnettop-0.13.0-r1.ebuild,v 1.9 2012/10/30 17:04:06 ago Exp $
EAPI=4
inherit autotools eutils
DESCRIPTION="A top like console network traffic visualiser"
HOMEPAGE="http://jnettop.kubs.info/"
SRC_URI="http://jnettop.kubs.info/dist/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="berkdb ncurses syslog"
RDEPEND="net-libs/libpcap
>=dev-libs/glib-2.0.1
berkdb? ( =sys-libs/db-4* )
ncurses? ( sys-libs/ncurses )
syslog? ( virtual/logger )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=( AUTHORS ChangeLog NEWS README )
src_prepare() {
epatch "${FILESDIR}/${P}-asneeded.patch"
eautoreconf
}
src_configure() {
econf \
$(use_with ncurses) \
$(use_with berkdb db4) \
$(use_with syslog)
}
src_install() {
default
newdoc .${PN} ${PN}.dotfile
}
|