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>[email protected]</email> - <name>Gentoo KDE Project</name> -</maintainer> + <maintainer type="project"> + <email>[email protected]</email> + <name>Gentoo KDE Project</name> + </maintainer> </pkgmetadata>
