Gentoo Archives: gentoo-commits

From: Naohiro Aota <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libgxim/
Date: Thu, 04 Oct 2018 09:11:24
Message-Id: 1538644203.03a85ffcdd94ca337e2044564ef640037f225a2f.naota@gentoo
1 commit: 03a85ffcdd94ca337e2044564ef640037f225a2f
2 Author: Naohiro Aota <naota <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 4 09:06:38 2018 +0000
4 Commit: Naohiro Aota <naota <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 4 09:10:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03a85ffc
7
8 x11-libs/libgxim: add missing dependency
9
10 Add missing dependency: dev-util/glib-utils and x11-libs/libX11. Also,
11 replace ltprune with find.
12
13 Closes: https://bugs.gentoo.org/667470
14 Signed-off-by: Naohiro Aota <naota <AT> gentoo.org>
15 Package-Manager: Portage-2.3.50, Repoman-2.3.11
16
17 x11-libs/libgxim/libgxim-0.5.0.ebuild | 10 ++++++----
18 1 file changed, 6 insertions(+), 4 deletions(-)
19
20 diff --git a/x11-libs/libgxim/libgxim-0.5.0.ebuild b/x11-libs/libgxim/libgxim-0.5.0.ebuild
21 index 8d4bb4e5405..bc716195e9f 100644
22 --- a/x11-libs/libgxim/libgxim-0.5.0.ebuild
23 +++ b/x11-libs/libgxim/libgxim-0.5.0.ebuild
24 @@ -1,10 +1,10 @@
25 -# Copyright 1999-2017 Gentoo Foundation
26 +# Copyright 1999-2018 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 EAPI="6"
30 USE_RUBY="ruby21 ruby22 ruby23 ruby24"
31
32 -inherit autotools ltprune ruby-single
33 +inherit autotools ruby-single
34
35 DESCRIPTION="GObject-based XIM protocol library"
36 HOMEPAGE="https://tagoh.bitbucket.io/libgxim"
37 @@ -19,9 +19,11 @@ RDEPEND="dev-libs/dbus-glib
38 dev-libs/glib:2
39 sys-apps/dbus
40 virtual/libintl
41 - x11-libs/gtk+:2"
42 + x11-libs/gtk+:2
43 + x11-libs/libX11"
44 DEPEND="${RDEPEND}
45 ${RUBY_DEPS}
46 + dev-util/glib-utils
47 dev-util/intltool
48 sys-devel/autoconf-archive
49 sys-devel/gettext
50 @@ -57,5 +59,5 @@ src_configure() {
51
52 src_install() {
53 default
54 - prune_libtool_files
55 + find "${D}" -name '*.la' -delete || die
56 }