commit: 69e7a135b8e6dde8c9000ba1d72f57251ccfbdb7 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com> AuthorDate: Sun Feb 14 20:25:15 2016 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Thu Feb 18 14:23:56 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=69e7a135
kde-apps/akonadiconsole: Split out of kdepim Package-Manager: portage-2.2.27 .../akonadiconsole-15.12.49.9999.ebuild | 74 ++++++++++++++++++++++ kde-apps/akonadiconsole/akonadiconsole-9999.ebuild | 65 +++++++++++++++++++ 2 files changed, 139 insertions(+) diff --git a/kde-apps/akonadiconsole/akonadiconsole-15.12.49.9999.ebuild b/kde-apps/akonadiconsole/akonadiconsole-15.12.49.9999.ebuild new file mode 100644 index 0000000..94b4204 --- /dev/null +++ b/kde-apps/akonadiconsole/akonadiconsole-15.12.49.9999.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +KDE_HANDBOOK="false" +KDE_PUNT_BOGUS_DEPS="true" +KMNAME="kdepim" +inherit kde5 + +DESCRIPTION="Akonadi developer console" +HOMEPAGE="https://www.kde.org/" +KEYWORDS="" + +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kitemmodels) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_kdeapps_dep akonadi) + $(add_kdeapps_dep akonadi-contact) + $(add_kdeapps_dep calendarsupport) + $(add_kdeapps_dep kcalcore) + $(add_kdeapps_dep kcontacts) + $(add_kdeapps_dep kmime) + $(add_kdeapps_dep kpimtextedit) + $(add_kdeapps_dep libakonadi) + $(add_kdeapps_dep libkdepim) + $(add_kdeapps_dep messageviewer) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + dev-libs/libxslt +" +RDEPEND="${DEPEND} + !<kde-apps/kdepim-15.12.2:5 +" + +if [[ ${KDE_BUILD_TYPE} = live ]] ; then + S="${WORKDIR}/${P}" +else + S="${WORKDIR}/${KMNAME}-${PV}" +fi + +src_prepare() { + kde5_src_prepare + + # necessary for 15.12 branch aka split-in-adv-of-upstream + sed -e '/^include.*kleopatra\/ConfigureChecks/ s/^/#DONT/' \ + -i CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DKDEPIM_BUILD_WITH_INSTALLED_LIB=TRUE + -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON + -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON + -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON + -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON + ) + + kde5_src_configure +} diff --git a/kde-apps/akonadiconsole/akonadiconsole-9999.ebuild b/kde-apps/akonadiconsole/akonadiconsole-9999.ebuild new file mode 100644 index 0000000..67cafbf --- /dev/null +++ b/kde-apps/akonadiconsole/akonadiconsole-9999.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +KDE_HANDBOOK="false" +KDE_PUNT_BOGUS_DEPS="true" +KMNAME="kdepim" +inherit kde5 + +DESCRIPTION="Akonadi developer console" +HOMEPAGE="https://www.kde.org/" +KEYWORDS="" + +IUSE="" + +DEPEND=" + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdbusaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kitemmodels) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kxmlgui) + $(add_kdeapps_dep akonadi) + $(add_kdeapps_dep akonadi-contact) + $(add_kdeapps_dep calendarsupport) + $(add_kdeapps_dep kcalcore) + $(add_kdeapps_dep kcontacts) + $(add_kdeapps_dep kmime) + $(add_kdeapps_dep kpimtextedit) + $(add_kdeapps_dep libkdepim) + $(add_kdeapps_dep messagelib) + $(add_qt_dep qtdbus) + $(add_qt_dep qtgui) + $(add_qt_dep qtwidgets) + dev-libs/libxslt +" +RDEPEND="${DEPEND} + !<kde-apps/kdepim-15.12.2:5 +" + +if [[ ${KDE_BUILD_TYPE} = live ]] ; then + S="${WORKDIR}/${P}" +else + S="${WORKDIR}/${KMNAME}-${PV}" +fi + +src_configure() { + local mycmakeargs=( + -DKDEPIM_BUILD_WITH_INSTALLED_LIB=TRUE + -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON + -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON + -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON + -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON + ) + + kde5_src_configure +}
