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: games-board/xscrabble/
Date: Sun, 26 Jun 2016 08:37:31
Message-Id: 1466928978.2fe46c7f80e71005a765856b42d755d9d5a3ad52.ulm@gentoo
1 commit: 2fe46c7f80e71005a765856b42d755d9d5a3ad52
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 26 08:16:18 2016 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 26 08:16:18 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe46c7f
7
8 games-board/xscrabble: Migrate from LINGUAS to L10N.
9
10 Package-Manager: portage-2.3.0
11
12 games-board/xscrabble/xscrabble-2.10-r1.ebuild | 10 +++++-----
13 1 file changed, 5 insertions(+), 5 deletions(-)
14
15 diff --git a/games-board/xscrabble/xscrabble-2.10-r1.ebuild b/games-board/xscrabble/xscrabble-2.10-r1.ebuild
16 index e1c779a..6c5f4df 100644
17 --- a/games-board/xscrabble/xscrabble-2.10-r1.ebuild
18 +++ b/games-board/xscrabble/xscrabble-2.10-r1.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2014 Gentoo Foundation
21 +# Copyright 1999-2016 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 @@ -8,13 +8,13 @@ inherit eutils multilib games
26 DESCRIPTION="An X11 clone of the well-known Scrabble"
27 HOMEPAGE="http://freshmeat.net/projects/xscrabble/?topic_id=80"
28 SRC_URI="ftp://ftp.ac-grenoble.fr/ge/educational_games/${P}.tgz
29 - linguas_fr? ( ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_fr.tgz )
30 + l10n_fr? ( ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_fr.tgz )
31 ftp://ftp.ac-grenoble.fr/ge/educational_games/xscrabble_en.tgz"
32
33 LICENSE="GPL-2"
34 SLOT="0"
35 KEYWORDS="amd64 x86"
36 -IUSE="linguas_fr"
37 +IUSE="l10n_fr"
38
39 RDEPEND="x11-libs/libXaw
40 x11-libs/libXp"
41 @@ -25,7 +25,7 @@ DEPEND="${RDEPEND}
42 src_unpack() {
43 unpack ${P}.tgz
44 cp "${DISTDIR}"/xscrabble_en.tgz .
45 - use linguas_fr && cp "${DISTDIR}"/xscrabble_fr.tgz .
46 + use l10n_fr && cp "${DISTDIR}"/xscrabble_fr.tgz .
47 }
48
49 src_prepare() {
50 @@ -42,7 +42,7 @@ src_install() {
51 local f
52 export DESTDIR="${D}" LIBDIR="$(get_libdir)"
53 ./build install || die "install failed"
54 - if use linguas_fr ; then
55 + if use l10n_fr ; then
56 ./build lang fr || die "fr failed"
57 fi
58 ./build lang en || die "en failed"