You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
707 B
24 lines
707 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpflow/tcpflow-1.2.6.ebuild,v 1.4 2012/06/09 06:32:44 jdhore Exp $
|
|
|
|
EAPI="4"
|
|
|
|
DESCRIPTION="A tool for monitoring, capturing and storing TCP connections flows"
|
|
HOMEPAGE="https://github.com/simsong/tcpflow"
|
|
SRC_URI="mirror://github/simsong/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
KEYWORDS="amd64 ~arm ~ppc x86 ~amd64-linux ~x86-linux ~x86-macos"
|
|
SLOT="0"
|
|
IUSE="test"
|
|
|
|
RDEPEND="net-libs/libpcap
|
|
sys-libs/zlib"
|
|
DEPEND="${RDEPEND}
|
|
test? ( sys-apps/coreutils )"
|
|
|
|
src_prepare() {
|
|
sed -i -e 's:`md5 -q \(.*\)`:`md5sum \1 | cut -f1 -d" "`:' tests/*.sh || die
|
|
}
|