blob: 3be19c53a62a1b73289a01471337ca54d203541b (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=0
IUSE="berkdb"
DESCRIPTION="Reports network interface statistics"
SRC_URI="https://www.frenchfries.net/paul/tcpstat/${P}.tar.gz"
HOMEPAGE="https://www.frenchfries.net/paul/tcpstat/"
DEPEND="net-libs/libpcap
berkdb? ( <sys-libs/db-2 )"
SLOT="0"
LICENSE="BSD-2"
KEYWORDS="amd64 ~ppc ppc64 sparc x86"
src_install () {
make DESTDIR=${D} install || die
use berkdb && dobin src/tcpprof
dodoc AUTHORS ChangeLog COPYING LICENSE NEWS README*
}
|