diff options
author | Ulrich Müller <ulm@gentoo.org> | 2018-01-06 13:13:19 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2018-01-06 13:22:56 +0100 |
commit | f6b3729b380cab8ef3574a5884107602c8b6e19c (patch) | |
tree | 8ab556723d8037f4f75339339cc861a89d62eee2 /app-misc | |
parent | app-emulation/virt-manager: Remove linguas_* from IUSE. (diff) | |
download | gentoo-f6b3729b380cab8ef3574a5884107602c8b6e19c.tar.gz gentoo-f6b3729b380cab8ef3574a5884107602c8b6e19c.tar.bz2 gentoo-f6b3729b380cab8ef3574a5884107602c8b6e19c.zip |
app-misc/tasque: Remove linguas_* from IUSE.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/tasque/tasque-0.1.12.ebuild | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/app-misc/tasque/tasque-0.1.12.ebuild b/app-misc/tasque/tasque-0.1.12.ebuild index c5096c46bd11..aee4663574b9 100644 --- a/app-misc/tasque/tasque-0.1.12.ebuild +++ b/app-misc/tasque/tasque-0.1.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -15,10 +15,6 @@ IUSE="+rememberthemilk +sqlite hiveminder debug" LANGS="ca ca@valencia cs da de el en_GB eo es et fi fr gl hu id it ja lv nb nds nl pl pt pt_BR ro ru sl sr sr@latin sv th tr zh_CN zh_TW" -for lang in ${LANGS}; do - IUSE+=" linguas_${lang}" -done - REQUIRED_USE="|| ( rememberthemilk sqlite hiveminder )" RDEPEND=">=dev-dotnet/gtk-sharp-2.12.7-r5 @@ -41,12 +37,15 @@ src_configure() { src_install() { default mv_command="cp -pPR" mono_multilib_comply - einfo "Cleaning up locales..." - for lang in ${LANGS}; do - use "linguas_${lang}" && { - einfo "- keeping ${lang}" - continue - } - rm -Rf "${D}"/usr/share/locale/"${lang}" || die - done + + if [[ -n ${LINGUAS+set} ]]; then + einfo "Cleaning up locales..." + for lang in ${LANGS}; do + if has ${lang} ${LINGUAS}; then + einfo "- keeping ${lang}" + else + rm -Rf "${D}"/usr/share/locale/"${lang}" || die + fi + done + fi } |