diff options
author | 2022-03-17 06:32:32 -0700 | |
---|---|---|
committer | 2022-03-19 23:15:34 +0100 | |
commit | c620275fce1a7827bca10eae2899da0e9f544ea5 (patch) | |
tree | bd30bdcec9e67c62ea5750281ab54d13e8fd1ff8 /net-wireless | |
parent | dev-lang/rust: Remove old versions (diff) | |
download | libressl-c620275fce1a7827bca10eae2899da0e9f544ea5.tar.gz libressl-c620275fce1a7827bca10eae2899da0e9f544ea5.tar.bz2 libressl-c620275fce1a7827bca10eae2899da0e9f544ea5.zip |
net-wireless/wpa_supplicant: Bump to version 2.10-r1
Signed-off-by: orbea <orbea@riseup.net>
Closes: https://github.com/gentoo/libressl/pull/390
Signed-off-by: Quentin Retornaz <gentoo@retornaz.com>
Diffstat (limited to 'net-wireless')
-rw-r--r-- | net-wireless/wpa_supplicant/wpa_supplicant-2.10-r1.ebuild (renamed from net-wireless/wpa_supplicant/wpa_supplicant-2.10.ebuild) | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.10.ebuild b/net-wireless/wpa_supplicant/wpa_supplicant-2.10-r1.ebuild index 2aa4e4e..f2829f0 100644 --- a/net-wireless/wpa_supplicant/wpa_supplicant-2.10.ebuild +++ b/net-wireless/wpa_supplicant/wpa_supplicant-2.10-r1.ebuild @@ -13,13 +13,12 @@ if [ "${PV}" = "9999" ]; then inherit git-r3 EGIT_REPO_URI="https://w1.fi/hostap.git" else - KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~mips ppc ~ppc64 ~riscv ~sparc x86" + KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86" SRC_URI="https://w1.fi/releases/${P}.tar.gz" - SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-2.9-r3-patches.tar.bz2" fi SLOT="0" -IUSE="ap +crda broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls uncommon-eap-types wimax wps" +IUSE="ap +crda broadcom-sta dbus eap-sim eapol-test fasteap +fils +hs2-0 macsec +mbo +mesh p2p privsep ps3 qt5 readline selinux smartcard tdls tkip uncommon-eap-types wep wimax wps" # CONFIG_PRIVSEP=y does not have sufficient support for the new driver # interface functions used for MACsec, so this combination cannot be used @@ -274,9 +273,23 @@ src_configure() { Kconfig_style_config OWE Kconfig_style_config SAE Kconfig_style_config DPP + Kconfig_style_config DPP2 Kconfig_style_config SUITEB192 Kconfig_style_config SUITEB + if use wep ; then + Kconfig_style_config WEP + else + Kconfig_style_config WEP n + fi + + # Watch out, reversed logic + if use tkip ; then + Kconfig_style_config NO_TKIP n + else + Kconfig_style_config NO_TKIP + fi + if use smartcard ; then Kconfig_style_config SMARTCARD else |