Gentoo Archives: gentoo-dev

From: Ciaran McCreesh <ciaranm@g.o>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] Useless USE descriptions...
Date: Thu, 12 Feb 2004 19:52:02
Message-Id: 20040212195121.6a8d4131@snowdrop.home
In Reply to: Re: [gentoo-dev] Useless USE descriptions... by Stroller
1 On Thu, 12 Feb 2004 16:20:58 +0000 Stroller
2 <stroller@××××××××××××××××××.uk> wrote:
3 | the ebuild influences --configure options - my best guess is that the
4 | gvim configure itself detects which libraries are installed on the
5 | system & takes advantage of those it finds. In which case... did you
6 | unmerge gtk or remerge gtk2 before recompiling gvim..?
7
8 Read the eclass, it does no such thing.
9
10 elif [ ${PN} = gvim ]; then
11 myconf="${myconf} --with-vim-name=gvim --with-x"
12 if use gtk && use gtk2; then
13 myconf="${myconf} --enable-gui=gtk2 --enable-gtk2-check"
14 elif use gnome; then
15 myconf="${myconf} --enable-gui=gnome"
16 elif use gtk; then
17 myconf="${myconf} --enable-gui=gtk"
18 elif use motif; then
19 myconf="${myconf} --enable-gui=motif"
20 else
21 myconf="${myconf} --enable-gui=athena"
22 fi
23
24 --
25 Ciaran McCreesh
26 Mail: ciaranm at gentoo.org
27 Web: http://dev.gentoo.org/~ciaranm

Replies

Subject Author
Re: [gentoo-dev] Useless USE descriptions... Stroller <stroller@××××××××××××××××××.uk>