commit: 7e7492b08deb9594a1104b52e2643011ee59c9c3 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Sep 8 05:19:08 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Sep 8 05:21:39 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e7492b0
net-wireless/iw: add 6.17 Signed-off-by: Sam James <sam <AT> gentoo.org> net-wireless/iw/Manifest | 1 + net-wireless/iw/iw-6.17.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/net-wireless/iw/Manifest b/net-wireless/iw/Manifest index 74f5eaf896df..2113e4f820b1 100644 --- a/net-wireless/iw/Manifest +++ b/net-wireless/iw/Manifest @@ -1 +1,2 @@ +DIST iw-6.17.tar.xz 163756 BLAKE2B b19a584de98701b0da12df0d6000f995b19616d2afc031d200d7a3204029026b5e623bd63f4761c24c55d9144bde2c3684c96d5a71fb8e477f61897857f20594 SHA512 4c0d80d54e69dddc4c70469fad6a647199f98223835dd36dc174b82e425492779330a0fa3d7287190ccf02c597cb78c4bfa97b7c1f1e0a27335edb56c9f831d1 DIST iw-6.9.tar.xz 159480 BLAKE2B 90fca854795fb7e32675d14158250c0b0b06b0d757f375636bcf538fc5f9a658eab8ee39331465b93545e0b0b49ad29f92f5119a6f4e187fb84eca9c9e5151c2 SHA512 cbafa54cffa6098a727edd8fb90382ab9f08d2db999811e543bcdaf8de41386c87a34504cf8965340839445929879a608faf51314b7335783beab403cf3f9cbc diff --git a/net-wireless/iw/iw-6.17.ebuild b/net-wireless/iw/iw-6.17.ebuild new file mode 100644 index 000000000000..973ed4b8434f --- /dev/null +++ b/net-wireless/iw/iw-6.17.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="nl80211 configuration utility for wireless devices using the mac80211 stack" +HOMEPAGE="https://wireless.docs.kernel.org/en/latest/en/users/documentation/iw.html" +SRC_URI="https://mirrors.edge.kernel.org/pub/software/network/${PN}/${P}.tar.xz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux" + +DEPEND="dev-libs/libnl:=" +RDEPEND=" + ${DEPEND} + net-wireless/wireless-regdb +" +BDEPEND="virtual/pkgconfig" + +src_prepare() { + default + tc-export CC LD PKG_CONFIG + + # do not compress man pages by default. + sed 's@\(iw\.8\)\.gz@\1@' -i Makefile || die +} + +src_compile() { + # Set flags prior so they are honored + CFLAGS="${CFLAGS:+${CFLAGS} }${CPPFLAGS}" + LDFLAGS="${CFLAGS:+${CFLAGS} }${LDFLAGS}" + emake V=1 +} + +src_install() { + emake V=1 DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +}
