summaryrefslogtreecommitdiff
blob: 6c5c1bdafe13ef16438d57d19da9691c5b8cbf3c (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
54
55
56
57
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit autotools flag-o-matic

DESCRIPTION="A tool for monitoring, capturing and storing TCP connections flows"
HOMEPAGE="https://github.com/simsong/tcpflow https://packages.qa.debian.org/t/tcpflow.html"
SRC_URI="
	https://api.github.com/repos/simsong/be13_api/tarball/c81521d768bb78499c069fcd7c47adc8eee0350c -> be13_api-20170924.tar.gz
	https://api.github.com/repos/simsong/dfxml/tarball/7d11eaa7da8d31f588ce8aecb4b4f5e7e8169ba6 -> dfxml-20170921.tar.gz
	https://dev.gentoo.org/~jer/be13_api-20170924.tar.gz
	https://dev.gentoo.org/~jer/dfxml-20170921.tar.gz
	https://github.com/simsong/${PN}/archive/${P/_/}.tar.gz
"

LICENSE="GPL-3"
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
SLOT="0"
IUSE="cairo test"

RDEPEND="
	dev-db/sqlite
	dev-lang/python:2.7=
	dev-libs/boost:=
	dev-libs/openssl:=
	net-libs/http-parser:=
	net-libs/libpcap
	sys-libs/libcap-ng
	sys-libs/zlib:=
	cairo? (
		x11-libs/cairo
	)
"
DEPEND="
	${RDEPEND}
	test? ( sys-apps/coreutils )
"
S=${WORKDIR}/${PN}-${P/_/}
PATCHES=(
	"${FILESDIR}"/${PN}-1.5.0_alpha-gentoo.patch
	"${FILESDIR}"/${PN}-1.5.0_alpha-libcapng.patch
)

src_prepare() {
	mv "${WORKDIR}"/simsong-dfxml-7d11eaa/* src/dfxml/ || die
	mv "${WORKDIR}"/simsong-be13_api-c81521d/* src/be13_api/ || die

	default

	eautoreconf
}

src_configure() {
	append-cxxflags -fpermissive
	econf $(usex cairo --enable-cairo=true --enable-cairo=false)
}