From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-888233-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 560A31382C5
	for <garchives@archives.gentoo.org>; Wed, 22 Jun 2016 17:38:32 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id B132694085;
	Wed, 22 Jun 2016 17:38:28 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id E72C8941C9
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Jun 2016 17:38:26 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 124A7340AC7
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Jun 2016 17:38:26 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 034032425
	for <gentoo-commits@lists.gentoo.org>; Wed, 22 Jun 2016 17:38:22 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
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" <ulm@gentoo.org>
Message-ID: <1466617046.21f26a0057e39b8723ecd5da9e8590a11868f118.ulm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/yatex/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-emacs/yatex/yatex-1.76.ebuild app-emacs/yatex/yatex-1.77.ebuild
X-VCS-Directories: app-emacs/yatex/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 21f26a0057e39b8723ecd5da9e8590a11868f118
X-VCS-Branch: master
Date: Wed, 22 Jun 2016 17:38:22 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 345272c2-10a3-4e70-bc7f-fd361ca81e52
X-Archives-Hash: 49b6e35a581c9962b620ba4be76df188

commit:     21f26a0057e39b8723ecd5da9e8590a11868f118
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 22 17:37:26 2016 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Jun 22 17:37:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21f26a00

app-emacs/yatex: Migrate from LINGUAS to L10N.

Package-Manager: portage-2.3.0_rc1

 app-emacs/yatex/yatex-1.76.ebuild | 8 ++++----
 app-emacs/yatex/yatex-1.77.ebuild | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/app-emacs/yatex/yatex-1.76.ebuild b/app-emacs/yatex/yatex-1.76.ebuild
index 8d03ba4..91648dc 100644
--- a/app-emacs/yatex/yatex-1.76.ebuild
+++ b/app-emacs/yatex/yatex-1.76.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="http://www.yatex.org/${P/-/}.tar.gz"
 KEYWORDS="amd64 ppc ~ppc64 x86"
 SLOT="0"
 LICENSE="YaTeX"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 S="${WORKDIR}/${P/-/}"
 ELISP_PATCHES="${PN}-1.76-gentoo.patch
@@ -27,7 +27,7 @@ src_compile() {
 	cd docs
 	makeinfo yatexe.tex yahtmle.tex || die
 
-	if use linguas_ja; then
+	if use l10n_ja; then
 		iconv -f WINDOWS-31J -t UTF-8 yatexj.tex >yatex-ja.texi || die
 		iconv -f WINDOWS-31J -t UTF-8 yahtmlj.tex >yahtml-ja.texi || die
 		makeinfo yatex-ja.texi yahtml-ja.texi || die
@@ -43,7 +43,7 @@ src_install() {
 	doinfo docs/yatex.info* docs/yahtml.info*
 	dodoc docs/*.eng
 
-	if use linguas_ja; then
+	if use l10n_ja; then
 		doins help/YATEXHLP.jp
 		doinfo docs/yatex-ja.info* docs/yahtml-ja.info*
 		dodoc 00readme install docs/{htmlqa,qanda} docs/*.doc

diff --git a/app-emacs/yatex/yatex-1.77.ebuild b/app-emacs/yatex/yatex-1.77.ebuild
index 0687409..f683de2 100644
--- a/app-emacs/yatex/yatex-1.77.ebuild
+++ b/app-emacs/yatex/yatex-1.77.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="http://www.yatex.org/${P/-/}.tar.gz"
 KEYWORDS="amd64 ppc ~ppc64 x86"
 SLOT="0"
 LICENSE="YaTeX"
-IUSE="linguas_ja"
+IUSE="l10n_ja"
 
 S="${WORKDIR}/${P/-/}"
 ELISP_PATCHES="${PN}-1.76-gentoo.patch
@@ -28,7 +28,7 @@ src_compile() {
 	cd docs
 	makeinfo yatexe.tex yahtmle.tex || die
 
-	if use linguas_ja; then
+	if use l10n_ja; then
 		iconv -f WINDOWS-31J -t UTF-8 yatexj.tex >yatex-ja.texi || die
 		iconv -f WINDOWS-31J -t UTF-8 yahtmlj.tex >yahtml-ja.texi || die
 		makeinfo yatex-ja.texi yahtml-ja.texi || die
@@ -44,7 +44,7 @@ src_install() {
 	doinfo docs/yatex.info* docs/yahtml.info*
 	dodoc docs/*.eng
 
-	if use linguas_ja; then
+	if use l10n_ja; then
 		doins help/YATEXHLP.jp
 		doinfo docs/yatex-ja.info* docs/yahtml-ja.info*
 		dodoc 00readme install docs/{htmlqa,qanda} docs/*.doc