mail-client/mail-notification: Remove linguas_* from IUSE.

Package-Manager: Portage-2.3.19, Repoman-2.3.6
This commit is contained in:
Ulrich Müller
2018-01-06 13:06:18 +01:00
parent c4e0f8f960
commit c7c68b0ef2

View File

@@ -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
@@ -17,9 +17,6 @@ LICENSE="GPL-3"
IUSE="+gnome-keyring libressl sasl ssl sylpheed"
LANGS="bg ca cs de es fr ja nl pl pt pt_BR ru sr sr@Latn sv"
for lang in ${LANGS}; do
IUSE+=" linguas_${lang}"
done
# gmime is actually optional, but it's used by so much of the package
# it's pointless making it optional. gnome-keyring is required for
@@ -100,12 +97,14 @@ src_install() {
einstalldocs
rm -rf "${ED}/var/lib/scrollkeeper"
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
}