Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/eb/
Date: Mon, 27 Jun 2016 12:44:11
Message-Id: 1467031429.41a60e895643121d4c25cc555d2d0003a1d758e3.ulm@gentoo
1 commit: 41a60e895643121d4c25cc555d2d0003a1d758e3
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 27 08:37:42 2016 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 27 12:43:49 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41a60e89
7
8 dev-libs/eb: Use the nls flag rather than linguas_ja to enable NLS.
9
10 Also use nls for conditional dependencies on gettext and libintl.
11
12 Package-Manager: portage-2.3.0
13
14 dev-libs/eb/eb-4.4.1-r1.ebuild | 10 +++++-----
15 1 file changed, 5 insertions(+), 5 deletions(-)
16
17 diff --git a/dev-libs/eb/eb-4.4.1-r1.ebuild b/dev-libs/eb/eb-4.4.1-r1.ebuild
18 index 0c40750..6609303 100644
19 --- a/dev-libs/eb/eb-4.4.1-r1.ebuild
20 +++ b/dev-libs/eb/eb-4.4.1-r1.ebuild
21 @@ -7,19 +7,19 @@ EAPI=5
22 DESCRIPTION="EB is a C library and utilities for accessing CD-ROM books"
23 HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/eb/"
24 SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma"
25 -LICENSE="BSD"
26
27 +LICENSE="BSD"
28 SLOT="0"
29 KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86"
30 -IUSE="ipv6 linguas_ja threads"
31 +IUSE="ipv6 nls threads"
32
33 RDEPEND="
34 sys-libs/zlib
35 - linguas_ja? ( virtual/libintl )
36 + nls? ( virtual/libintl )
37 "
38 DEPEND="
39 ${RDEPEND}
40 - linguas_ja? ( sys-devel/gettext )
41 + nls? ( sys-devel/gettext )
42 "
43
44 DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README )
45 @@ -27,7 +27,7 @@ DOCS=( AUTHORS ChangeLog{,.0,.1,.2} NEWS README )
46 src_configure() {
47 econf \
48 $(use_enable ipv6) \
49 - $(use_enable linguas_ja nls) \
50 + $(use_enable nls) \
51 $(use_enable threads pthread) \
52 --with-pkgdocdir=/usr/share/doc/${PF}/html
53 }