You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
558 B
26 lines
558 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
IUSE="berkdb"
|
|
|
|
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
|
|
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*
|
|
|
|
}
|