From: Nikos Chantziaras <realnc@arcor.de>
To: gentoo-devhelp@lists.gentoo.org
Subject: [gentoo-devhelp] Re: LINGUAS vs LANGUAGES
Date: Fri, 15 May 2009 22:16:30 +0300 [thread overview]
Message-ID: <gukf25$h9f$1@ger.gmane.org> (raw)
In-Reply-To: <4A0D99DC.1090502@googlemail.com>
Daniel Pielmeier wrote:
> [...]
> You also might consider using a loop for installing the linguas else you
> have to add the same almost identical block for every new language
> introduced. This way the intermediate variable LANGS used for IUSE
> injection comes handy.
>
> # IUSE definition:
>
> IUSE="flags"
>
> LANGS="de en"
> for i in ${LANGS}; do
> IUSE="${IUSE} linguas_${i}"
> done
>
> # in src_install:
>
> local my_langs
>
> for j in ${LINGUAS}; do
> if has ${j} ${LANGS}; then
> my_langs="${j} ${my_langs}"
> fi
> done
>
> insinto "${GAMES_DATADIR}/${PN}/i18n"
> for k in ${my_langs}; do
> doins "${PN}_${k}.qm" || die "doins ${PN}_${k}.qm failed"
> done
Thanks. I ended up doing it this way, though with only one loop in
src_install(), which seems to be a bit more efficient and shorter:
LANGUAGES="de"
for i in ${LANGUAGES}; do
IUSE="${IUSE} linguas_${i}"
done
src_install()
#...
insinto "${GAMES_DATADIR}/${PN}/i18n"
for i in ${LANGUAGES}; do
if has ${i} ${LINGUAS}; then
doins "${PN}_${i}.qm" || die #...
fi
done
In this case, LANGUAGES must not include "en" though, since there's no
${PN}_en.qm file (English is built-in). I'm not sure if the following
would be better though, in case a user puts linguas_<language> in USE
instead of <language> in LINGUAS:
if has linguas_${i} ${USE}; then
But I suppose it would be the user's fault if he/she does that? :P
next prev parent reply other threads:[~2009-05-15 19:16 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-15 13:39 [gentoo-devhelp] LINGUAS vs LANGUAGES Nikos Chantziaras
[not found] ` <6142e6140905150705n3db6e281g43439abe11eb1fb7@mail.gmail.com>
2009-05-15 14:47 ` Nikos Chantziaras
2009-05-15 15:01 ` Daniel Pielmeier
2009-05-15 16:35 ` Daniel Pielmeier
2009-05-15 19:16 ` Nikos Chantziaras [this message]
2009-07-21 10:13 ` [gentoo-devhelp] " Steven J Long
2009-07-26 20:51 ` Mike Frysinger
2009-08-01 15:22 ` [gentoo-devhelp] " Steven J Long
2009-08-06 19:40 ` Steven J Long
2009-08-13 19:28 ` Mike Frysinger
2009-08-15 23:16 ` [gentoo-devhelp] " Steven J Long
2009-07-31 15:26 ` [gentoo-devhelp] " Nikos Chantziaras
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='gukf25$h9f$1@ger.gmane.org' \
--to=realnc@arcor.de \
--cc=gentoo-devhelp@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox