blob: 3cd98e39ab7fc1f402028d600919f6c0355ac0a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
ECM_TEST="forceoptional"
PVCUT=$(ver_cut 1-3)
KFMIN=6.19.0
QTMIN=6.9.1
VIRTUALDBUS_TEST=1
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="6"
KEYWORDS=""
IUSE="activities importwizard itinerary markdown test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-cpp/gpgmepp:=
dev-libs/qgpgme:=
>=dev-libs/ktextaddons-1.8.0:6
>=dev-qt/qtbase-${QTMIN}:6[gui,network,widgets,xml]
>=dev-qt/qtwebengine-${QTMIN}:6[widgets]
>=kde-apps/akonadi-${PVCUT}:6=
>=kde-apps/akonadi-calendar-${PVCUT}:6=
>=kde-apps/akonadi-contacts-${PVCUT}:6=
>=kde-apps/calendarsupport-${PVCUT}:6=
>=kde-apps/grantleetheme-${PVCUT}:6=
>=kde-apps/incidenceeditor-${PVCUT}:6=
>=kde-apps/kaddressbook-${PVCUT}:6
>=kde-apps/kcalutils-${PVCUT}:6=
>=kde-apps/kidentitymanagement-${PVCUT}:6=
>=kde-apps/kimap-${PVCUT}:6=
>=kde-apps/kldap-${PVCUT}:6=
>=kde-apps/kmailtransport-${PVCUT}:6=
>=kde-apps/kmime-${PVCUT}:6=
>=kde-apps/kpimtextedit-${PVCUT}:6=
>=kde-apps/kpkpass-${PVCUT}:6=
>=kde-apps/libgravatar-${PVCUT}:6=
>=kde-apps/libkdepim-${PVCUT}:6=
>=kde-apps/libkleo-${PVCUT}:6=
>=kde-apps/libksieve-${PVCUT}:6=
>=kde-apps/libktnef-${PVCUT}:6=
>=kde-apps/mailcommon-${PVCUT}:6=
>=kde-apps/mailimporter-${PVCUT}:6=
>=kde-apps/messagelib-${PVCUT}:6=
>=kde-apps/pimcommon-${PVCUT}:6=[activities?]
>=kde-frameworks/kcalendarcore-${KFMIN}:6
>=kde-frameworks/kcmutils-${KFMIN}:6
>=kde-frameworks/kcolorscheme-${KFMIN}:6
>=kde-frameworks/kcompletion-${KFMIN}:6
>=kde-frameworks/kconfig-${KFMIN}:6
>=kde-frameworks/kconfigwidgets-${KFMIN}:6
>=kde-frameworks/kcontacts-${KFMIN}:6
>=kde-frameworks/kcoreaddons-${KFMIN}:6
>=kde-frameworks/kdbusaddons-${KFMIN}:6
>=kde-frameworks/kdeclarative-${KFMIN}:6
>=kde-frameworks/kguiaddons-${KFMIN}:6
>=kde-frameworks/kholidays-${KFMIN}:6
>=kde-frameworks/ki18n-${KFMIN}:6
>=kde-frameworks/kiconthemes-${KFMIN}:6
>=kde-frameworks/kio-${KFMIN}:6
>=kde-frameworks/kparts-${KFMIN}:6
>=kde-frameworks/ktexttemplate-${KFMIN}:6
>=kde-frameworks/kwidgetsaddons-${KFMIN}:6
>=kde-frameworks/kxmlgui-${KFMIN}:6
>=kde-frameworks/prison-${KFMIN}:6
>=kde-frameworks/syntax-highlighting-${KFMIN}:6
activities? ( >=kde-plasma/plasma-activities-6.3.0:6= )
importwizard? ( >=kde-apps/akonadi-import-wizard-${PVCUT}:6= )
itinerary? ( >=kde-apps/kitinerary-${PVCUT}:6= )
markdown? ( app-text/discount:= )
"
DEPEND="${RDEPEND}"
BDEPEND="test? ( sys-apps/dbus )"
PATCHES=( "${FILESDIR}/${PN}-25.12.0-no-autogeneratetext.patch" )
src_configure() {
local mycmakeargs=(
-DKDEPIM_RUN_AKONADI_TEST=OFF # tests need database software and networking
-DOPTION_ADD_AUTOGENERATETEXT=OFF # would also require the same in dev-libs/ktextaddons
# not packaged (bug 911819), but if present leads to rust shenanigans
-DCMAKE_DISABLE_FIND_PACKAGE_Corrosion=ON # for adblock support, bug 940898
-DOPTION_USE_PLASMA_ACTIVITIES=$(usex activities)
$(cmake_use_find_package importwizard KPim6ImportWizard)
$(cmake_use_find_package itinerary KPim6Itinerary)
$(cmake_use_find_package markdown Discount)
)
ecm_src_configure
}
src_test() {
local CMAKE_SKIP_TESTS=(
# Locale differences in date display.
"fancyheaderstyleplugintest"
"grantleeheaderstyleplugintest"
# Comparison files outdated, also affected by changes in other packages.
"messageviewerplugins-rendertest"
# Tests pass but segfault when they exit.
"kdepim-addons-eventedittest"
"messageviewer-dkimauthenticationverifiedserverdialogtest"
# Test pass but get stuck indefinetly afterwards.
"kdepim-addons-todoedittest"
)
# tests can get stuck with spawned processes, 4 minutes is a reasonable timeout
ecm_src_test --timeout $(( 60 * 4 )) # seconds
}
pkg_postinst() {
if [[ -z "${REPLACING_VERSIONS}" ]]; then
optfeature "regex support for Sieve editor plugin" kde-misc/kregexpeditor
fi
}
|