From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 88B251381FA for ; Sun, 1 Jun 2014 19:31:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AC0DE0A01; Sun, 1 Jun 2014 19:31:04 +0000 (UTC) Received: from mail-wg0-f50.google.com (mail-wg0-f50.google.com [74.125.82.50]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15442E09FB for ; Sun, 1 Jun 2014 19:31:02 +0000 (UTC) Received: by mail-wg0-f50.google.com with SMTP id x12so4140609wgg.21 for ; Sun, 01 Jun 2014 12:31:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=i56hjSYTJJjQdVJJfg4Za0ic/rif7y7GX4pt2ETcTNA=; b=jReTfrHQ3P62kBQYKdMhFHDqylWUHbh2YXJgf0oHngaQDRjnHpHu+UfKBlXuB9M1T1 U0OjDDEopjFKI4m79hXt9my5Z9UdNS44lTJ9mxLJMONgaaTTwYSRfRKrBMdasdp50jsO JmNq3waGOYVok7C4M6CbsZ4dnRXTUkqzehQA3z30dmwhaKh4ergAUCuys7fTh+Q8yvih 90cE40U3NFIkrDThVmrcXeDSvZBMrIaWqnMnGaDJT55JflBiS9MzpFJiVn+NOAY6gVpM m8hr5bbCA8BDNSF+7QYE169VVaz0udCX6LbUKQaeh/DUjajJn8y50f93JdkkbcVwqCKj sppg== X-Received: by 10.180.11.9 with SMTP id m9mr16238809wib.51.1401651061852; Sun, 01 Jun 2014 12:31:01 -0700 (PDT) Received: from [192.168.178.21] (pD952C3BF.dip0.t-ipconnect.de. [217.82.195.191]) by mx.google.com with ESMTPSA id z14sm25991014wiu.6.2014.06.01.12.31.01 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sun, 01 Jun 2014 12:31:01 -0700 (PDT) Message-ID: <538B7F74.5050906@googlemail.com> Date: Sun, 01 Jun 2014 21:31:00 +0200 From: Volker Armin Hemmann User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] dependency problem - how to decipher this one References: <1400088551.15558.0@numa-i> <20140514223958.GA11182@waltdnes.org> In-Reply-To: <20140514223958.GA11182@waltdnes.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Archives-Salt: e0a08225-7aac-49c6-a3e4-00d041ea56e8 X-Archives-Hash: b5fb01ccb51851c4ef80c5bbe1a41bc6 Am 15.05.2014 00:39, schrieb Walter Dnes: > On Wed, May 14, 2014 at 07:29:11PM +0200, Helmut Jarausch wrote >> Hi, >> >> trying to emerge x11-libs/gtk+:2 (2.24.23-r1) together with >> dev-libs/atk (2.12.0-r1) I get the following messages >> >> emerge: there are no ebuilds to satisfy >> ">=dev-libs/atk-1.29.2[introspection?,abi_x86_32(-)?,abi_x86_64(-)?, >> abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?]". >> (dependency required by "x11-libs/gtk+-2.24.23-r1" [ebuild]) >> (dependency required by "x11-libs/gtk+:2" [argument]) >> >> How can this be deciphered? How can I trace / debug the problem. > Plan A) try adding the line... > > dev-libs/atk -introspection > > ...to /etc/portage/package.use > > Plan B) if some other package requires atk built with introspection, > then make sure that atk is not built with any of abi_x86_32, or > abi_x86_64, abi_x86_x32, or abi_mips_n32, or abi_mips_n64, or > abi_mips_o32. I.e. if you're running on AMD or Intel, add the line... > > dev-libs/atk -abi_x86_32 -abi_x86_64 -abi_x86_x32 > > ...to /etc/portage/package.use so basically building nothing? Doesn't sound right.