-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: ecm.eclass
;;
esac
+# @ECLASS-VARIABLE: KDE_DESIGNERPLUGIN
+# @DESCRIPTION:
+# If set to "false", do nothing.
+# Otherwise, add "designer" to IUSE to toggle build of designer plugins
+# and add the necessary BDEPEND.
+# TODO: drop after KDE Applications 19.08.3 removal
+: ${KDE_DESIGNERPLUGIN:=false}
+case ${KDE_DESIGNERPLUGIN} in
+ true)
+ IUSE+=" designer"
+ BDEPEND+="
+ designer? ( >=kde-frameworks/kdesignerplugin-${KFMIN}:${KFSLOT} )
+ "
+ ;;
+ false) ;;
+ *)
+ eerror "Unknown value for \${KDE_DESIGNERPLUGIN}"
+ die "Value ${KDE_DESIGNERPLUGIN} is not supported"
+ ;;
+esac
+
case ${ECM_EXAMPLES} in
true)
IUSE+=" examples"
cmakeargs+=( -DBUILD_DESIGNERPLUGIN=$(usex designer) )
fi
+ # TODO: drop after KDE Applications 19.08.3 removal
+ if in_iuse designer && [[ ${KDE_DESIGNERPLUGIN} != false ]] ; then
+ cmakeargs+=( $(cmake_use_find_package designer KF5DesignerPlugin) )
+ fi
+
if [[ ${ECM_QTHELP} = true ]]; then
cmakeargs+=( -DBUILD_QCH=$(usex doc) )
fi
if [[ ${KDE_RELEASE_SERVICE} = true ]]; then
case ${PV} in
??.??.[6-9]? )
- _src_uri+="unstable/release-service/${PV}/src/"
+ _src_uri+="unstable/applications/${PV}/src/"
RESTRICT+=" mirror"
;;
+ 19.08.3? ) _src_uri+="stable/applications/${PV}/src/" ;;
*) _src_uri+="stable/release-service/${PV}/src/" ;;
esac
fi