Gentoo Archives: gentoo-user

From: Johannes Kimmel <johannes.kimmel@×××.de>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] where can I find USE flags description?
Date: Fri, 20 Nov 2009 22:03:52
Message-Id: 4B071201.2020505@gmx.de
In Reply to: Re: [gentoo-user] where can I find USE flags description? by Stroller
1 Stroller wrote:
2 >
3 > On 20 Nov 2009, at 10:05, Johannes Kimmel wrote:
4 >
5 >> Jarry wrote:
6 >>> Hi,
7 >>>
8 >>> I want to emerge a certain package, let's say x11-base/xorg-drivers,
9 >>> so I try first "emerge --pretend xorg-drivers" and find it has ~50
10 >>> various use-flags (some set, some unset). Where can I find their
11 >>> description? For example "vmmouse", what is this USE flag good for?
12 >>> Is it something for vmware?
13 >>>
14 >>> I checked /etc/portage/profiles/use.desc and use.local.desc but
15 >>> there are not all of them...
16 >>>
17 >>> Jarry
18 >>>
19 >> Maybe you want to try this little peace of code:
20 >>
21 >> alias findflag="flagedit --desc --list | grep -i"
22 >>
23 >> Works really great. If you search for a pattern, just "findflag foo".
24 >> If you search for a specific use-flag you just add ":" at the end,
25 >> like "findflag bar:"
26 >> Don't forget to install flagedit first, if you haven't already.
27 >
28 > Surely this is just a re-implementation of the existing app-portage/euses?
29 >
30 > $ euses foo
31 > foomaticdb - Adds support for the foomatic printing driver database
32 > $
33 >
34 > Stroller.
35 >
36 >
37
38 seems so. but since I use flagedit anyway, I don't need another
39 programm. Output is nearly the same.