Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/wireless-tools/
Date: Fri, 05 Jan 2018 22:02:42
Message-Id: 1515189646.72c357e9f129de93fc8d8a4cc75fd6ee3e75fd56.ulm@gentoo
1 commit: 72c357e9f129de93fc8d8a4cc75fd6ee3e75fd56
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 5 21:30:50 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 5 22:00:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72c357e9
7
8 net-wireless/wireless-tools: Remove linguas_* from IUSE.
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild | 10 +++++-----
13 1 file changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild b/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild
16 index bc64bc53b2f..5d1c1e64940 100644
17 --- a/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild
18 +++ b/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2015 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI="4"
25 @@ -16,7 +16,7 @@ SRC_URI="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/${MY_P}.tar.gz"
26 LICENSE="GPL-2"
27 SLOT="0"
28 KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh ~sparc x86"
29 -IUSE="linguas_cs linguas_fr multicall"
30 +IUSE="multicall"
31
32 DEPEND="sys-apps/sed"
33 RDEPEND=""
34 @@ -53,9 +53,9 @@ src_install() {
35 emake PREFIX="${ED}" install-iwmulticall
36 fi
37
38 - has cs ${LINGUAS} || rm -rf "${ED}"/usr/share/man/cs
39 - has fr ${LINGUAS} || rm -rf "${ED}"/usr/share/man/fr.{ISO8859-1,UTF-8}
40 + has cs ${LINGUAS-cs} || rm -rf "${ED}"/usr/share/man/cs
41 + has fr ${LINGUAS-fr} || rm -rf "${ED}"/usr/share/man/fr.{ISO8859-1,UTF-8}
42
43 dodoc CHANGELOG.h HOTPLUG-UDEV.txt IFRENAME-VS-XXX.txt PCMCIA.txt README
44 - has fr ${LINGUAS} && dodoc README.fr
45 + has fr ${LINGUAS-fr} && dodoc README.fr
46 }