Gentoo Archives: gentoo-dev

From: mikepolniak <mikpolniak@××××××××.net>
To: gentoo-dev@g.o
Subject: Re: [gentoo-dev] where does world update find gnome dependencies with no gnome installed in my gentoo?
Date: Sat, 19 Jan 2002 11:38:20
Message-Id: 20020119123935.62f5bc5b.mikpolniak@adelphia.net
In Reply to: Re: [gentoo-dev] where does world update find gnome dependencies with no gnome installed in my gentoo? by Daniel Robbins
1 On 19 Jan 2002 08:44:36 -0700
2 Daniel Robbins <drobbins@g.o> wrote:
3
4 > On Fri, 2002-01-18 at 10:16, mikepolniak wrote:
5 > > With my USE=<no gnome> while building gentoo i do not have any gnome installed.
6 > > I also made sure to not emerge anything with gnome -dependencies.
7 > >
8 > > Today an emerge --pretend --world update now wants to add gnome-base/ORBit
9 > > and gnome-libs:
10 >
11 > [snip]
12 >
13 > > [ebuild U] x11-wm/fluxbox-0.1.6 to /
14 > > [ebuild N ] gnome-base/ORBit-0.5.12-r1 to / <----where does it find this
15 > > [ebuild N ] media-libs/audiofile-0.2.2 to /
16 > > [ebuild N ] media-sound/esound-0.2.23 to /
17 > > [ebuild N ] gnome-base/gnome-libs-1.4.1.2-r3 to / <----where does it find this
18 >
19 > I'm guessing that you *do* have a /var/db/pkg/gnome-base/gnome-libs*
20 > entry, possibly an old one. Look and see. You can also do a:
21 >
22 > cd /var/db/pkg
23 > grep -r gnome-base/gnome-libs *
24 >
25 > ...to see what packaage caused it to be installed.
26
27 Well grep -r gnome-base/gnome-libs * shows nothing in /var/db/pkg.
28
29 If i grep -r gnome/base * then xmms and xchat show:
30 RDEPEND:gnome? ( >=gnome-base/gnome-core-1.4.0.4-r1 )
31 ebuild: gnome? ( >=gnome-base/gnome-core-1.4.0.4-r1
32
33 but if gnome is not present in USE= ... then i assume gnome should
34 not be a dependency.
35
36 Which is the case if i emerge all the ebuilds in the list individually,
37 because then there are _no_ gnome dependencies.
38
39 However, when building gqview which has a dependency on gdk-pixbuf
40 i did remove a Depend >=gnome-base/gnome-libs-1.4.1.2-r1 from
41 the ebuild of gdk-pixbuf so that i could have gqview without gnome
42 (neither gqview or gdk-pixbuf needs gnome)
43
44 So then in my /var/db/pkg/media-libs/gdk-pixbuf i have:
45 DEPEND=">=x11-libs/gtk+-1.2.10-r4
46 >=gnome-base/gnome-libs-1.4.1.2-r1" <-----i removed this
47
48 And my /var/db/pkg/media-gfx/gqview has the unchanged
49 DEPEND="virtual/glibc
50 media-libs/libpng
51 >=media-libs/gdk-pixbuf-0.11.0-r1
52 >=x11-libs/gtk+-1.2.10-r4
53 nls? ( sys-devel/gettext )"
54
55 But again this means that a gnome depends is _not_ in my /var/db/pkg
56 although it is in my original /usr/portage/media-libs/gdk-pixbuf.
57
58 Could this be causing --world update to find a gnome depends?