diff options
| author | Andreas Sturmlechner <asturm@gentoo.org> | 2017-05-17 22:26:54 +0200 |
|---|---|---|
| committer | Andreas Sturmlechner <asturm@gentoo.org> | 2017-05-17 22:26:54 +0200 |
| commit | 9d1466fdf69c88b90c9d12299a111e6ff97275a9 (patch) | |
| tree | 5a0e9450e973a65c2d02ed14990ab58b7cc6dfab /eclass | |
| parent | f476ea8c43dad4094d66a6af7e6e31fafba8ec1a (diff) | |
| download | kde-9d1466fdf69c88b90c9d12299a111e6ff97275a9.tar.gz kde-9d1466fdf69c88b90c9d12299a111e6ff97275a9.tar.bz2 kde-9d1466fdf69c88b90c9d12299a111e6ff97275a9.zip | |
kde5.eclass: Don't remove cmake_modules, simplify filtering LINGUAS
Recent changes in KDE Applications packaging added a new directory
'cmake_modules' for some type of data content inside po/${lang}/
Diffstat (limited to 'eclass')
| -rw-r--r-- | eclass/kde5.eclass | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 60d8f131f1c..71839733485 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -566,17 +566,18 @@ kde5_src_prepare() { pushd ${po} > /dev/null || die local lang for lang in *; do - if [[ -d ${lang} ]] && ! has ${lang} ${LINGUAS} ; then - rm -r ${lang} || die + if [[ -e ${lang} ]] && ! has ${lang/.po/} ${LINGUAS} ; then + case ${lang} in + cmake_modules | \ + CMakeLists.txt | \ + ${PN}.pot) ;; + *) rm -r ${lang} || die ;; + esac 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 done popd > /dev/null || die |
