From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 840141382D5 for ; Mon, 27 Jun 2016 12:44:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66EA6E0BD8; Mon, 27 Jun 2016 12:44:10 +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 B9EC7E0BD8 for ; Mon, 27 Jun 2016 12:44:09 +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 5AFA134092E for ; Mon, 27 Jun 2016 12:44:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 272E52433 for ; Mon, 27 Jun 2016 12:44:04 +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: <1467031429.41a60e895643121d4c25cc555d2d0003a1d758e3.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/eb/eb-4.4.1-r1.ebuild X-VCS-Directories: dev-libs/eb/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 41a60e895643121d4c25cc555d2d0003a1d758e3 X-VCS-Branch: master Date: Mon, 27 Jun 2016 12:44:04 +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: e36890e9-c763-4b31-8cb2-507f5af64411 X-Archives-Hash: 31403fcffe69df70d7c7c8aa12470f2a commit: 41a60e895643121d4c25cc555d2d0003a1d758e3 Author: Ulrich Müller gentoo org> AuthorDate: Mon Jun 27 08:37:42 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Jun 27 12:43:49 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a60e89 dev-libs/eb: Use the nls flag rather than linguas_ja to enable NLS. Also use nls for conditional dependencies on gettext and libintl. Package-Manager: portage-2.3.0 dev-libs/eb/eb-4.4.1-r1.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild index 0c40750..6609303 100644 --- a/dev-libs/eb/eb-4.4.1-r1.ebuild +++ b/dev-libs/eb/eb-4.4.1-r1.ebuild @@ -7,19 +7,19 @@ EAPI=5 DESCRIPTION="EB is a C library and utilities for accessing CD-ROM books" HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/eb/" SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma" -LICENSE="BSD" +LICENSE="BSD" SLOT="0" KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86" -IUSE="ipv6 linguas_ja threads" +IUSE="ipv6 nls threads" RDEPEND=" sys-libs/zlib - linguas_ja? ( virtual/libintl ) + nls? ( virtual/libintl ) " DEPEND=" ${RDEPEND} - linguas_ja? ( sys-devel/gettext ) + nls? ( sys-devel/gettext ) " DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README ) @@ -27,7 +27,7 @@ DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README ) src_configure() { econf \ $(use_enable ipv6) \ - $(use_enable linguas_ja nls) \ + $(use_enable nls) \ $(use_enable threads pthread) \ --with-pkgdocdir=/usr/share/doc/${PF}/html }