Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-base/kmail/
Date: Mon, 27 Jun 2011 10:39:50
Message-Id: a247c9d60994d59e4fe5196c49614050e458161a.jmbsvicetto@gentoo
1 commit: a247c9d60994d59e4fe5196c49614050e458161a
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 27 10:37:43 2011 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 27 10:37:43 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=a247c9d6
7
8 [kde-base/kmail-4.6.90-r1] Add missing plugins to kmextra - fixes bug 372039.
9
10 (Portage version: 2.2.0_alpha41/git/Linux x86_64, signed Manifest commit with key BB0E6E98)
11
12 ---
13 kde-base/kmail/kmail-4.6.90-r1.ebuild | 83 +++++++++++++++++++++++++++++++++
14 1 files changed, 83 insertions(+), 0 deletions(-)
15
16 diff --git a/kde-base/kmail/kmail-4.6.90-r1.ebuild b/kde-base/kmail/kmail-4.6.90-r1.ebuild
17 new file mode 100644
18 index 0000000..8c9f09e
19 --- /dev/null
20 +++ b/kde-base/kmail/kmail-4.6.90-r1.ebuild
21 @@ -0,0 +1,83 @@
22 +# Copyright 1999-2011 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Header: $
25 +
26 +EAPI=4
27 +
28 +KDE_HANDBOOK="optional"
29 +KMNAME="kdepim"
30 +KDE_SCM="git"
31 +VIRTUALX_REQUIRED=test
32 +inherit kde4-meta
33 +
34 +DESCRIPTION="KMail is the email component of Kontact, the integrated personal information manager of KDE."
35 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
36 +IUSE="debug"
37 +
38 +DEPEND="
39 + $(add_kdebase_dep kdepimlibs 'semantic-desktop')
40 + $(add_kdebase_dep korganizer)
41 + $(add_kdebase_dep kdepim-common-libs)
42 +"
43 +RDEPEND="${DEPEND}"
44 +
45 +add_blocker kmailcvt
46 +add_blocker libksieve
47 +add_blocker mimelib
48 +
49 +KMEXTRACTONLY="
50 + akonadi_next/
51 + calendarsupport/
52 + korganizer/
53 + kresources/
54 + libkleo/
55 + libkpgp/
56 + libkdepimdbusinterfaces/
57 + kdgantt2/
58 +"
59 +KMCOMPILEONLY="
60 + messagecomposer/
61 + messagecore/
62 + messagelist/
63 + messageviewer/
64 + templateparser/
65 + incidenceeditor-ng/
66 + calendarsupport/
67 +"
68 +KMEXTRA="
69 + kmailcvt/
70 + ksendemail/
71 + libksieve/
72 + mailcommon/
73 + ontologies/
74 + plugins/messageviewer/
75 +"
76 +
77 +KMLOADLIBS="kdepim-common-libs"
78 +
79 +src_configure() {
80 + # Bug 308903
81 + use ppc64 && append-flags -mminimal-toc
82 +
83 + kde4-meta_src_configure
84 +}
85 +
86 +src_compile() {
87 + kde4-meta_src_compile kmail_xml
88 + kde4-meta_src_compile
89 +}
90 +
91 +pkg_postinst() {
92 + kde4-meta_pkg_postinst
93 +
94 + if ! has_version kde-base/kdepim-kresources:${SLOT}; then
95 + echo
96 + elog "For groupware functionality, please install kde-base/kdepim-kresources:${SLOT}"
97 + echo
98 + fi
99 + if ! has_version kde-base/kleopatra:${SLOT}; then
100 + echo
101 + elog "For certificate management and the gnupg log viewer, please install kde-base/kleopatra:${SLOT}"
102 + echo
103 + fi
104 +}