blob: 058c3be2d0e0027c705e2cc7d97e85671f0ac023 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Copyright 2020 The Trinity Desktop Project
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
TRINITY_MODULE_NAME="tdepim"
TSM_EXTRACT_ALSO="libtdepim/ libtdenetwork/ plugins/ korganizer/ kaddressbook/
kmail/ knotes/ knode/ akregator/ karm/ libemailfunctions/ libkpimidentities/"
inherit trinity-meta-2
DESCRIPTION="Trinity personal information manager"
DEPEND="
~trinity-base/libtdepim-${PV}
~trinity-base/libkpimidentities-${PV}
~trinity-base/libkholidays-${PV}
~trinity-base/knotes-${PV}
~trinity-base/korganizer-${PV}
"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i '/kmail/d' kontact/plugins/CMakeLists.txt || die
sed -i '/specialdates/d' kontact/plugins/CMakeLists.txt || die
trinity-meta-2_src_prepare
}
|