mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 06:10:56 +02:00
eaphammer: 1.6 bump, workaround for https://github.com/s0lst1c3/eaphammer/issues/106
This commit is contained in:
parent
90f84e25e8
commit
1f28981e6c
2 changed files with 46 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST eaphammer-0.5.0_beta.tar.gz 2262206 BLAKE2B 23dcac801f84e0f22f5ab99a621072d5f89b33953d01be5d7d20cced90db77b4c1eb45fb04e42d1c03b85c8ad628619f517b233c632408107b2e874f14785634 SHA512 9c8ea06ae734e26cd819db8d75f9be3cd1f0b88fa0f0bca20de6a6cba7d5617703049257c1ab6c172d96113fc90fc47e22809189aae1e6db56b5f98181f526ea
|
||||
DIST eaphammer-0.7.0_beta.tar.gz 2156363 BLAKE2B 18d4a292d3b12ac2d6d588a2cdc03955e41e901665c0b9c152bb06e83ba35a67b6e485d04a3bf705d99f4a94cd3aa634b4a0264c9dbb80726569c1ddb847556f SHA512 84f0067abdfc89e77991e19052a7cd96db92fd13421f8c73b2563b68fff45cea26e4ba2ae654824545c6acbb3cbca4240f3ad1f1046a1900c364844d9e8c20a5
|
||||
DIST eaphammer-1.6.tar.gz 4653096 BLAKE2B 4c13da4b5449b267cce8410993aa433d03071e8670b0f457515e70859ac4ea0c35e41c61c6236c92c57ba7547496ab244a188c1db46ce821bd0231ce525af1e5 SHA512 36137ca64ed7876a0fbf99db141ebed723c2e93e2e21b919cf98d32f8eb0d738fe958fc3519b365bb6816b31af1489e174a9c02f7c77746ee235b1bd0bad976f
|
||||
|
|
|
|||
45
net-wireless/eaphammer/eaphammer-1.6.ebuild
Normal file
45
net-wireless/eaphammer/eaphammer-1.6.ebuild
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit python-utils-r1
|
||||
|
||||
#MY_PV=${PV/_beta/-beta}
|
||||
MY_PV=2a88872bdf082a15df63885d47ab15dc1426a9a8
|
||||
PYTHON_COMPAT=( python{2_7,3_5,3_6} )
|
||||
|
||||
DESCRIPTION="Targeted evil twin attacks against WPA2-Enterprise networks"
|
||||
HOMEPAGE="https://github.com/s0lst1c3/eaphammer"
|
||||
#SRC_URI="https://github.com/s0lst1c3/eaphammer/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI="https://github.com/s0lst1c3/eaphammer/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
#KEYWORDS="~amd64 ~x86"
|
||||
IUSE="systemd"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}
|
||||
dev-python/tqdm
|
||||
net-dns/dnsmasq
|
||||
net-libs/libnfnetlink
|
||||
dev-libs/libnl:3
|
||||
net-wireless/hostapd[wpe]
|
||||
net-analyzer/dsniff
|
||||
virtual/httpd-basic
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MY_PV}"
|
||||
|
||||
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