diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-01-08 19:00:35 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-01-08 19:11:11 +0100 |
commit | b6c35038523e72d1dc5e052dba06448370271aae (patch) | |
tree | 83a96ffd4d8984a8d80fa2143136bfe9f228a081 /x11-misc | |
parent | www-apps/mod_survey: Remove linguas_* USE flags. (diff) | |
download | gentoo-b6c35038523e72d1dc5e052dba06448370271aae.tar.gz gentoo-b6c35038523e72d1dc5e052dba06448370271aae.tar.bz2 gentoo-b6c35038523e72d1dc5e052dba06448370271aae.zip |
x11-misc/kapow: Migrate from LINGUAS to L10N.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/kapow/kapow-1.5.5.ebuild | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/x11-misc/kapow/kapow-1.5.5.ebuild b/x11-misc/kapow/kapow-1.5.5.ebuild index 9447fce76942..00138613950e 100644 --- a/x11-misc/kapow/kapow-1.5.5.ebuild +++ b/x11-misc/kapow/kapow-1.5.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -23,11 +23,11 @@ DEPEND=" ${RDEPEND} dev-qt/linguist-tools:5 " -K_LINGUAS=" +K_LANGS=" ar bg cs da de el en es fr it lt nl no pl pt_BR ro ru sv tr uk " -for K_LINGUA in ${K_LINGUAS}; do - IUSE+=" linguas_${K_LINGUA}" +for K_LANG in ${K_LANGS}; do + IUSE+=" l10n_${K_LANG/_/-}" done DOCS=( ChangeLog README ) @@ -35,20 +35,18 @@ src_prepare() { default count() { echo ${#}; } - local lingua_count=$(count ${K_LINGUAS}) + local lang_count=$(count ${K_LANGS}) local locale_count=$(count translations/${PN}_*.ts) - [[ ${lingua_count} = ${locale_count} ]] \ - || die "Number of LINGUAS does not match number of locales" + [[ ${lang_count} = ${locale_count} ]] \ + || die "Number of LANGS does not match number of locales" unset count - local lingua - if [[ -n "${LINGUAS}" ]]; then - for lingua in ${K_LINGUAS}; do - if ! use linguas_${lingua}; then - rm translations/${PN}_${lingua}.* || die - fi - done - fi + local lang + for lang in ${K_LANGS}; do + if ! use l10n_${lang/_/-}; then + rm translations/${PN}_${lang}.* || die + fi + done } src_configure() { |