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 28CBA1384B4 for ; Mon, 4 Jan 2016 18:00:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0D9321C002; Mon, 4 Jan 2016 18:00:32 +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 9E65621C002 for ; Mon, 4 Jan 2016 18:00:32 +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 84E2534085B for ; Mon, 4 Jan 2016 18:00:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0B0CCFD for ; Mon, 4 Jan 2016 18:00:28 +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: <1451930419.86bf6b72c2f05ed6f78f1450f70c985a8cc31731.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/konsole/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/konsole/konsole-4.14.3-r2.ebuild X-VCS-Directories: kde-apps/konsole/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 86bf6b72c2f05ed6f78f1450f70c985a8cc31731 X-VCS-Branch: master Date: Mon, 4 Jan 2016 18:00:28 +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: 325e942a-172f-4586-a91f-3583ea8278ac X-Archives-Hash: 1dc5f46514187ba33d1b79ce82e27607 commit: 86bf6b72c2f05ed6f78f1450f70c985a8cc31731 Author: Andreas Sturmlechner gmail com> AuthorDate: Mon Jan 4 00:17:52 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon Jan 4 18:00:19 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86bf6b72 kde-apps/konsole: Drop USE=minimal, RDEPEND on konsolepart instead Make konsole install the binaries you'd expect from it again, even when plasma profile is selected. Dropping minimal flag, the existing blocker in konsole:5 continues to work. All conflicting files are now in konsole:4. Package-Manager: portage-2.2.26 kde-apps/konsole/konsole-4.14.3-r2.ebuild | 45 +++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/kde-apps/konsole/konsole-4.14.3-r2.ebuild b/kde-apps/konsole/konsole-4.14.3-r2.ebuild new file mode 100644 index 0000000..be55c4a --- /dev/null +++ b/kde-apps/konsole/konsole-4.14.3-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KDE_HANDBOOK="optional" +KDE_DOC_DIRS="doc/manual" +VIRTUALX_REQUIRED="test" +VIRTUALDBUS_TEST="true" +inherit kde4-base + +DESCRIPTION="X terminal for use with KDE" +HOMEPAGE="https://www.kde.org/applications/system/konsole https://konsole.kde.org" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug" + +DEPEND="" +RDEPEND="$(add_kdeapps_dep konsolepart)" + +# can't connect to a kded instance, fails to connect to dbus +RESTRICT="test" + +src_prepare() { + comment_add_subdirectory data + + kde4-base_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DWITH_LibKonq=OFF + ) + + kde4-base_src_configure +} + +src_install() { + kde4-base_src_install + + rm -r "${ED}"usr/$(get_libdir) || die + rm -r "${ED}"usr/share/apps || die + rm "${ED}"usr/share/kde4/services/konsolepart.desktop || die + rm -r "${ED}"usr/share/kde4/servicetypes || die +}