25 lines
665 B
Bash
25 lines
665 B
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpstat/tcpstat-1.5.ebuild,v 1.11 2006/08/15 09:08:01 blubb Exp $
|
|
|
|
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="GPL-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*
|
|
|
|
}
|