commit:     d84a719bf80664380e35a47abd0683463c5f1bc7
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sun Jul  5 19:57:30 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jul  8 22:36:37 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=d84a719b

[eclass] Add KDE_DOC_DIR variable

Defaults to "doc". Otherwise, use alternative KDE handbook path.

 eclass/kde5.eclass | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index d54badd..43fb4b1 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -77,6 +77,11 @@ fi
 # generate and install KDE handbook.
 : ${KDE_HANDBOOK:=false}
 
+# @ECLASS-VARIABLE: KDE_DOC_DIR
+# @DESCRIPTION:
+# Defaults to "doc". Otherwise, use alternative KDE handbook path.
+: ${KDE_DOC_DIR:=doc}
+
 # @ECLASS-VARIABLE: KDE_TEST
 # @DESCRIPTION:
 # If set to "false", do nothing.
@@ -366,7 +371,7 @@ kde5_src_prepare() {
 
        # only enable handbook when required
        if ! use_if_iuse handbook ; then
-               comment_add_subdirectory doc
+               comment_add_subdirectory ${KDE_DOC_DIR}
        fi
 
        # enable only the requested translations
@@ -388,7 +393,7 @@ kde5_src_prepare() {
                fi
 
                if [[ ${KDE_HANDBOOK} = true ]] ; then
-                       pushd doc > /dev/null
+                       pushd ${KDE_DOC_DIR} > /dev/null
                        for lang in *; do
                                if ! has ${lang} ${LINGUAS} ; then
                                        comment_add_subdirectory ${lang}

Reply via email to