From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4DCE31382C5 for ; Fri, 5 Jan 2018 22:02:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 559AEE0948; Fri, 5 Jan 2018 22:02:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 32C7BE0948 for ; Fri, 5 Jan 2018 22:02:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E9C8335C36 for ; Fri, 5 Jan 2018 22:02:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C40FA1B6 for ; Fri, 5 Jan 2018 22:02:28 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1515189646.72c357e9f129de93fc8d8a4cc75fd6ee3e75fd56.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/wireless-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild X-VCS-Directories: net-wireless/wireless-tools/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 72c357e9f129de93fc8d8a4cc75fd6ee3e75fd56 X-VCS-Branch: master Date: Fri, 5 Jan 2018 22:02:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8fb2f372-1d58-43ed-b436-8b826e83d51f X-Archives-Hash: 45d803050010d1c45c82476a04d72704 commit: 72c357e9f129de93fc8d8a4cc75fd6ee3e75fd56 Author: Ulrich Müller gentoo org> AuthorDate: Fri Jan 5 21:30:50 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jan 5 22:00:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72c357e9 net-wireless/wireless-tools: Remove linguas_* from IUSE. Package-Manager: Portage-2.3.19, Repoman-2.3.6 net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild b/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild index bc64bc53b2f..5d1c1e64940 100644 --- a/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild +++ b/net-wireless/wireless-tools/wireless-tools-30_pre9.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI="4" @@ -16,7 +16,7 @@ SRC_URI="http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh ~sparc x86" -IUSE="linguas_cs linguas_fr multicall" +IUSE="multicall" DEPEND="sys-apps/sed" RDEPEND="" @@ -53,9 +53,9 @@ src_install() { emake PREFIX="${ED}" install-iwmulticall fi - has cs ${LINGUAS} || rm -rf "${ED}"/usr/share/man/cs - has fr ${LINGUAS} || rm -rf "${ED}"/usr/share/man/fr.{ISO8859-1,UTF-8} + has cs ${LINGUAS-cs} || rm -rf "${ED}"/usr/share/man/cs + has fr ${LINGUAS-fr} || rm -rf "${ED}"/usr/share/man/fr.{ISO8859-1,UTF-8} dodoc CHANGELOG.h HOTPLUG-UDEV.txt IFRENAME-VS-XXX.txt PCMCIA.txt README - has fr ${LINGUAS} && dodoc README.fr + has fr ${LINGUAS-fr} && dodoc README.fr }