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.
gentoo-overlay/net-analyzer/scapy/scapy-2.3.2-r1.ebuild

29 lines
869 B

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit eutils distutils-r1
DESCRIPTION="A Python interactive packet manipulation program for mastering the network"
HOMEPAGE="https://scapy.net/ https://github.com/secdev/scapy"
SRC_URI="https://github.com/secdev/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="gnuplot pyx crypt graphviz imagemagick tcpreplay"
RDEPEND="
net-analyzer/tcpdump
gnuplot? ( dev-python/gnuplot-py[${PYTHON_USEDEP}] )
pyx? ( dev-python/pyx[${PYTHON_USEDEP}] )
crypt? ( || ( dev-python/pycryptodome[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}] ) )
graphviz? ( media-gfx/graphviz )
imagemagick? ( virtual/imagemagick-tools )
tcpreplay? ( net-analyzer/tcpreplay )
"