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 734541382DE for ; Tue, 28 Jun 2016 06:10:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69CC7E0C4D; Tue, 28 Jun 2016 06:10:37 +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 9D5F5E0C43 for ; Tue, 28 Jun 2016 06:10:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 3C7BA340D3A for ; Tue, 28 Jun 2016 06:10:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1966B3D for ; Tue, 28 Jun 2016 06:10:32 +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: <1467094192.cda3dc6add054d82f5ae00190cd5e9a418501abf.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/w3m/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/w3m/w3m-0.5.3-r5.ebuild www-client/w3m/w3m-0.5.3-r8.ebuild X-VCS-Directories: www-client/w3m/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: cda3dc6add054d82f5ae00190cd5e9a418501abf X-VCS-Branch: master Date: Tue, 28 Jun 2016 06:10:32 +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: 3bde563d-aeb1-4761-892d-9fbd04292f1e X-Archives-Hash: f4cbf26e556edae8a58d766279d22935 commit: cda3dc6add054d82f5ae00190cd5e9a418501abf Author: Ulrich Müller gentoo org> AuthorDate: Tue Jun 28 05:59:43 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Jun 28 06:09:52 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cda3dc6a www-client/w3m: Migrate from LINGUAS to L10N. Package-Manager: portage-2.3.0 www-client/w3m/w3m-0.5.3-r5.ebuild | 10 +++++----- www-client/w3m/w3m-0.5.3-r8.ebuild | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/www-client/w3m/w3m-0.5.3-r5.ebuild b/www-client/w3m/w3m-0.5.3-r5.ebuild index cedf179..2b2599a 100644 --- a/www-client/w3m/w3m-0.5.3-r5.ebuild +++ b/www-client/w3m/w3m-0.5.3-r5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -12,11 +12,11 @@ SRC_URI="mirror://sourceforge/w3m/${P}.tar.gz" LICENSE="w3m" SLOT="0" KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" -IUSE="X fbcon gpm gtk imlib lynxkeymap migemo nls nntp ssl unicode vanilla xface linguas_ja" +IUSE="X fbcon gpm gtk imlib lynxkeymap migemo nls nntp ssl unicode vanilla xface l10n_ja" # We cannot build w3m with gtk+2 w/o X because gtk+2 ebuild doesn't # allow us to build w/o X, so we have to give up framebuffer w3mimg.... -RDEPEND=">=sys-libs/ncurses-5.2-r3 +RDEPEND=">=sys-libs/ncurses-5.2-r3:0= >=sys-libs/zlib-1.1.3-r2 >=dev-libs/boehm-gc-6.2 X? ( x11-libs/libXext x11-libs/libXdmcp ) @@ -72,7 +72,7 @@ src_configure() { # emacs-w3m doesn't like "--enable-m17n --disable-unicode," # so we better enable or disable both. Default to enable # m17n and unicode, see bug #47046. - if use linguas_ja ; then + if use l10n_ja ; then if use unicode ; then myconf="${myconf} --enable-japanese=U" else @@ -122,7 +122,7 @@ src_install() { doins Bonus/* dodoc README NEWS TODO ChangeLog docinto doc-en ; dodoc doc/* - if use linguas_ja ; then + if use l10n_ja ; then docinto doc-jp ; dodoc doc-jp/* else rm -rf "${ED}"/usr/share/man/ja || die diff --git a/www-client/w3m/w3m-0.5.3-r8.ebuild b/www-client/w3m/w3m-0.5.3-r8.ebuild index a07478c..17b2f8d 100644 --- a/www-client/w3m/w3m-0.5.3-r8.ebuild +++ b/www-client/w3m/w3m-0.5.3-r8.ebuild @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/w3m/${P}.tar.gz" LICENSE="w3m" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris" -IUSE="X fbcon gpm gtk imlib libressl lynxkeymap nls nntp ssl unicode vanilla xface linguas_ja" +IUSE="X fbcon gpm gtk imlib libressl lynxkeymap nls nntp ssl unicode vanilla xface l10n_ja" # We cannot build w3m with gtk+2 w/o X because gtk+2 ebuild doesn't # allow us to build w/o X, so we have to give up framebuffer w3mimg.... @@ -69,7 +69,7 @@ src_configure() { # emacs-w3m doesn't like "--enable-m17n --disable-unicode," # so we better enable or disable both. Default to enable # m17n and unicode, see bug #47046. - if use linguas_ja ; then + if use l10n_ja ; then if use unicode ; then myconf="${myconf} --enable-japanese=U" else @@ -119,7 +119,7 @@ src_install() { doins Bonus/* dodoc README NEWS TODO ChangeLog docinto doc-en ; dodoc doc/* - if use linguas_ja ; then + if use l10n_ja ; then docinto doc-jp ; dodoc doc-jp/* else rm -rf "${ED}"/usr/share/man/ja || die