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 5C58A138330 for ; Sat, 6 Jan 2018 21:03:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 211D4E08BE; Sat, 6 Jan 2018 21:03:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F0284E08BE for ; Sat, 6 Jan 2018 21:03:52 +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 A913F335C30 for ; Sat, 6 Jan 2018 21:03:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3732E133 for ; Sat, 6 Jan 2018 21:03:50 +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: <1515272576.287911cd9de99557b2ae8a74b0f2ccd0125f417d.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-terms/mrxvt/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-terms/mrxvt/mrxvt-0.5.4.ebuild X-VCS-Directories: x11-terms/mrxvt/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 287911cd9de99557b2ae8a74b0f2ccd0125f417d X-VCS-Branch: master Date: Sat, 6 Jan 2018 21:03:50 +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: c70b353a-778d-4584-a486-f4ec59f4640f X-Archives-Hash: a9f77dfe5ee5c8fe4b05cb9f2fb12d88 commit: 287911cd9de99557b2ae8a74b0f2ccd0125f417d Author: Ulrich Müller gentoo org> AuthorDate: Sat Jan 6 21:01:59 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Jan 6 21:02:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=287911cd x11-terms/mrxvt: Migrate from LINGUAS to L10N. Package-Manager: Portage-2.3.19, Repoman-2.3.6 x11-terms/mrxvt/mrxvt-0.5.4.ebuild | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/x11-terms/mrxvt/mrxvt-0.5.4.ebuild b/x11-terms/mrxvt/mrxvt-0.5.4.ebuild index cb411ad2200..9bc62ba04fb 100644 --- a/x11-terms/mrxvt/mrxvt-0.5.4.ebuild +++ b/x11-terms/mrxvt/mrxvt-0.5.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=4 @@ -12,8 +12,8 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 ~mips ppc x86 ~amd64-linux ~x86-linux ~ppc-macos" -LINGUAS_IUSE="linguas_el linguas_ja linguas_ko linguas_th linguas_zh_CN linguas_zh_TW" -IUSE="debug png jpeg session truetype menubar utempter xpm ${LINGUAS_IUSE}" +L10N_IUSE="l10n_el l10n_ja l10n_ko l10n_th l10n_zh-CN l10n_zh-TW" +IUSE="debug png jpeg session truetype menubar utempter xpm ${L10N_IUSE}" RDEPEND="png? ( media-libs/libpng ) utempter? ( sys-libs/libutempter ) @@ -46,24 +46,24 @@ src_configure() { local myconf # if you want to pass any other flags, use EXTRA_ECONF. - if use linguas_el ; then + if use l10n_el ; then myconf="${myconf} --enable-greek" fi - if use linguas_ja ; then + if use l10n_ja ; then # --with-encoding=sjis myconf="${myconf} --enable-kanji --with-encoding=eucj" fi - if use linguas_ko ; then + if use l10n_ko ; then myconf="${myconf} --enable-kr --with-encoding=kr" fi - if use linguas_th ; then + if use l10n_th ; then myconf="${myconf} --enable-thai" fi - if use linguas_zh_CN ; then + if use l10n_zh-CN ; then # --with-encoding=gbk myconf="${myconf} --enable-gb --with-encoding=gb" fi - if use linguas_zh_TW ; then + if use l10n_zh-TW ; then myconf="${myconf} --enable-big5 --with-encoding=big5" fi