summaryrefslogtreecommitdiff
blob: d9762afda9d362ac1c07d2b3423d4cfb92bedee1 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5
inherit eutils autotools flag-o-matic

DESCRIPTION="Reports network interface statistics"
SRC_URI="http://www.frenchfries.net/paul/tcpstat/${P}.tar.gz"
HOMEPAGE="http://www.frenchfries.net/paul/tcpstat/"

DEPEND="net-libs/libpcap"

SLOT="0"
LICENSE="BSD-2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="ipv6"

src_prepare() {
	epatch "${FILESDIR}"/${P}-db.patch
	eautoreconf
}

src_configure() {
	append-flags -Wall -Wextra
	econf $(use_enable ipv6)
}

DOCS=( AUTHORS ChangeLog NEWS README doc/Tips_and_Tricks.txt )

src_install() {
	default
	dobin src/{catpcap,packetdump}
	newdoc src/README README.src
}