commit:     735b2854aa3c17dda12d5f4d7e27188eddd52aae
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Tue Mar  8 17:32:47 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Fri Mar 11 16:26:04 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=735b2854

kde5.eclass: Use "optional" parameter for KDE_TEST and KDE_HANDBOOK

 eclass/kde5.eclass | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index bddb0bc..4a7c7d5 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -79,6 +79,8 @@ fi
 # If set to "false", do nothing.
 # Otherwise, add "+handbook" to IUSE, add the appropriate dependency, and
 # generate and install KDE handbook.
+# If set to "optional", config with -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON
+# when USE=!handbook. In case package requires KF5KDELibs4Support, see next:
 # If set to "forceoptional", remove a KF5DocTools dependency from the root
 # CMakeLists.txt in addition to the above.
 : ${KDE_HANDBOOK:=false}
@@ -92,6 +94,8 @@ fi
 # @DESCRIPTION:
 # If set to "false", do nothing.
 # For any other value, add test to IUSE and add a dependency on 
dev-qt/qttest:5.
+# If set to "optional", configure with -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Test=ON
+# when USE=!test.
 # If set to "forceoptional", remove a Qt5Test dependency from the root
 # CMakeLists.txt in addition to the above.
 if [[ ${CATEGORY} = kde-frameworks ]]; then
@@ -603,6 +607,14 @@ kde5_src_configure() {
 
        if ! use_if_iuse test ; then
                cmakeargs+=( -DBUILD_TESTING=OFF )
+
+               if [[ ${KDE_TEST} = optional ]] ; then
+                       cmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Test=ON )
+               fi
+       fi
+
+       if ! use_if_iuse handbook && [[ ${KDE_HANDBOOK} = optional ]] ; then
+               cmakeargs+=( -DCMAKE_DISABLE_FIND_PACKAGE_KF5DocTools=ON )
        fi
 
        # install mkspecs in the same directory as qt stuff

Reply via email to