blob: 511e2885bc2f2c925a145c6659d153a8b924120f (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/iptraf-ng/iptraf-ng-1.1.2.ebuild,v 1.3 2012/05/19 15:59:27 jer Exp $
EAPI=4
DESCRIPTION="A console-based network monitoring utility"
HOMEPAGE="http://fedorahosted.org/iptraf-ng/"
SRC_URI="http://fedorahosted.org/releases/${PN:0:1}/${PN:1:1}/${PN}/${P}.tar.gz"
LICENSE="GPL-2 doc? ( FDL-1.1 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="doc"
RESTRICT="test"
RDEPEND=">=sys-libs/ncurses-5.7-r7"
DEPEND="
${RDEPEND}
!net-analyzer/iptraf
"
DOCS="CHANGES FAQ README RELEASE-NOTES"
src_install() {
default
use doc && \
dohtml -r \
Documentation/*.html \
Documentation/*.png \
Documentation/stylesheet-images
keepdir /var/{lib,log,lock}/iptraf-ng #376157
}
|