public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kmail/
Date: Wed, 11 May 2016 09:51:24 +0000 (UTC)	[thread overview]
Message-ID: <1462739828.c2f41f0529fcefa9a43169f61a0f2f5f0cc43065.kensington@gentoo> (raw)

commit:     c2f41f0529fcefa9a43169f61a0f2f5f0cc43065
Author:     Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com>
AuthorDate: Sat Apr 23 20:06:07 2016 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun May  8 20:37:08 2016 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=c2f41f05

kde-apps/kmail: Add split ebuild

Package-Manager: portage-2.2.27

 kde-apps/kmail/kmail-9999.ebuild | 124 +++++++++++++++++++++++++++++++++++++++
 kde-apps/kmail/metadata.xml      |   8 +--
 2 files changed, 128 insertions(+), 4 deletions(-)

diff --git a/kde-apps/kmail/kmail-9999.ebuild b/kde-apps/kmail/kmail-9999.ebuild
new file mode 100644
index 0000000..0e8faa6
--- /dev/null
+++ b/kde-apps/kmail/kmail-9999.ebuild
@@ -0,0 +1,124 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+KDE_PIM_KONTACTPLUGIN="true"
+KDE_TEST="forceoptional"
+KMNAME="kdepim"
+QT_MINIMAL="5.6.0"
+VIRTUALX_REQUIRED="test"
+inherit kde5
+
+DESCRIPTION="Email component of Kontact, the integrated personal information manager of KDE"
+HOMEPAGE="https://www.kde.org/applications/internet/kmail/"
+KEYWORDS=""
+IUSE=""
+
+COMMON_DEPEND="
+	$(add_frameworks_dep kbookmarks)
+	$(add_frameworks_dep kcmutils)
+	$(add_frameworks_dep kcodecs)
+	$(add_frameworks_dep kcompletion)
+	$(add_frameworks_dep kconfig)
+	$(add_frameworks_dep kconfigwidgets)
+	$(add_frameworks_dep kcoreaddons)
+	$(add_frameworks_dep kcrash)
+	$(add_frameworks_dep kdbusaddons)
+	$(add_frameworks_dep kguiaddons)
+	$(add_frameworks_dep ki18n)
+	$(add_frameworks_dep kiconthemes)
+	$(add_frameworks_dep kitemviews)
+	$(add_frameworks_dep kio)
+	$(add_frameworks_dep kjobwidgets)
+	$(add_frameworks_dep knotifications)
+	$(add_frameworks_dep knotifyconfig)
+	$(add_frameworks_dep kparts)
+	$(add_frameworks_dep kservice)
+	$(add_frameworks_dep ktextwidgets)
+	$(add_frameworks_dep kwidgetsaddons)
+	$(add_frameworks_dep kwindowsystem)
+	$(add_frameworks_dep kxmlgui)
+	$(add_frameworks_dep sonnet)
+	$(add_kdeapps_dep akonadi)
+	$(add_kdeapps_dep akonadi-contact)
+	$(add_kdeapps_dep akonadi-mime)
+	$(add_kdeapps_dep akonadi-search)
+	$(add_kdeapps_dep gpgmepp)
+	$(add_kdeapps_dep kcalcore)
+	$(add_kdeapps_dep kcontacts)
+	$(add_kdeapps_dep kdepim-apps-libs)
+	$(add_kdeapps_dep kidentitymanagement)
+	$(add_kdeapps_dep kmailtransport)
+	$(add_kdeapps_dep kmime)
+	$(add_kdeapps_dep kontactinterface)
+	$(add_kdeapps_dep kpimtextedit)
+	$(add_kdeapps_dep libgravatar)
+	$(add_kdeapps_dep libkdepim)
+	$(add_kdeapps_dep libkleo)
+	$(add_kdeapps_dep libksieve)
+	$(add_kdeapps_dep mailcommon)
+	$(add_kdeapps_dep messagelib)
+	$(add_kdeapps_dep pimcommon)
+	$(add_qt_dep qtdbus)
+	$(add_qt_dep qtgui)
+	$(add_qt_dep qtnetwork)
+	$(add_qt_dep qtwebengine 'widgets')
+	$(add_qt_dep qtwidgets)
+	$(add_qt_dep qtxml)
+"
+DEPEND="${COMMON_DEPEND}
+	$(add_kdeapps_dep kcalutils)
+	$(add_kdeapps_dep kldap)
+	dev-libs/boost:=
+	dev-libs/libxslt
+	test? ( $(add_kdeapps_dep akonadi 'sqlite,tools') )
+"
+RDEPEND="${COMMON_DEPEND}
+	!kde-apps/kdepim:5
+	!kde-apps/kdepim-common-libs:4
+"
+
+if [[ ${KDE_BUILD_TYPE} = live ]] ; then
+	S="${WORKDIR}/${P}/${PN}"
+else
+	S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
+fi
+
+src_prepare() {
+	# kmail subproject does not contain doc
+	# at least until properly split upstream
+	echo "add_subdirectory(doc)" >> CMakeLists.txt || die "Failed to add doc dir"
+
+	mkdir doc || die "Failed to create doc dir"
+	mv ../doc/${PN} doc || die "Failed to move handbook"
+	mv ../doc/akonadi_archivemail_agent doc || die "Failed to move handbook"
+	mv ../doc/akonadi_followupreminder_agent doc || die "Failed to move handbook"
+	mv ../doc/akonadi_sendlater_agent doc || die "Failed to move handbook"
+	cat <<-EOF > doc/CMakeLists.txt
+add_subdirectory(${PN})
+add_subdirectory(akonadi_archivemail_agent)
+add_subdirectory(akonadi_followupreminder_agent)
+add_subdirectory(akonadi_sendlater_agent)
+EOF
+
+	kde5_src_prepare
+}
+
+pkg_postinst() {
+	kde5_pkg_postinst
+
+	if ! has_version "kde-apps/kdepim-addons:${SLOT}" ; then
+		echo
+		elog "Install kde-apps/kdepim-addons:${SLOT} for fancy e-mail headers and various useful plugins."
+		echo
+	fi
+
+	if ! has_version "kde-apps/kleopatra:${SLOT}" ; then
+		echo
+		elog "Install kde-apps/kleopatra:${SLOT} to get a crypto config and certificate details GUI."
+		echo
+	fi
+}

