From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9A0151389E2 for ; Mon, 1 Dec 2014 12:38:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89D3DE093E; Mon, 1 Dec 2014 12:38:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DCED8E092F for ; Mon, 1 Dec 2014 12:38:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 10BB0340504 for ; Mon, 1 Dec 2014 12:38:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2893BB499 for ; Mon, 1 Dec 2014 12:38:31 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1417437509.9a0c30b26f029d97f3f14d9bcd69a145ecc7654a.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-base/kdepimlibs/ X-VCS-Repository: proj/kde X-VCS-Files: kde-base/kdepimlibs/kdepimlibs-9999.ebuild X-VCS-Directories: kde-base/kdepimlibs/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 9a0c30b26f029d97f3f14d9bcd69a145ecc7654a X-VCS-Branch: master Date: Mon, 1 Dec 2014 12:38:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: ce381930-2666-47d3-8615-1035e8de492c X-Archives-Hash: e100861cce5d2f545216ec935e97e707 commit: 9a0c30b26f029d97f3f14d9bcd69a145ecc7654a Author: Karol Herbst karolherbst de> AuthorDate: Sat Nov 22 10:08:34 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Dec 1 12:38:29 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=9a0c30b2 [kde-base/kdepimlibs] added KF5 based version --- kde-base/kdepimlibs/kdepimlibs-9999.ebuild | 64 ++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/kde-base/kdepimlibs/kdepimlibs-9999.ebuild b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild new file mode 100644 index 0000000..4da6496 --- /dev/null +++ b/kde-base/kdepimlibs/kdepimlibs-9999.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit kde5 + +DESCRIPTION="Common library for KDE PIM apps" +KEYWORDS="" +LICENSE="LGPL-2.1" +IUSE="" + +# some akonadi tests timeout, that probaly needs more work as its ~700 tests +RESTRICT="test" + +DEPEND=" + $(add_frameworks_dep kcodecs) + $(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 kemoticons) + $(add_frameworks_dep kguiaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep kitemmodels) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep kjobwidgets) + $(add_frameworks_dep kparts) + $(add_frameworks_dep kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwallet) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep kxmlgui) + $(add_frameworks_dep sonnet) + app-crypt/gpgme + >=app-office/akonadi-server-5 + dev-libs/cyrus-sasl + dev-libs/libical + dev-libs/libxml2 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsql:5 + dev-qt/qttest:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + media-libs/phonon[qt5] + net-nds/openldap + sys-apps/util-linux +" + +RDEPEND="${DEPEND}" + +src_configure() { + local mycmakeargs=( -DBUILD_TESTING=ON ) + cmake-utils_src_configure +}