mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 06:10:56 +02:00
87 lines
1.7 KiB
Bash
87 lines
1.7 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python3_{6,7,8} )
|
|
|
|
inherit python-r1 toolchain-funcs savedconfig
|
|
|
|
DESCRIPTION="SensePost's modified hostapd for wifi attacks"
|
|
HOMEPAGE="https://w1f1.net https://github.com/sensepost/hostapd-mana"
|
|
|
|
if [[ $PV == *9999 ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/sensepost/hostapd-mana.git"
|
|
else
|
|
SRC_URI="https://github.com/sensepost/hostapd-mana/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~x86"
|
|
fi
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
IUSE="+crackapd"
|
|
|
|
DEPEND="
|
|
crackapd? (
|
|
${PYTHON_DEPS}
|
|
app-crypt/asleap
|
|
)
|
|
dev-libs/openssl:0=[-bindist]
|
|
dev-libs/libnl:3
|
|
net-libs/libnfnetlink"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
MY_PN="${PN%-mana}"
|
|
S="${S}/${MY_PN}"
|
|
|
|
src_prepare() {
|
|
sed -e "s:/etc/hostapd:/etc/${PN}:g" \
|
|
-i "${S}/hostapd.conf" || die
|
|
|
|
# Allow users to apply patches to src/drivers for example,
|
|
# i.e. anything outside ${S}/${MY_PN}
|
|
pushd ../ >/dev/null || die
|
|
|
|
eapply "${FILESDIR}"/crackapd_pentoo.patch
|
|
eapply "${FILESDIR}"/update_hostapd.conf.patch
|
|
eapply "${FILESDIR}"/48.patch
|
|
|
|
default
|
|
|
|
popd >/dev/null || die
|
|
}
|
|
|
|
src_configure() {
|
|
restore_config .config
|
|
default_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
emake V=1
|
|
}
|
|
|
|
src_install() {
|
|
insinto "/etc/${PN}"
|
|
doins ${MY_PN}.{conf,accept,deny,eap_user,radius_clients,sim_db,wpa_psk}
|
|
|
|
newsbin ${MY_PN} hostapd-mana
|
|
newbin ${MY_PN}_cli hostapd-mana_cli
|
|
|
|
if use crackapd; then
|
|
insinto "/etc/${PN}"
|
|
|
|
pushd ../crackapd >/dev/null || die
|
|
doins "${FILESDIR}"/crackapd.conf
|
|
python_foreach_impl python_newscript crackapd.py crackapd
|
|
|
|
popd >/dev/null || die
|
|
fi
|
|
|
|
fperms -R 600 "/etc/${PN}"
|
|
|
|
dodoc ChangeLog README
|
|
|
|
save_config .config
|
|
}
|