blob: 41ff031632f470174369fa619a0bc50358d3a08e (
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
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpslice/tcpslice-1.1_alpha3.ebuild,v 1.11 2006/02/20 19:45:02 jokey Exp $
inherit eutils
# Note: this ebuild is not of the best quality as it is entirely
# static. However I believe that I will get away with it as the software
# itself haven't been updated since 1996.
DESCRIPTION="Tcpslice is a program for extracting portions of packet-trace files generated using tcpdump's -w flag. It can also be used to glue together pcap dump files."
HOMEPAGE="http://www.tcpdump.org/"
SRC_URI="mirror://debian/pool/main/t/tcpslice/tcpslice_1.1a3.orig.tar.gz
mirror://debian/pool/main/t/tcpslice/tcpslice_1.1a3-1.1.diff.gz"
RESTRICT="nomirror"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
RDEPEND="virtual/libc
net-libs/libpcap"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S=${WORKDIR}/tcpslice-1.1a3
src_unpack() {
unpack ${A}
epatch ${DISTDIR}/tcpslice_1.1a3-1.1.diff.gz
cd ${S}
sed -i -e 's:net/bpf.h:pcap-bpf.h:g' tcpslice.c || die
}
src_compile() {
econf || die
emake || die
}
src_install() {
dosbin tcpslice
doman tcpslice.1
dodoc README
}
|