Gentoo Archives: gentoo-commits

From: Naohiro Aota <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/imsettings/
Date: Tue, 16 Oct 2018 06:40:26
Message-Id: 1539671989.66bffa8b3db45b3430f9de7243f4aa3894094318.naota@gentoo
1 commit: 66bffa8b3db45b3430f9de7243f4aa3894094318
2 Author: Naohiro Aota <naota <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 16 06:39:15 2018 +0000
4 Commit: Naohiro Aota <naota <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 16 06:39:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66bffa8b
7
8 app-i18n/imsettings: add missing dependency
9
10 add missing dependency: dev-util/glib-utils. Also, use find instead of
11 ltrpune.
12
13 Closes: https://bugs.gentoo.org/668378
14 Signed-off-by: Naohiro Aota <naota <AT> gentoo.org>
15 Package-Manager: Portage-2.3.51, Repoman-2.3.11
16
17 app-i18n/imsettings/imsettings-1.7.2.ebuild | 7 ++++---
18 1 file changed, 4 insertions(+), 3 deletions(-)
19
20 diff --git a/app-i18n/imsettings/imsettings-1.7.2.ebuild b/app-i18n/imsettings/imsettings-1.7.2.ebuild
21 index bc89ae3d089..5fce6e8f9e6 100644
22 --- a/app-i18n/imsettings/imsettings-1.7.2.ebuild
23 +++ b/app-i18n/imsettings/imsettings-1.7.2.ebuild
24 @@ -1,9 +1,9 @@
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
31 -inherit autotools ltprune xdg-utils
32 +inherit autotools xdg-utils
33
34 DESCRIPTION="Delivery framework for general Input Method configuration"
35 HOMEPAGE="https://tagoh.bitbucket.io/imsettings"
36 @@ -27,6 +27,7 @@ RDEPEND="dev-libs/glib:2
37 introspection? ( dev-libs/gobject-introspection )
38 xfconf? ( xfce-base/xfconf )"
39 DEPEND="${RDEPEND}
40 + dev-util/glib-utils
41 dev-util/intltool
42 sys-devel/autoconf-archive
43 sys-devel/gettext
44 @@ -59,7 +60,7 @@ src_configure() {
45
46 src_install() {
47 default
48 - prune_libtool_files --modules
49 + find "${D}" -name '*.la' -delete || die
50
51 fperms 0755 /etc/X11/xinit/xinitrc.d/${MY_XINPUTSH}
52 }