From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 73C28138334 for ; Thu, 4 Oct 2018 09:11:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7D02EE0948; Thu, 4 Oct 2018 09:11:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5591AE0948 for ; Thu, 4 Oct 2018 09:11:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 79096335C47 for ; Thu, 4 Oct 2018 09:11:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8EF092C6 for ; Thu, 4 Oct 2018 09:11:19 +0000 (UTC) From: "Naohiro Aota" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Naohiro Aota" Message-ID: <1538644203.03a85ffcdd94ca337e2044564ef640037f225a2f.naota@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/libgxim/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/libgxim/libgxim-0.5.0.ebuild X-VCS-Directories: x11-libs/libgxim/ X-VCS-Committer: naota X-VCS-Committer-Name: Naohiro Aota X-VCS-Revision: 03a85ffcdd94ca337e2044564ef640037f225a2f X-VCS-Branch: master Date: Thu, 4 Oct 2018 09:11:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fa65c94a-2780-47b9-9ec3-8baf60e74e3b X-Archives-Hash: d67216cbf6680629f600eae05c4aed62 commit: 03a85ffcdd94ca337e2044564ef640037f225a2f Author: Naohiro Aota gentoo org> AuthorDate: Thu Oct 4 09:06:38 2018 +0000 Commit: Naohiro Aota gentoo org> CommitDate: Thu Oct 4 09:10:03 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03a85ffc x11-libs/libgxim: add missing dependency Add missing dependency: dev-util/glib-utils and x11-libs/libX11. Also, replace ltprune with find. Closes: https://bugs.gentoo.org/667470 Signed-off-by: Naohiro Aota gentoo.org> Package-Manager: Portage-2.3.50, Repoman-2.3.11 x11-libs/libgxim/libgxim-0.5.0.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/x11-libs/libgxim/libgxim-0.5.0.ebuild b/x11-libs/libgxim/libgxim-0.5.0.ebuild index 8d4bb4e5405..bc716195e9f 100644 --- a/x11-libs/libgxim/libgxim-0.5.0.ebuild +++ b/x11-libs/libgxim/libgxim-0.5.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" USE_RUBY="ruby21 ruby22 ruby23 ruby24" -inherit autotools ltprune ruby-single +inherit autotools ruby-single DESCRIPTION="GObject-based XIM protocol library" HOMEPAGE="https://tagoh.bitbucket.io/libgxim" @@ -19,9 +19,11 @@ RDEPEND="dev-libs/dbus-glib dev-libs/glib:2 sys-apps/dbus virtual/libintl - x11-libs/gtk+:2" + x11-libs/gtk+:2 + x11-libs/libX11" DEPEND="${RDEPEND} ${RUBY_DEPS} + dev-util/glib-utils dev-util/intltool sys-devel/autoconf-archive sys-devel/gettext @@ -57,5 +59,5 @@ src_configure() { src_install() { default - prune_libtool_files + find "${D}" -name '*.la' -delete || die }