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 5E4B5138C9D for ; Tue, 28 Apr 2015 14:07:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A40ACE0920; Tue, 28 Apr 2015 14:07:45 +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 E52B9E0920 for ; Tue, 28 Apr 2015 14:07:39 +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 141AE340F5C for ; Tue, 28 Apr 2015 14:07:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDB15999 for ; Tue, 28 Apr 2015 14:07:35 +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: <1430230008.04bc96eadb8b2a0e53fb38be507c29eb22848216.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-apps/konsole/ X-VCS-Repository: proj/kde X-VCS-Files: kde-apps/konsole/konsole-15.04.0.ebuild X-VCS-Directories: kde-apps/konsole/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 04bc96eadb8b2a0e53fb38be507c29eb22848216 X-VCS-Branch: master Date: Tue, 28 Apr 2015 14:07:35 +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: 32641609-3272-46d6-aa47-acc1ae055e3e X-Archives-Hash: 09e4b426274974a258a74449d1767985 commit: 04bc96eadb8b2a0e53fb38be507c29eb22848216 Author: Michael Palimaka gentoo org> AuthorDate: Tue Apr 28 14:06:48 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Tue Apr 28 14:06:48 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=04bc96ea [kde-apps/konsole] Version bump. Package-Manager: portage-2.2.18 kde-apps/konsole/konsole-15.04.0.ebuild | 60 +++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/kde-apps/konsole/konsole-15.04.0.ebuild b/kde-apps/konsole/konsole-15.04.0.ebuild new file mode 100644 index 0000000..24cc1bb --- /dev/null +++ b/kde-apps/konsole/konsole-15.04.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +KDE_HANDBOOK="true" +KDE_TEST="true" +VIRTUALX_REQUIRED="test" +inherit kde5 + +DESCRIPTION="KDE's terminal emulator" +HOMEPAGE="http://www.kde.org/applications/system/konsole http://konsole.kde.org" + +KEYWORDS=" ~amd64" +IUSE="X" + +DEPEND=" + $(add_frameworks_dep kbookmarks) + $(add_frameworks_dep kcompletion) + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kconfigwidgets) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep kdelibs4support) + $(add_frameworks_dep kguiaddons) + $(add_frameworks_dep kjobwidgets) + $(add_frameworks_dep ki18n) + $(add_frameworks_dep kinit) + $(add_frameworks_dep kiconthemes) + $(add_frameworks_dep kio) + $(add_frameworks_dep knotifications) + $(add_frameworks_dep knotifyconfig) + $(add_frameworks_dep kparts) + $(add_frameworks_dep kpty) + $(add_frameworks_dep kservice) + $(add_frameworks_dep ktextwidgets) + $(add_frameworks_dep kwidgetsaddons) + $(add_frameworks_dep kwindowsystem) + $(add_frameworks_dep kxmlgui) + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtprintsupport:5 + dev-qt/qtscript:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + X? ( x11-libs/libX11 ) +" +RDEPEND="${DEPEND} + !kde-apps/konsole:4 + !kde-base/konsole +" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_find_package X X11) + ) + + kde5_src_configure +}