Gentoo Archives: gentoo-user

From: Volker Armin Hemmann <volkerarmin@××××××××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] dependency problem - how to decipher this one
Date: Sun, 01 Jun 2014 19:31:09
Message-Id: 538B7F74.5050906@googlemail.com
In Reply to: Re: [gentoo-user] dependency problem - how to decipher this one by Walter Dnes
1 Am 15.05.2014 00:39, schrieb Walter Dnes:
2 > On Wed, May 14, 2014 at 07:29:11PM +0200, Helmut Jarausch wrote
3 >> Hi,
4 >>
5 >> trying to emerge x11-libs/gtk+:2 (2.24.23-r1) together with
6 >> dev-libs/atk (2.12.0-r1) I get the following messages
7 >>
8 >> emerge: there are no ebuilds to satisfy
9 >> ">=dev-libs/atk-1.29.2[introspection?,abi_x86_32(-)?,abi_x86_64(-)?,
10 >> abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?]".
11 >> (dependency required by "x11-libs/gtk+-2.24.23-r1" [ebuild])
12 >> (dependency required by "x11-libs/gtk+:2" [argument])
13 >>
14 >> How can this be deciphered? How can I trace / debug the problem.
15 > Plan A) try adding the line...
16 >
17 > dev-libs/atk -introspection
18 >
19 > ...to /etc/portage/package.use
20 >
21 > Plan B) if some other package requires atk built with introspection,
22 > then make sure that atk is not built with any of abi_x86_32, or
23 > abi_x86_64, abi_x86_x32, or abi_mips_n32, or abi_mips_n64, or
24 > abi_mips_o32. I.e. if you're running on AMD or Intel, add the line...
25 >
26 > dev-libs/atk -abi_x86_32 -abi_x86_64 -abi_x86_x32
27 >
28 > ...to /etc/portage/package.use
29
30 so basically building nothing? Doesn't sound right.