commit: 1f71ed1865b1c512a81a013984674a7e762782e5 Author: Andreas Sturmlechner <andreas.sturmlechner <AT> gmail <DOT> com> AuthorDate: Mon Jan 4 00:17:52 2016 +0000 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org> CommitDate: Mon Jan 4 16:30:04 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=1f71ed18
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..f846dd7 --- /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="" +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 +}
