blob: 5f819594a5f5e279fedf3a543dbe47575c8c86fa (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
DISTUTILS_SINGLE_IMPL=1
inherit distutils-r1
DESCRIPTION="GPU-accelerated attack against WPA-PSK authentication"
HOMEPAGE="https://github.com/JPaulMora/Pyrit"
SRC_URI="https://github.com/JPaulMora/${PN^}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cuda opencl test"
RESTRICT="!test? ( test )"
DEPEND="dev-libs/openssl
net-libs/libpcap
test? (
$(python_gen_cond_dep '
>=net-analyzer/scapy-2[${PYTHON_MULTI_USEDEP}]
')
)"
RDEPEND=">=net-analyzer/scapy-2
opencl? ( net-wireless/cpyrit-opencl )
cuda? ( net-wireless/cpyrit-cuda )"
pkg_setup() {
python-single-r1_pkg_setup
}
src_test() {
cd test
"${PYTHON}" test_pyrit.py
}
|