diff options
author | Michael Palimaka <kensington@gentoo.org> | 2014-10-31 16:04:42 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2014-10-31 16:04:42 +0000 |
commit | e342ecff7fd3f102d2e0621b899b185d15454c3b (patch) | |
tree | 2226645ddefd08f69e6cb0d443c81deed21566ee /kde-misc/kimtoy | |
parent | Stable for ppc64, wrt bug #524542 (diff) | |
download | gentoo-2-e342ecff7fd3f102d2e0621b899b185d15454c3b.tar.gz gentoo-2-e342ecff7fd3f102d2e0621b899b185d15454c3b.tar.bz2 gentoo-2-e342ecff7fd3f102d2e0621b899b185d15454c3b.zip |
Disable broken IBus support wrt bug #514820.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'kde-misc/kimtoy')
-rw-r--r-- | kde-misc/kimtoy/ChangeLog | 7 | ||||
-rw-r--r-- | kde-misc/kimtoy/kimtoy-1.8.ebuild | 13 |
2 files changed, 15 insertions, 5 deletions
diff --git a/kde-misc/kimtoy/ChangeLog b/kde-misc/kimtoy/ChangeLog index eb75900af3fb..23e868bfc0c3 100644 --- a/kde-misc/kimtoy/ChangeLog +++ b/kde-misc/kimtoy/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for kde-misc/kimtoy -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kimtoy/ChangeLog,v 1.1 2013/06/19 01:12:14 creffett Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kimtoy/ChangeLog,v 1.2 2014/10/31 16:04:42 kensington Exp $ + + 31 Oct 2014; Michael Palimaka <kensington@gentoo.org> kimtoy-1.8.ebuild: + Disable broken IBus support wrt bug #514820. *kimtoy-1.8 (19 Jun 2013) diff --git a/kde-misc/kimtoy/kimtoy-1.8.ebuild b/kde-misc/kimtoy/kimtoy-1.8.ebuild index c436d557edb4..6176c32e7239 100644 --- a/kde-misc/kimtoy/kimtoy-1.8.ebuild +++ b/kde-misc/kimtoy/kimtoy-1.8.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/kimtoy/kimtoy-1.8.ebuild,v 1.1 2013/06/19 01:12:14 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kimtoy/kimtoy-1.8.ebuild,v 1.2 2014/10/31 16:04:42 kensington Exp $ EAPI=5 @@ -18,10 +18,17 @@ IUSE="" DEPEND=" >=app-i18n/fcitx-4.0 - >=app-i18n/ibus-1.3.0 >=app-i18n/scim-1.4.9 dev-libs/dbus-c++ " RDEPEND="${DEPEND} $(add_kdebase_dep plasma-workspace) " + +src_configure() { + local mycmakeargs=( + -DWITH_IBus=OFF + ) + + kde4-base_src_configure +} |