diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-01-23 10:34:32 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-01-23 10:34:49 +0100 |
commit | dcdaf4fa88854170e035e44a6dc7c34b1aeea559 (patch) | |
tree | e390113a77b1a49d18898a336bbba7bce2ade32f /net-wireless/iw/iw-4.14.ebuild | |
parent | net-dialup/freeradius: Bump to version 3.0.16 (diff) | |
download | gentoo-dcdaf4fa88854170e035e44a6dc7c34b1aeea559.tar.gz gentoo-dcdaf4fa88854170e035e44a6dc7c34b1aeea559.tar.bz2 gentoo-dcdaf4fa88854170e035e44a6dc7c34b1aeea559.zip |
net-wireless/iw: Bump to version 4.14
Package-Manager: Portage-2.3.20, Repoman-2.3.6
Diffstat (limited to 'net-wireless/iw/iw-4.14.ebuild')
-rw-r--r-- | net-wireless/iw/iw-4.14.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net-wireless/iw/iw-4.14.ebuild b/net-wireless/iw/iw-4.14.ebuild new file mode 100644 index 000000000000..27879d734221 --- /dev/null +++ b/net-wireless/iw/iw-4.14.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="nl80211-based configuration utility for wireless devices using the mac80211 kernel stack" +HOMEPAGE="https://wireless.kernel.org/en/users/Documentation/iw" +SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${P}.tar.xz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="dev-libs/libnl:=" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + default + tc-export CC LD PKG_CONFIG +} + +src_compile() { + CFLAGS="${CFLAGS} ${CPPFLAGS}" \ + LDFLAGS="${CFLAGS} ${LDFLAGS}" \ + emake V=1 +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install +} |