ecm.eclass: Drop KDE Applications 19.08.3 support
authorAndreas Sturmlechner <asturm@gentoo.org>
Wed, 11 Mar 2020 15:32:29 +0000 (16:32 +0100)
committerAndreas Sturmlechner <asturm@gentoo.org>
Thu, 19 Mar 2020 01:03:10 +0000 (02:03 +0100)
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
eclass/ecm.eclass

index 2892b0e0e942c506c10e9f5d868a66ac54b8ae97..0e3c64b0a2adaf5598b00621036fa5b014cb1a0a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: ecm.eclass
@@ -218,27 +218,6 @@ case ${ECM_DESIGNERPLUGIN} in
                ;;
 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"
@@ -545,11 +524,6 @@ ecm_src_configure() {
                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