mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-wireless/iwd: bump to 1.23
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
DIST iwd-1.20.tar.xz 973964 BLAKE2B 750368aec999b988aaaed34454a1a15a75fa9c37ce4523715156c1bc89e343aad62c0d0f0ef5f798a75b19a271175f05517e641f3e2a6e502d932da8e1cfff63 SHA512 1a272492d101bd6ec22df16d98895ce03aa8470b35a7b3c36e5431239e519f74fae81f8bee25e52ce7705459b42e37298778f671a39e98787ddb1b9881521847
|
||||
DIST iwd-1.21.tar.xz 994644 BLAKE2B d8a12463f4f6e4b5f1840625b723fbffdd67df12092a9f945240751e40af7cf1d6cab4cba2e97f4fa628f902354bf76921238107c630c9fc4b35f451ccb7456c SHA512 420e4c1f9a7a0a11f6dedff5213d4b80671747ea3d24c4d492a843e3dd9813727127f4f0930588849d4aa6e6e1ca8f8434f0b07be7da50fdd0b2ab4156725389
|
||||
DIST iwd-1.22.tar.xz 994224 BLAKE2B 537f95409f31a56c6686d943664c640f086651c35a97bdb782d14011084e76ff13660cb14961e366eec7799144801fb2b38a606838ed9267eaa25d5a757ebfd7 SHA512 62393cda6687588c0a92537517a9e7aeba5f3ebc47f2ad962d5b2ca48b15229910b9ef2c6bae5e5edbac8c188304b4573db29a696af6bccc83a1f9bb5703dac2
|
||||
DIST iwd-1.23.tar.xz 994156 BLAKE2B ced2665153db55f71cf34ceec8fd2c6f0fbc9391a8f4d3bf45e88847b89b333b87be1a2c4302076df06f3adbd64ca4891383ea00767e7895ea9e940d375fb6cf SHA512 663530e8ef494d31aa99546c9fc5b0df11846e75445820d89cf6de70a71e1135ea194afd36094b8e831fbf3f9e46697792f078824498a06ba0a25ee891be88ea
|
||||
|
||||
182
net-wireless/iwd/iwd-1.23.ebuild
Normal file
182
net-wireless/iwd/iwd-1.23.ebuild
Normal file
@@ -0,0 +1,182 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
inherit flag-o-matic linux-info systemd
|
||||
|
||||
#Set this variable to the required external ell version
|
||||
ELL_REQ="0.48"
|
||||
|
||||
if [[ ${PV} == *9999* ]]; then
|
||||
inherit autotools git-r3
|
||||
IWD_EGIT_REPO_URI="https://git.kernel.org/pub/scm/network/wireless/iwd.git"
|
||||
ELL_EGIT_REPO_URI="https://git.kernel.org/pub/scm/libs/ell/ell.git"
|
||||
else
|
||||
SRC_URI="https://www.kernel.org/pub/linux/network/wireless/${P}.tar.xz"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
|
||||
MYRST2MAN="RST2MAN=:"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Wireless daemon for linux"
|
||||
HOMEPAGE="https://git.kernel.org/pub/scm/network/wireless/iwd.git/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="+client cpu_flags_x86_aes cpu_flags_x86_ssse3 +crda +monitor ofono standalone systemd wired"
|
||||
|
||||
DEPEND="
|
||||
sys-apps/dbus
|
||||
client? ( sys-libs/readline:0= )
|
||||
"
|
||||
|
||||
[[ -z "${ELL_REQ}" ]] || DEPEND+=" ~dev-libs/ell-${ELL_REQ}"
|
||||
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
net-wireless/wireless-regdb
|
||||
crda? ( net-wireless/crda )
|
||||
standalone? (
|
||||
systemd? ( sys-apps/systemd )
|
||||
!systemd? ( virtual/resolvconf )
|
||||
)
|
||||
"
|
||||
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
"
|
||||
|
||||
[[ ${PV} == *9999* ]] && BDEPEND+=" dev-python/docutils"
|
||||
|
||||
pkg_setup() {
|
||||
CONFIG_CHECK="
|
||||
~ASYMMETRIC_KEY_TYPE
|
||||
~ASYMMETRIC_PUBLIC_KEY_SUBTYPE
|
||||
~CFG80211
|
||||
~CRYPTO_AES
|
||||
~CRYPTO_CBC
|
||||
~CRYPTO_CMAC
|
||||
~CRYPTO_DES
|
||||
~CRYPTO_ECB
|
||||
~CRYPTO_HMAC
|
||||
~CRYPTO_MD4
|
||||
~CRYPTO_MD5
|
||||
~CRYPTO_RSA
|
||||
~CRYPTO_SHA1
|
||||
~CRYPTO_SHA256
|
||||
~CRYPTO_SHA512
|
||||
~CRYPTO_USER_API_HASH
|
||||
~CRYPTO_USER_API_SKCIPHER
|
||||
~KEY_DH_OPERATIONS
|
||||
~PKCS7_MESSAGE_PARSER
|
||||
~RFKILL
|
||||
~X509_CERTIFICATE_PARSER
|
||||
"
|
||||
if use crda;then
|
||||
CONFIG_CHECK="${CONFIG_CHECK} ~CFG80211_CRDA_SUPPORT"
|
||||
WARNING_CFG80211_CRDA_SUPPORT="REGULATORY DOMAIN PROBLEM: please enable CFG80211_CRDA_SUPPORT for proper regulatory domain support"
|
||||
fi
|
||||
|
||||
if use amd64;then
|
||||
CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_DES3_EDE_X86_64"
|
||||
WARNING_CRYPTO_DES3_EDE_X86_64="CRYPTO_DES3_EDE_X86_64: enable for increased performance"
|
||||
fi
|
||||
|
||||
if use cpu_flags_x86_aes;then
|
||||
CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_AES_NI_INTEL"
|
||||
WARNING_CRYPTO_AES_NI_INTEL="CRYPTO_AES_NI_INTEL: enable for increased performance"
|
||||
fi
|
||||
|
||||
if use cpu_flags_x86_ssse3 && use amd64; then
|
||||
CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_SHA1_SSSE3 ~CRYPTO_SHA256_SSSE3 ~CRYPTO_SHA512_SSSE3"
|
||||
WARNING_CRYPTO_SHA1_SSSE3="CRYPTO_SHA1_SSSE3: enable for increased performance"
|
||||
WARNING_CRYPTO_SHA256_SSSE3="CRYPTO_SHA256_SSSE3: enable for increased performance"
|
||||
WARNING_CRYPTO_SHA512_SSSE3="CRYPTO_SHA512_SSSE3: enable for increased performance"
|
||||
fi
|
||||
|
||||
if use kernel_linux && kernel_is -ge 4 20; then
|
||||
CONFIG_CHECK="${CONFIG_CHECK} ~PKCS8_PRIVATE_KEY_PARSER"
|
||||
fi
|
||||
|
||||
check_extra_config
|
||||
|
||||
if ! use crda; then
|
||||
if use kernel_linux && kernel_is -lt 4 15; then
|
||||
ewarn "POSSIBLE REGULATORY DOMAIN PROBLEM:"
|
||||
ewarn "Regulatory domain support for kernels older than 4.15 requires crda."
|
||||
fi
|
||||
if linux_config_exists && linux_chkconfig_builtin CFG80211 &&
|
||||
[[ $(linux_chkconfig_string EXTRA_FIRMWARE) != *regulatory.db* ]]
|
||||
then
|
||||
ewarn ""
|
||||
ewarn "REGULATORY DOMAIN PROBLEM:"
|
||||
ewarn "With CONFIG_CFG80211=y (built-in), the driver won't be able to load regulatory.db from"
|
||||
ewarn " /lib/firmware, resulting in broken regulatory domain support. Please set CONFIG_CFG80211=m"
|
||||
ewarn " or add regulatory.db and regulatory.db.p7s to CONFIG_EXTRA_FIRMWARE."
|
||||
ewarn ""
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
src_unpack() {
|
||||
if [[ ${PV} == *9999* ]] ; then
|
||||
EGIT_REPO_URI=${IWD_EGIT_REPO_URI} git-r3_src_unpack
|
||||
EGIT_REPO_URI=${ELL_EGIT_REPO_URI} EGIT_CHECKOUT_DIR=${WORKDIR}/ell git-r3_src_unpack
|
||||
else
|
||||
default
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
if [[ ${PV} == *9999* ]] ; then
|
||||
eautoreconf
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cflags "-fsigned-char"
|
||||
local myeconfargs=(
|
||||
--sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
|
||||
$(use_enable client)
|
||||
$(use_enable monitor)
|
||||
$(use_enable ofono)
|
||||
$(use_enable wired)
|
||||
--enable-systemd-service
|
||||
--with-systemd-unitdir="$(systemd_get_systemunitdir)"
|
||||
--with-systemd-modloaddir="${EPREFIX}/usr/lib/modules-load.d"
|
||||
--with-systemd-networkdir="$(systemd_get_utildir)/network"
|
||||
)
|
||||
[[ ${PV} == *9999* ]] || myeconfargs+=(--enable-external-ell)
|
||||
econf "${myeconfargs[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake ${MYRST2MAN}
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" ${MYRST2MAN} install
|
||||
keepdir /var/lib/${PN}
|
||||
|
||||
newinitd "${FILESDIR}/iwd.initd-r1" iwd
|
||||
|
||||
if use wired;then
|
||||
newinitd "${FILESDIR}/ead.initd" ead
|
||||
fi
|
||||
|
||||
if [[ ${PV} == *9999* ]] ; then
|
||||
exeinto /usr/share/iwd/scripts/
|
||||
doexe test/*
|
||||
fi
|
||||
|
||||
if use standalone ; then
|
||||
local iwdconf="${ED}/etc/iwd/main.conf"
|
||||
dodir /etc/iwd
|
||||
echo "[General]" > "${iwdconf}"
|
||||
echo "EnableNetworkConfiguration=true" >> "${iwdconf}"
|
||||
echo "[Network]" >> "${iwdconf}"
|
||||
echo "NameResolvingService=$(usex systemd systemd resolvconf)" >> "${iwdconf}"
|
||||
dodir /etc/conf.d
|
||||
echo "rc_provide=\"net\"" > ${ED}/etc/conf.d/iwd
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user