net-wireless/iw: add 6.7

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2023-12-23 17:43:26 +00:00
parent 64c1501bf9
commit 2501f31445
2 changed files with 41 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST iw-5.19.tar.xz 152044 BLAKE2B 57c14b3be0b171b80abcbc71a45f392115f62cc0c3f8440185cb05b42f7a7c901653969a4d5200878b7ceb7aea356d9cf02e07a9fbb282b34372c23561f4fe0a SHA512 ff5c23543806c91eda27c91da923737c74cbccd6acc55f1f45114338f518cd959ca292c9255fd75b91dc127ed016eb235dd97af319e30631578eba6cb0823c6c
DIST iw-5.9.tar.xz 145296 BLAKE2B d7abe6c65d408a7570227dbe69fe11e1d72a1f502de21d1fcb7dcff6bfe229804020d5c1ebdda42a3694e31cf87c631faf089746f8df4733b0b1a459c185e2af SHA512 08b0c8d92c7e695bb2a107b89c3cc406e8386393b65ecbf96ded6fd757043ccd12bedaa90c14138e03e53f107365d04e229633c1cfa024ecab5fe993578491be
DIST iw-6.7.tar.xz 158928 BLAKE2B f0ed86c35edb9a70549f1fcc1bccc33ca18e20051f8c4db94d7199b6ac51ecae601afd6d6389c94c63337cdda1247a9ca7fbb19c7e27fd7e36b54ee319bace8c SHA512 7370d3b55ce43691ba84913be334c04dcdf9aa44e9556e4214d8016ddf9733b2c555ebdfbdfc814d2eba7da68501503d267ad6353b14f87b81f064f629afbef5

View File

@@ -0,0 +1,40 @@
# Copyright 1999-2023 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.wiki.kernel.org/en/users/Documentation/iw"
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
}