blob: b9746d90168ecd2db23579eaaff7e859d81be216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpick/tcpick-0.2.1.ebuild,v 1.4 2006/02/16 00:02:25 jokey Exp $
DESCRIPTION="TCP Stream Sniffer and Connection Tracker"
HOMEPAGE="http://tcpick.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="virtual/libc
net-libs/libpcap"
src_install() {
make install DESTDIR="${D}" || die "install failed"
dodoc AUTHORS ChangeLog INTERNALS KNOWN-BUGS OPTIONS README THANKS TODO
dohtml doc/*.html
}
|