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 3FA67138CEB for ; Wed, 17 Jun 2015 19:28:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 587F114033; Wed, 17 Jun 2015 19:28:21 +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 0934914033 for ; Wed, 17 Jun 2015 19:28:20 +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 1495A34085B for ; Wed, 17 Jun 2015 19:28:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D36A4A26 for ; Wed, 17 Jun 2015 19:28:17 +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: <1434569285.3a2f5e12a87b49f90c9ce7e3897dee430fe5f124.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-misc/krusader/ X-VCS-Repository: proj/kde X-VCS-Files: kde-misc/krusader/krusader-5.9999.ebuild X-VCS-Directories: kde-misc/krusader/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 3a2f5e12a87b49f90c9ce7e3897dee430fe5f124 X-VCS-Branch: master Date: Wed, 17 Jun 2015 19:28:17 +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: 5eb9d7bb-87a1-439c-aa37-f6405fbbb9cc X-Archives-Hash: 2226d298f847838436d0654f33c3a0b2 commit: 3a2f5e12a87b49f90c9ce7e3897dee430fe5f124 Author: Andreas Sturmlechner gmail com> AuthorDate: Sun May 24 08:45:24 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Jun 17 19:28:05 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=3a2f5e12 [kde-misc/krusader] Add kf5 version Package-Manager: portage-2.2.20 kde-misc/krusader/krusader-5.9999.ebuild | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/kde-misc/krusader/krusader-5.9999.ebuild b/kde-misc/krusader/krusader-5.9999.ebuild new file mode 100644 index 0000000..a212bb6 --- /dev/null +++ b/kde-misc/krusader/krusader-5.9999.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +EGIT_BRANCH="plasma" +KDE_HANDBOOK="true" +inherit kde5 + +DESCRIPTION="An advanced twin-panel (commander-style) file-manager with many extras" +HOMEPAGE="http://www.krusader.org/" + +LICENSE="GPL-2" +KEYWORDS="" +IUSE="xattr" + +CDEPEND=" + $(add_frameworks_dep karchive) + $(add_frameworks_dep kbookmarks) + $(add_frameworks_dep kcodecs) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep khtml) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep kitemviews) + $(add_frameworks_dep kjobwidgets) + $(add_frameworks_dep knotifications) + $(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 solid) + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtprintsupport:5 + dev-qt/qtscript:5 + dev-qt/qtsql:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + sys-libs/zlib + xattr? ( sys-apps/attr ) +" +DEPEND="${CDEPEND} + sys-devel/gettext +" +RDEPEND="${CDEPEND} + !kde-misc/krusader:4 +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package xattr ACL) + ) + + kde5_src_configure +}