From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2F0C51383D3 for ; Tue, 1 Sep 2015 17:41:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CB8E614232; Tue, 1 Sep 2015 17:41:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6C1C814232 for ; Tue, 1 Sep 2015 17:41:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 44D3A3416CC for ; Tue, 1 Sep 2015 17:41:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7BC83114 for ; Tue, 1 Sep 2015 17:41:22 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1441129267.5b788d26cb1c605f18368ea894029a69cb6bf844.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 5b788d26cb1c605f18368ea894029a69cb6bf844 X-VCS-Branch: master Date: Tue, 1 Sep 2015 17:41:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1d2e805e-8c95-4ec8-90a5-709cdc946965 X-Archives-Hash: 782c3621b2a6b72390123e133c80c0b6 commit: 5b788d26cb1c605f18368ea894029a69cb6bf844 Author: Michael Palimaka gentoo org> AuthorDate: Tue Sep 1 17:08:33 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue Sep 1 17:41:07 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=5b788d26 kde5.eclass: don't try to perform linguas operations on kde-apps handbooks. Doing so was interfering with the handbook directory structure of some packages, resulting in some handbooks not being installed. The operations can be skipped completely, as all kde-apps translated handbooks are shipped with kde-l10n. eclass/kde5.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 28aba19..672df0d 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -461,7 +461,7 @@ kde5_src_prepare() { popd > /dev/null fi - if [[ ${KDE_HANDBOOK} = true && -d ${KDE_DOC_DIR} ]] ; then + if [[ ${KDE_HANDBOOK} = true && -d ${KDE_DOC_DIR} && ${CATEGORY} != kde-apps ]] ; then pushd ${KDE_DOC_DIR} > /dev/null for lang in *; do if ! has ${lang} ${LINGUAS} ; then