85 lines
2.4 KiB
Bash
85 lines
2.4 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
ECM_TEST="forceoptional"
|
|
PVCUT=$(ver_cut 1-3)
|
|
KFMIN=5.96.0
|
|
QTMIN=5.15.5
|
|
VIRTUALX_REQUIRED="test"
|
|
inherit ecm gear.kde.org optfeature
|
|
|
|
DESCRIPTION="Plugins for KDE Personal Information Management Suite"
|
|
HOMEPAGE="https://apps.kde.org/kontact/"
|
|
|
|
LICENSE="GPL-2+ LGPL-2.1+"
|
|
SLOT="5"
|
|
KEYWORDS="amd64 arm64 ~ppc64 ~x86"
|
|
IUSE="importwizard markdown"
|
|
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
>=app-crypt/gpgme-1.16.0:=[cxx,qt5]
|
|
>=dev-libs/grantlee-5.2.0:5
|
|
>=dev-qt/qtgui-${QTMIN}:5
|
|
>=dev-qt/qtnetwork-${QTMIN}:5
|
|
>=dev-qt/qtwidgets-${QTMIN}:5
|
|
>=dev-qt/qtxml-${QTMIN}:5
|
|
>=kde-apps/akonadi-${PVCUT}:5
|
|
>=kde-apps/akonadi-contacts-${PVCUT}:5
|
|
>=kde-apps/akonadi-notes-${PVCUT}:5
|
|
>=kde-apps/calendarsupport-${PVCUT}:5
|
|
>=kde-apps/eventviews-${PVCUT}:5
|
|
>=kde-apps/grantleetheme-${PVCUT}:5
|
|
>=kde-apps/incidenceeditor-${PVCUT}:5
|
|
>=kde-apps/kaddressbook-${PVCUT}:5
|
|
>=kde-apps/kidentitymanagement-${PVCUT}:5
|
|
>=kde-apps/kimap-${PVCUT}:5
|
|
>=kde-apps/kitinerary-${PVCUT}:5
|
|
>=kde-apps/kmailtransport-${PVCUT}:5
|
|
>=kde-apps/kmime-${PVCUT}:5
|
|
>=kde-apps/kpkpass-${PVCUT}:5
|
|
>=kde-apps/libkdepim-${PVCUT}:5
|
|
>=kde-apps/libkleo-${PVCUT}:5
|
|
>=kde-apps/libksieve-${PVCUT}:5
|
|
>=kde-apps/libktnef-${PVCUT}:5
|
|
>=kde-apps/mailcommon-${PVCUT}:5
|
|
>=kde-apps/messagelib-${PVCUT}:5
|
|
>=kde-apps/pimcommon-${PVCUT}:5
|
|
>=kde-frameworks/kcompletion-${KFMIN}:5
|
|
>=kde-frameworks/kconfig-${KFMIN}:5
|
|
>=kde-frameworks/kconfigwidgets-${KFMIN}:5
|
|
>=kde-frameworks/kcontacts-${KFMIN}:5
|
|
>=kde-frameworks/kcoreaddons-${KFMIN}:5
|
|
>=kde-frameworks/kdbusaddons-${KFMIN}:5
|
|
>=kde-frameworks/kguiaddons-${KFMIN}:5
|
|
>=kde-frameworks/ki18n-${KFMIN}:5
|
|
>=kde-frameworks/kiconthemes-${KFMIN}:5
|
|
>=kde-frameworks/kio-${KFMIN}:5
|
|
>=kde-frameworks/kparts-${KFMIN}:5
|
|
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
|
|
>=kde-frameworks/kxmlgui-${KFMIN}:5
|
|
>=kde-frameworks/prison-${KFMIN}:5
|
|
>=kde-frameworks/syntax-highlighting-${KFMIN}:5
|
|
importwizard? ( >=kde-apps/akonadi-import-wizard-${PVCUT}:5 )
|
|
markdown? ( app-text/discount )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
$(cmake_use_find_package importwizard KPimImportWizard)
|
|
$(cmake_use_find_package markdown Discount)
|
|
)
|
|
|
|
ecm_src_configure
|
|
}
|
|
|
|
pkg_postinst() {
|
|
if [[ -z "${REPLACING_VERSIONS}" ]]; then
|
|
optfeature "regex support for Sieve editor plugin" kde-misc/kregexpeditor
|
|
fi
|
|
ecm_pkg_postinst
|
|
}
|