mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
net-wireless/iwd: drop old
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Ben Kohler <bkohler@gentoo.org>
This commit is contained in:
@@ -1,3 +1,2 @@
|
||||
DIST iwd-1.13.tar.xz 927880 BLAKE2B 0ff1d0c0a4dfd08bfea602e8a76fbf7d9078f5b665b90cd6cdf49ed589fd8c43151a3938313ab877653348a6862ae19d228feeea44d441efe17324ff1c5b9aa5 SHA512 7da9d28bf6f1f2ce55c6cd3bedd927580245789ccd3b67bc44d4768ac74e1793f912b12029662fadd6d6f15da68f337553efc05d886d3be04956d2db0d85f01c
|
||||
DIST iwd-1.14.tar.xz 933764 BLAKE2B edc6a925872afb6b98f5bbe16fc1cb6b8459a1aff33ec1f9e2d6bd45e605e34debaffa3048b6506cd3e8006c57d6efc9ae341f73050668454ad85fe7e6b4f256 SHA512 bff9b5a744e8eb4e285f28d976e9335d2c85b57fc1eb023c3aa9442e451523b3b9f080d2c02fc5432735c398857b64d115ed2929dd4bb910925cbf18df0b0874
|
||||
DIST iwd-1.15.tar.xz 940724 BLAKE2B 6dae8a71e15136bcc9d8bb44cc6b152848207d89af2f447f48e834a3feda72a0a018dd1db3cb3a0e92c834cb2a19d8f9e4a9c900d91f96df378772d220205d65 SHA512 71e1f5f1b9d4e09a158b9bf801cee8af5ed8a19a3e80ad677e28ccab29ae10a79ebb7dbeaed60dd24283b6a40dbda8c212400b6d5ac659ed6056588a8663f0d4
|
||||
|
||||
@@ -1,178 +0,0 @@
|
||||
# Copyright 1999-2021 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.39"
|
||||
|
||||
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 ~sparc x86"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Wireless daemon for linux"
|
||||
HOMEPAGE="https://git.kernel.org/pub/scm/network/wireless/iwd.git/"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="+client +crda +monitor ofono wired cpu_flags_x86_aes cpu_flags_x86_ssse3
|
||||
standalone systemd"
|
||||
|
||||
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_install() {
|
||||
default
|
||||
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