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 54163138A1A for ; Sat, 21 Feb 2015 00:00:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0948AE082B; Sat, 21 Feb 2015 00:00:15 +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 1FA8DE0825 for ; Sat, 21 Feb 2015 00:00:14 +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 7B4D0340D0A for ; Fri, 20 Feb 2015 18:51:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DEC4122F2 for ; Fri, 20 Feb 2015 18:51:15 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1424458128.86a912fd8b6e3a5000b1d456252079796404df1d.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/kcron/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/kcron/kcron-9999.ebuild X-VCS-Directories: kde-apps/kcron/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 86a912fd8b6e3a5000b1d456252079796404df1d X-VCS-Branch: master Date: Fri, 20 Feb 2015 18:51:15 +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: 623aee7c-2cef-4ef1-bd9e-56ecd274747d X-Archives-Hash: c05cfaf356224e9f6e3c6cc3f34050cd commit: 86a912fd8b6e3a5000b1d456252079796404df1d Author: Johannes Huber gentoo org> AuthorDate: Fri Feb 20 18:48:48 2015 +0000 Commit: Johannes Huber gentoo org> CommitDate: Fri Feb 20 18:48:48 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=86a912fd [kde-apps/kcron] Ported to KF5 Package-Manager: portage-2.2.17 --- kde-apps/kcron/kcron-9999.ebuild | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/kde-apps/kcron/kcron-9999.ebuild b/kde-apps/kcron/kcron-9999.ebuild index fe6f861..e9e0d14 100644 --- a/kde-apps/kcron/kcron-9999.ebuild +++ b/kde-apps/kcron/kcron-9999.ebuild @@ -4,11 +4,24 @@ EAPI=5 -KDE_HANDBOOK="optional" -inherit kde4-base +KDE_HANDBOOK=true +inherit kde5 DESCRIPTION="KDE Task Scheduler" KEYWORDS="" -IUSE="debug" +IUSE="" -RDEPEND="!prefix? ( virtual/cron )" +DEPEND=" + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep kwidgetsaddons) + dev-qt/qtgui:5 + dev-qt/qtprintsupport:5 + dev-qt/qtwidgets:5 +" +RDEPEND="${DEPEND} + !prefix? ( virtual/cron ) +"