diff options
author | Jeroen Roovers <jer@gentoo.org> | 2019-06-10 21:39:28 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2019-06-10 21:39:59 +0200 |
commit | 82bd7e0fc6d94f8fe78497c0efcc4bbf6103ae37 (patch) | |
tree | ec792ad1d264949ffc3a26cf764b0d3a98583926 /net-analyzer/tcpflow/tcpflow-1.5.2.ebuild | |
parent | sys-kernel/gentoo-sources: Pruning series due to bug #687116 (diff) | |
download | gentoo-82bd7e0fc6d94f8fe78497c0efcc4bbf6103ae37.tar.gz gentoo-82bd7e0fc6d94f8fe78497c0efcc4bbf6103ae37.tar.bz2 gentoo-82bd7e0fc6d94f8fe78497c0efcc4bbf6103ae37.zip |
net-analyzer/tcpflow: Version 1.5.2
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Fixes: https://bugs.gentoo.org/show_bug.cgi?id=687806
Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Diffstat (limited to 'net-analyzer/tcpflow/tcpflow-1.5.2.ebuild')
-rw-r--r-- | net-analyzer/tcpflow/tcpflow-1.5.2.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/net-analyzer/tcpflow/tcpflow-1.5.2.ebuild b/net-analyzer/tcpflow/tcpflow-1.5.2.ebuild new file mode 100644 index 000000000000..0271f130a3ba --- /dev/null +++ b/net-analyzer/tcpflow/tcpflow-1.5.2.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools flag-o-matic + +DESCRIPTION="A tool for monitoring, capturing and storing TCP connections flows" +HOMEPAGE="https://github.com/simsong/tcpflow" +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-libcapng.patch + "${FILESDIR}"/${PN}-1.5.2-gentoo.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) +} |