commit:     9be84b1fe572d963019a2f9701826a4e7ab184a6
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 22 12:21:27 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Apr 22 14:32:05 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9be84b1f

kde5.eclass: Add poqm directory handling

Upstream directory for Qt-only translations.

- Check for and remove poqm directory if USE=-nls
- Filter LINGUAS in poqm as well

 eclass/kde5.eclass | 48 +++++++++++++++++++++++++++++-------------------
 1 file changed, 29 insertions(+), 19 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index e071a82b5d0..38b0fcda905 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -540,29 +540,39 @@ kde5_src_prepare() {
        fi
 
        # drop translations when nls is not wanted
-       if [[ -d po ]] && in_iuse nls && ! use nls ; then
-               rm -r po || die
+       if in_iuse nls && ! use nls ; then
+               if [[ -d po ]] ; then
+                       rm -r po || die
+               fi
+               if [[ -d poqm ]] ; then
+                       rm -r poqm || die
+               fi
        fi
 
-       # enable only the requested translations
-       # when required
-       if [[ -d po && -v LINGUAS ]] ; then
-               pushd po > /dev/null || die
-               local lang
-               for lang in *; do
-                       if [[ -d ${lang} ]] && ! has ${lang} ${LINGUAS} ; then
-                               rm -r ${lang} || die
-                               if [[ -e CMakeLists.txt ]] ; then
-                                       cmake_comment_add_subdirectory ${lang}
-                                       sed -e 
"/add_subdirectory([[:space:]]*${lang}\/.*[[:space:]]*)/d" -i CMakeLists.txt || 
die
-                               fi
-                       elif [[ -f ${lang} ]] && ! has ${lang/.po/} ${LINGUAS} 
; then
-                               if [[ ${lang} != CMakeLists.txt && ${lang} != 
${PN}.pot ]] ; then
-                                       rm ${lang} || die
+       # enable only the requested translations when required
+       if [[ -v LINGUAS ]] ; then
+               local po
+               for po in po poqm; do
+               if [[ -d ${po} ]] ; then
+                       pushd ${po} > /dev/null || die
+                       local lang
+                       for lang in *; do
+                               if [[ -d ${lang} ]] && ! has ${lang} ${LINGUAS} 
; then
+                                       rm -r ${lang} || die
+                                       if [[ -e CMakeLists.txt ]] ; then
+                                               cmake_comment_add_subdirectory 
${lang}
+                                               sed -e 
"/add_subdirectory([[:space:]]*${lang}\/.*[[:space:]]*)/d" \
+                                                       -i CMakeLists.txt || die
+                                       fi
+                               elif [[ -f ${lang} ]] && ! has ${lang/.po/} 
${LINGUAS} ; then
+                                       if [[ ${lang} != CMakeLists.txt && 
${lang} != ${PN}.pot ]] ; then
+                                               rm ${lang} || die
+                                       fi
                                fi
-                       fi
+                       done
+                       popd > /dev/null || die
+               fi
                done
-               popd > /dev/null || die
        fi
 
        if [[ ${KDE_BUILD_TYPE} = release && ${CATEGORY} != kde-apps ]] ; then

Reply via email to