blob: bcbf7c3eeacd5e89d0e5f9fae8237ebfb15eed1c (
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
47
48
49
50
51
52
53
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools eutils
DESCRIPTION="A tool for monitoring, capturing and storing TCP connections flows"
HOMEPAGE="https://github.com/simsong/tcpflow http://packages.qa.debian.org/t/tcpflow.html"
SRC_URI="
mirror://debian/pool/main/t/${PN}/${PN}_${PV/_p*}+repack1.orig.tar.gz
mirror://debian/pool/main/t/${PN}/${PN}_${PV/_p*}+repack1-${PV/*_p}.debian.tar.xz
"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
SLOT="0"
IUSE="cairo test"
RDEPEND="
app-forensics/afflib
dev-libs/boost
dev-libs/openssl:=
net-libs/http-parser:=
net-libs/libpcap
sys-libs/zlib
cairo? (
x11-libs/cairo
)
"
DEPEND="
${RDEPEND}
test? ( sys-apps/coreutils )
"
S=${WORKDIR}/${PN}
src_prepare() {
default
eapply "${WORKDIR}"/debian/patches/*.patch
mv -f README{.md,} || die
sed -i -e 's:`md5 -q \(.*\)`:`md5sum \1 | cut -f1 -d" "`:' tests/*.sh || die
eautoreconf
}
src_configure() {
econf \
$(usex cairo --enable-cairo=true --enable-cairo=false) \
--without-o3
}
|