diff --git a/kde-apps/kmail/metadata.xml b/kde-apps/kmail/metadata.xml
index 0cf5922..2fdbf33 100644
--- a/kde-apps/kmail/metadata.xml
+++ b/kde-apps/kmail/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-	<email>kde@gentoo.org</email>
-	<name>Gentoo KDE Project</name>
-</maintainer>
+	<maintainer type="project">
+		<email>kde@gentoo.org</email>
+		<name>Gentoo KDE Project</name>
+	</maintainer>
 </pkgmetadata>


             reply	other threads:[~2016-05-11  9:51 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-11  9:51 Michael Palimaka [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-02 10:28 [gentoo-commits] proj/kde:master commit in: kde-apps/kmail/ Andreas Sturmlechner
2025-02-02 10:28 Andreas Sturmlechner
2024-11-10 22:52 Andreas Sturmlechner
2024-11-10 22:52 Andreas Sturmlechner
2024-08-11  6:58 Andreas Sturmlechner
2024-05-17 19:50 Andreas Sturmlechner
2024-03-03 15:05 Andreas Sturmlechner
2024-02-25 23:14 Sam James
2023-07-06 12:00 Andreas Sturmlechner
2023-01-15 12:30 Andreas Sturmlechner
2022-10-06  9:02 Andreas Sturmlechner
2022-03-03 11:07 Andreas Sturmlechner
2022-02-17 19:00 Sam James
2021-04-25  8:00 Andreas Sturmlechner
2021-04-16  9:35 Andreas Sturmlechner
2021-04-15 22:32 Andreas Sturmlechner
2021-04-04 19:21 Andreas Sturmlechner
2020-09-07 15:07 Andreas Sturmlechner
2020-08-30 19:02 Andreas Sturmlechner
2020-05-19 11:20 Andreas Sturmlechner
2020-04-04  0:41 Andreas Sturmlechner
2020-03-02 17:16 Andreas Sturmlechner
2019-10-24 18:37 Andreas Sturmlechner
2019-09-11  8:09 Andreas Sturmlechner
2019-04-27 19:08 Andreas Sturmlechner
2018-12-13 22:24 Andreas Sturmlechner
2018-10-15 10:14 Andreas Sturmlechner
2017-12-15 20:09 Andreas Sturmlechner
2017-11-25 15:24 Andreas Sturmlechner
2017-10-21 18:34 Andreas Sturmlechner
2017-08-02 23:22 Andreas Sturmlechner
2016-12-17 19:51 Johannes Huber
2016-12-14 11:27 Michael Palimaka
2016-10-13 11:41 Michael Palimaka
2016-10-13 11:41 Michael Palimaka
2016-10-07 16:02 Michael Palimaka
2016-08-31 14:33 Michael Palimaka
2016-08-10 15:35 Michael Palimaka
2016-08-05 17:28 Michael Palimaka
2016-06-23 11:54 Michael Palimaka
2016-04-04 22:25 Johannes Huber
2016-03-21 15:58 Johannes Huber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1462739828.c2f41f0529fcefa9a43169f61a0f2f5f0cc43065.kensington@gentoo \
    --to=kensington@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox