diff options
author | Michael Palimaka <kensington@gentoo.org> | 2016-01-27 00:19:10 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-01-27 00:33:25 +1100 |
commit | 7262f76153c0e0ae4ac6d390245e4558afbfe1b5 (patch) | |
tree | 4f048ec8c4ff21baf81de7f8f7198818f5d6528e /eclass/kde5.eclass | |
parent | gnome2-utils.eclass: enable EAPI 6 support (diff) | |
download | gentoo-7262f76153c0e0ae4ac6d390245e4558afbfe1b5.tar.gz gentoo-7262f76153c0e0ae4ac6d390245e4558afbfe1b5.tar.bz2 gentoo-7262f76153c0e0ae4ac6d390245e4558afbfe1b5.zip |
kde5.eclass: comment_add_subdirectory -> cmake_comment_add_subdirectory
Diffstat (limited to 'eclass/kde5.eclass')
-rw-r--r-- | eclass/kde5.eclass | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 9aede6d6f79b..8b528b2fdbac 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -400,12 +400,12 @@ kde5_src_prepare() { # only build examples when required if ! use_if_iuse examples || ! use examples ; then - comment_add_subdirectory examples + cmake_comment_add_subdirectory examples fi # only enable handbook when required if ! use_if_iuse handbook ; then - comment_add_subdirectory ${KDE_DOC_DIR} + cmake_comment_add_subdirectory ${KDE_DOC_DIR} if [[ ${KDE_HANDBOOK} = forceoptional ]] ; then punt_bogus_dep KF5 DocTools @@ -423,7 +423,7 @@ kde5_src_prepare() { rm -rf ${lang} fi if [[ -e CMakeLists.txt ]] ; then - comment_add_subdirectory ${lang} + cmake_comment_add_subdirectory ${lang} fi fi done @@ -434,7 +434,7 @@ kde5_src_prepare() { pushd ${KDE_DOC_DIR} > /dev/null || die for lang in *; do if ! has ${lang} ${LINGUAS} ; then - comment_add_subdirectory ${lang} + cmake_comment_add_subdirectory ${lang} fi done popd > /dev/null || die @@ -445,7 +445,7 @@ kde5_src_prepare() { # in frameworks, tests = manual tests so never build them if [[ ${CATEGORY} = kde-frameworks ]]; then - comment_add_subdirectory tests + cmake_comment_add_subdirectory tests fi case ${KDE_PUNT_BOGUS_DEPS} in @@ -465,13 +465,13 @@ kde5_src_prepare() { if [[ ${KDE_TEST} = forceoptional ]] ; then punt_bogus_dep Qt5 Test # if forceoptional, also cover non-kde categories - comment_add_subdirectory autotests - comment_add_subdirectory test - comment_add_subdirectory tests + cmake_comment_add_subdirectory autotests + cmake_comment_add_subdirectory test + cmake_comment_add_subdirectory tests elif [[ ${CATEGORY} = kde-frameworks || ${CATEGORY} = kde-plasma || ${CATEGORY} = kde-apps ]] ; then - comment_add_subdirectory autotests - comment_add_subdirectory test - comment_add_subdirectory tests + cmake_comment_add_subdirectory autotests + cmake_comment_add_subdirectory test + cmake_comment_add_subdirectory tests fi fi } |