summaryrefslogtreecommitdiff
path: root/kde-base/kmail
diff options
context:
space:
mode:
authorAndreas Sturmlechner <andreas.sturmlechner@gmail.com>2015-04-18 20:42:06 +0200
committerAndreas Sturmlechner <andreas.sturmlechner@gmail.com>2015-04-18 20:42:06 +0200
commit7dc1db78d64ead5be7eba8fa6a85ada1706cd9af (patch)
tree6adef19516772e360e685c7864a1bb451a2fe419 /kde-base/kmail
parent08f71797c4194348954a7808f79ff835846bf195 (diff)
downloadkde-7dc1db78d64ead5be7eba8fa6a85ada1706cd9af.tar.gz
kde-7dc1db78d64ead5be7eba8fa6a85ada1706cd9af.tar.bz2
kde-7dc1db78d64ead5be7eba8fa6a85ada1706cd9af.zip
[kde-base] KDE PIM 4.14.7 version bump
Package-Manager: portage-2.2.14
Diffstat (limited to 'kde-base/kmail')
-rw-r--r--kde-base/kmail/Manifest1
-rw-r--r--kde-base/kmail/kmail-4.14.7.ebuild114
2 files changed, 115 insertions, 0 deletions
diff --git a/kde-base/kmail/Manifest b/kde-base/kmail/Manifest
new file mode 100644
index 00000000000..053adb76597
--- /dev/null
+++ b/kde-base/kmail/Manifest
@@ -0,0 +1 @@
+DIST kdepim-4.14.7.tar.xz 14574728 SHA256 407a9e8f4c0927ec62cc59008fb6687eca25d4f7ea3e058df50c83cdb2bcd542 SHA512 55f48c4cac456828441b7f70ba25fdb1776925bbd92b62197dc7926762480bc9b96b2a85ed1fbc6600d4a95193794ae6f0c03f56d802e21009c8c42e4aab067f WHIRLPOOL ea104e44db757d8fc06b8fa02df9a8d5c30686a0841c5e0433571c8e7078820d45e745ea3231f9e85cf35548eee0c185a575bcbd3f0c36ba8b59a48bdff6008f
diff --git a/kde-base/kmail/kmail-4.14.7.ebuild b/kde-base/kmail/kmail-4.14.7.ebuild
new file mode 100644
index 00000000000..44034e26ff4
--- /dev/null
+++ b/kde-base/kmail/kmail-4.14.7.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+KMNAME="kdepim"
+VIRTUALX_REQUIRED=test
+inherit flag-o-matic kde4-meta
+
+DESCRIPTION="KMail is the email component of Kontact, the integrated personal information manager of KDE"
+HOMEPAGE="http://www.kde.org/applications/internet/kmail/"
+KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="debug"
+
+DEPEND="
+ $(add_kdebase_dep kdepimlibs)
+ $(add_kdebase_dep korganizer)
+ $(add_kdebase_dep kdepim-common-libs)
+"
+RDEPEND="
+ ${DEPEND}
+ !=kde-base/kdepim-common-libs-4.12.1-r1
+"
+
+RESTRICT="test"
+# bug 393147
+
+KMEXTRACTONLY="
+ agents/folderarchiveagent.desktop
+ agents/sendlateragent/
+ akonadi_next/
+ calendarviews/
+ grantleeeditor/grantleethemeeditor/
+ kdgantt2/
+ korganizer/
+ kresources/
+ libkdepimdbusinterfaces/
+ libkleo/
+ libkpgp/
+"
+KMCOMPILEONLY="
+ calendarsupport/
+ grantleetheme/
+ incidenceeditor-ng/
+ kaddressbookgrantlee/
+ mailcommon/
+ mailimporter/
+ messagecomposer/
+ messagecore/
+ messagelist/
+ messageviewer/
+ mailcommon/
+ mailimporter/
+ noteshared/
+ pimcommon/
+ templateparser/
+"
+KMEXTRA="
+ agents/archivemailagent/
+ agents/followupreminderagent/
+ agents/mailfilteragent/
+ grantleeeditor/headerthemeeditor/
+ importwizard/
+ kmailcvt/
+ ksendemail/
+ libksieve/
+ mboximporter/
+ pimsettingexporter/
+ plugins/messageviewer/
+"
+
+KMLOADLIBS="kdepim-common-libs"
+
+src_configure() {
+ # Bug 308903
+ use ppc64 && append-flags -mminimal-toc
+
+ kde4-meta_src_configure
+}
+
+src_compile() {
+ 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
+
+ if has_version "app-office/akonadi-server[sqlite]"; then
+ ewarn
+ ewarn "We strongly recommend you set your Akonadi database backend to QMYSQL in your"
+ ewarn "user configuration. This is the backend recommended by KDE upstream."
+ ewarn "Reports indicate that kde-base/kmail-4.10 does not work properly with the sqlite"
+ ewarn "backend anymore."
+ if has_version "app-office/akonadi-server[-mysql]"; then
+ ewarn "FOR THAT, YOU WILL HAVE TO RE-BUILD app-office/akonadi-server WITH mysql USEFLAG ENABLED."
+ fi
+ ewarn "You can select the backend in your ~/.config/akonadi/akonadiserverrc."
+ ewarn
+ fi
+}