Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/scim-bridge/
Date: Sun, 26 Aug 2018 08:25:25
Message-Id: 1535271908.f50470143a7c0e4dac8b27e1c3ad43418e2cb7c7.mgorny@gentoo
1 commit: f50470143a7c0e4dac8b27e1c3ad43418e2cb7c7
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 26 07:58:51 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 26 08:25:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5047014
7
8 app-i18n/scim-bridge: Remove support for non-existent deps
9
10 app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild | 16 +++-------------
11 1 file changed, 3 insertions(+), 13 deletions(-)
12
13 diff --git a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild b/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
14 index 2f7cc8cc786..cb61c2bfa50 100644
15 --- a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
16 +++ b/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
17 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
18 LICENSE="GPL-2 LGPL-2.1"
19 SLOT="0"
20 KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
21 -IUSE="doc gtk qt4"
22 +IUSE="doc gtk"
23
24 RESTRICT="test"
25
26 @@ -22,11 +22,6 @@ RDEPEND="
27 >=x11-libs/gtk+-2.2:2
28 >=x11-libs/pango-1.1
29 )
30 - qt4? (
31 - dev-qt/qtgui:4
32 - dev-qt/qtcore:4
33 - >=x11-libs/pango-1.1
34 - )
35 "
36 DEPEND="${RDEPEND}
37 virtual/pkgconfig
38 @@ -66,13 +61,8 @@ src_configure() {
39
40 # Qt3 is no longer supported, bug 283429
41 myconf="${myconf} --enable-qt3-immodule=no"
42 -
43 - if use qt4 ; then
44 - myconf="${myconf} --enable-qt4-immodule=yes"
45 - export QT_SELECT="4"
46 - else
47 - myconf="${myconf} --enable-qt4-immodule=no"
48 - fi
49 + # Qt4 neither
50 + myconf="${myconf} --enable-qt4-immodule=no"
51
52 econf \
53 --disable-static \