Gentoo Archives: gentoo-dev

From: Jon Nelson <jnelson@×××××××.net>
To: gentoo-dev@××××××××××.org
Subject: Re: [gentoo-dev] galeon-0.12.5-r1.ebuild
Date: Wed, 24 Oct 2001 12:59:51
Message-Id: 20011024140727.0b1cc43a.jnelson@jamponi.net
In Reply to: Re: [gentoo-dev] galeon-0.12.5-r1.ebuild by Martin Schlemmer
1 On Wed, 24 Oct 2001 20:24:38 +0200
2 Martin Schlemmer <azarah@g.o> wrote:
3
4 > On Wed, 2001-10-24 at 17:48, Grant Goodyear wrote:
5 > > Hmmm. And I'm still having my original problem, even though
6 > > emerge --debug net-www/galeon shows that --disable-applet is
7 > > being passed to configure.
8 > >
9 > > + ./configure --host=i686-pc-linux-gnu --prefix=/usr --sysconfdir=/etc
10 > --localstatedir=/var/lib --with-mozilla-libs=/usr/lib/mozilla
11 > --with-mozilla-includes=/usr/lib/mozilla/include --with-gnome
12 > --without-debug --disable-applet --enable-gnome-file-selector
13 > >
14 > > [stuff snipped]
15 > > checking for additional GNOME modules... gdk_pixbuf vfs libglade
16 > gnome gnomeui oaf xml glib gtk*** bonobox library is not installed
17 > > configure: error:
18 > > *** GNOME 1.2.8 or better is required.
19 > > *** gdk-pixbuf 0.10.1 or better is required.
20 > > *** gnome-vfs 1.0.1 or better is required.
21 > > *** libglade 0.13 or better is required.
22 > > *** libxml 1.8.14 or better is required.
23 > > *** oaf 0.6.5 or better is required.
24 > > *** libpanel-applet is required (unless --disable-applet is used)
25 > > + diefunc src_compile 18 1
26 > >
27 >
28 > Hi
29 >
30 > Like I stated in a earlier post, it is not the 'applet switch' that
31 > causes the problem, but rather a problem in the DEPEND's
32 >
33 > > checking for additional GNOME modules... gdk_pixbuf vfs libglade
34 > gnome gnomeui oaf xml glib gtk*** bonobox library is not installed
35 >
36 > Looking at above line, you can see that gdk_pixbuf, vfs, libglade, etc
37 > is _NOT_ installed.
38
39 Actually, that is not true, either.
40 The error message it prints should be interpreted as "one of the following
41 is not installed", rather than, "all of the following are not installed".
42
43 For example: here is a snippet of a successful ./configure run on
44 a RedHat 7.0 box:
45
46 checking for ANSI C header files... yes
47 checking for orbit-config... /usr/bin/orbit-config
48 checking for ORBit - version >= 0.5.1... yes
49 checking for orbit-idl... /usr/bin/orbit-idl
50 checking for glib-config... /usr/bin/glib-config
51 checking for GLIB - version >= 1.2.9... yes
52 checking for gtk-config... /usr/bin/gtk-config
53 checking for GTK - version >= 1.2.9... yes
54 checking if GNOME_FileSelector component is wanted...
55 checking if we want the filtering system...
56 checking for gnome-config... /usr/bin/gnome-config
57 checking for GNOME - version >= 1.2.8... yes
58 checking for additional GNOME modules... gdk_pixbuf vfs libglade gnome
59 gnomeui oaf xml glib gtk
60 checking for gconf-config... /usr/bin/gconf-config
61 checking for GCONF - version >= 1.0.4... yes
62 checking for oaf-config... /usr/bin/oaf-config
63 checking for OAF - version >= 0.6.5... yes
64 checking for xml-config... /usr/bin/xml-config
65 checking for gdk-pixbuf-config... /usr/bin/gdk-pixbuf-config
66 checking for GDK_PIXBUF - version >= 0.10.1... yes
67 checking for scrollkeeper-config... /usr/bin/scrollkeeper-config
68 checking for X11/extensions/Xinerama.h... yes
69
70 Using config source xml::/etc/gconf/gconf.xml.defaults for schema
71 installation
72 checking for gcc version... 2.96.0
73 checking for PR_Init in -lnspr4... yes
74
75 ..........
76
77
78 Now, the unsuccessful line:
79 checking for additional GNOME modules... gdk_pixbuf vfs libglade
80 gnome gnomeui oaf xml glib gtk*** bonobox library is not installed
81
82 and the successful line:
83
84 checking for additional GNOME modules... gdk_pixbuf vfs libglade
85 gnome gnomeui oaf xml glib gtk
86
87 Show only one difference: "*** bonobox library is not installed"
88 What does that mean? Damned if I know. Probably that the bonobox
89 library hasn't been installed. ;-)
90
91 Anyway, I interpret the messages coming out of configure (and
92 after reading configure.in and friends this helps), as
93 "one of the following is not installed or could not be detected".
94
95 Which one? Not sure. I am sure I have *most* of those installed,
96 but again, cannot at this time identify which of them. I may, in
97 fact, have them *all* installed. Who knows?
98
99 --
100 Jon Nelson
101 jnelson@×××××××.net
102 C and Python Programmer
103 Motorcycle Enthusiast

Replies

Subject Author
Re: [gentoo-dev] galeon-0.12.5-r1.ebuild Martin Schlemmer <azarah@g.o>