Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 01 Sep 2015 18:05:10
Message-Id: 1441130681.77fcaa450c5f820cd830138a36779ce98ce186e1.kensington@gentoo
1 commit: 77fcaa450c5f820cd830138a36779ce98ce186e1
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 1 17:08:33 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 18:04:41 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77fcaa45
7
8 kde5.eclass: don't try to perform linguas operations on kde-apps handbooks.
9
10 Doing so was interfering with the handbook directory structure of some
11 packages, resulting in some handbooks not being installed. The operations
12 can be skipped completely, as all kde-apps translated handbooks are shipped
13 with kde-l10n.
14
15 eclass/kde5.eclass | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
19 index 81a1b96..2e8f5c4 100644
20 --- a/eclass/kde5.eclass
21 +++ b/eclass/kde5.eclass
22 @@ -404,7 +404,7 @@ kde5_src_prepare() {
23 popd > /dev/null
24 fi
25
26 - if [[ ${KDE_HANDBOOK} = true && -d ${KDE_DOC_DIR} ]] ; then
27 + if [[ ${KDE_HANDBOOK} = true && -d ${KDE_DOC_DIR} && ${CATEGORY} != kde-apps ]] ; then
28 pushd ${KDE_DOC_DIR} > /dev/null
29 for lang in *; do
30 if ! has ${lang} ${LINGUAS} ; then