diff options
author | Andreas Sturmlechner <andreas.sturmlechner@gmail.com> | 2016-01-04 01:17:52 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2016-01-05 05:00:19 +1100 |
commit | 86bf6b72c2f05ed6f78f1450f70c985a8cc31731 (patch) | |
tree | 6be470c500f4f4a77935bd0f98b5f2f2c15efa7e | |
parent | kde-apps/konsolepart: New package, split from konsole (diff) | |
download | gentoo-86bf6b72c2f05ed6f78f1450f70c985a8cc31731.tar.gz gentoo-86bf6b72c2f05ed6f78f1450f70c985a8cc31731.tar.bz2 gentoo-86bf6b72c2f05ed6f78f1450f70c985a8cc31731.zip |
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
-rw-r--r-- | kde-apps/konsole/konsole-4.14.3-r2.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
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 000000000000..be55c4a353ca --- /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 +} |