mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-20 22:01:11 +02:00
eaphammer-1.13.5.ebuild
This commit is contained in:
parent
d842bf938a
commit
0f153e4f74
2 changed files with 42 additions and 0 deletions
|
|
@ -1 +1,2 @@
|
|||
DIST eaphammer-1.12.0.tar.gz 4692973 BLAKE2B ff30eeaa818822ba0395b2d853d49c51ffc0a0d612056dc3e8a5a3b34090e8ee5cd8efceab2c0ede860e16c9ee93836cc399597cf9798d6ea595523cf2df6c27 SHA512 6c30a4d526576785e18d2766f9bdb5432192b3f9bbcba8125c4d484f8c8c2be64265e150f88da7bac50c5fbc64fa8e0241055a9e7a701433fa594a684f90d484
|
||||
DIST eaphammer-1.13.5.tar.gz 4917657 BLAKE2B d9f02871633d674b33f2609dbd1546095dd8f9e847b017523cd64c8f57219b63f988ad5f6dc4e2722c00d057a250134ba76243affb544384b2791a0a0e5c39a3 SHA512 2bdcaa44537aca1c32cddc99a43037812667ce766cefb4b876b242bb6ccc63e256542d01017f244621f2d25fdd28850cae0a9502117df74fd4e53e9df850ae7c
|
||||
|
|
|
|||
41
net-wireless/eaphammer/eaphammer-1.13.5.ebuild
Normal file
41
net-wireless/eaphammer/eaphammer-1.13.5.ebuild
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6,7} )
|
||||
|
||||
inherit python-any-r1
|
||||
|
||||
DESCRIPTION="Targeted evil twin attacks against WPA2-Enterprise networks"
|
||||
HOMEPAGE="https://github.com/s0lst1c3/eaphammer"
|
||||
SRC_URI="https://github.com/s0lst1c3/eaphammer/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
#KEYWORDS="~amd64 ~x86"
|
||||
IUSE="systemd"
|
||||
|
||||
RDEPEND="$( python_gen_any_dep '
|
||||
dev-python/tqdm[${PYTHON_USEDEP}]
|
||||
dev-python/pyopenssl[${PYTHON_USEDEP}]
|
||||
net-analyzer/scapy[${PYTHON_USEDEP}] ')
|
||||
net-dns/dnsmasq
|
||||
net-libs/libnfnetlink
|
||||
dev-libs/libnl:3
|
||||
net-wireless/hostapd[wpe]
|
||||
net-analyzer/dsniff
|
||||
virtual/httpd-basic"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
if use !systemd; then
|
||||
sed -i "s|use_systemd = True|use_systemd = False|" settings/core/eaphammer.ini || die 'sed failed'
|
||||
fi
|
||||
sed -i s/network-manager/NetworkManager/ settings/core/eaphammer.ini || die 'sed failed'
|
||||
eapply_user
|
||||
}
|
||||
|
||||
#FIXME
|
||||
#src_install
|
||||
#https://github.com/s0lst1c3/eaphammer/issues/73
|
||||
Loading…
Reference in a new issue