blob: 79c4da2bf2c9c223478f4d781203508db5bbaa83 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-base/kmail/kmail-4.3.5.ebuild,v 1.6 2010/06/22 16:16:49 reavertm Exp $
EAPI="2"
KMNAME="kdepim"
inherit kde4-meta
DESCRIPTION="KMail is the email component of Kontact, the integrated personal information manager of KDE."
KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
IUSE="debug +handbook semantic-desktop"
DEPEND="
$(add_kdebase_dep kdelibs 'semantic-desktop?')
$(add_kdebase_dep libkdepim)
$(add_kdebase_dep libkleo)
$(add_kdebase_dep libkpgp)
$(add_kdebase_dep libksieve)
$(add_kdebase_dep mimelib)
"
RDEPEND="${DEPEND}
$(add_kdebase_dep kmailcvt)
"
KMEXTRACTONLY="
kaddressbook/org.kde.KAddressbook.Core.xml
korganizer/org.kde.Korganizer.Calendar.xml
libkleo
libkpgp
libksieve
mimelib
"
KMEXTRA="
ksendemail/
plugins/kmail/
"
KMLOADLIBS="libkdepim"
PATCHES=( "${FILESDIR}/${PN}-4.1.72-fix.patch" )
src_configure() {
# Bug 308903
use ppc64 && append-flags -mminimal-toc
mycmakeargs=(
$(cmake-utils_use_with semantic-desktop Nepomuk)
)
kde4-meta_src_configure
}
src_compile() {
# Bug #276377: kontact/ can build before kmail/, causing a dependency not to be built
# Upstream as KDE Bug #198807
# (setting MAKEOPTS to trigger a repoman warning)
: || MAKEOPTS="-j1"
kde4-meta_src_compile kmail_xml
kde4-meta_src_compile
}
pkg_postinst() {
kde4-meta_pkg_postinst
if ! has_version kde-base/kdepim-kresources:${SLOT}; then
echo
elog "For groupware functionality, please install kde-base/kdepim-kresources:${SLOT}"
echo
fi
if ! has_version kde-base/kleopatra:${SLOT}; then
echo
elog "For certificate management and the gnupg log viewer, please install kde-base/kleopatra:${SLOT}"
echo
fi
}
|