blob: 1a5230a0e9bf533ffe77fc1d3f67d086d3625a99 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpslice/tcpslice-1.2a_p3-r1.ebuild,v 1.2 2014/08/14 16:56:21 phajdan.jr Exp $
EAPI=5
inherit autotools eutils
MY_P="${PN}_${PV/_p/}"
DESCRIPTION="Extract and concatenate portions of pcap files"
HOMEPAGE="http://www.tcpdump.org/ https://github.com/the-tcpdump-group/tcpslice"
LICENSE="BSD"
SLOT="0"
SRC_URI="mirror://debian/pool/main/t/${PN}/${MY_P}.orig.tar.gz
mirror://debian/pool/main/t/${PN}/${MY_P}-4.debian.tar.gz"
KEYWORDS="~amd64 ~ppc x86"
RDEPEND="net-libs/libpcap"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P/_/-}"
src_prepare() {
epatch \
"${WORKDIR}"/debian/patches/[0-]* \
"${FILESDIR}"/${P}-exit.patch
eautoreconf
}
src_install() {
dosbin tcpslice
doman tcpslice.1
dodoc README
}
|