public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] How to check what cause a use flag
@ 2012-04-29 16:19 AleiPhoenix (A.K.A Areverie)
  2012-04-29 16:47 ` Mark Knecht
  2012-04-29 16:58 ` Alex Schuster
  0 siblings, 2 replies; 5+ messages in thread
From: AleiPhoenix (A.K.A Areverie) @ 2012-04-29 16:19 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 519 bytes --]

Hi, all
Recently when I'm trying sync and upgrade the whole system with

emerge -DNnav --with-bdeps=y @system @world

I've got erlang with wxwidgets use flag. On my another gentoo box, uprading
erlang didn't build with this flag.

emerge --info shows my final use flag DOES have wxwidgets (while another
box doesn't have). So how can I find out what cause this?

Or should I provide more info ?
Thanks.


-- 
Silence is gold.

twitter: @areverie
wikipedia: AleiPhoenix
blog: weblog.areverie.org
wiki: wiki.areverie.org

[-- Attachment #2: Type: text/html, Size: 800 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] How to check what cause a use flag
  2012-04-29 16:19 [gentoo-user] How to check what cause a use flag AleiPhoenix (A.K.A Areverie)
@ 2012-04-29 16:47 ` Mark Knecht
  2012-04-29 16:58 ` Alex Schuster
  1 sibling, 0 replies; 5+ messages in thread
From: Mark Knecht @ 2012-04-29 16:47 UTC (permalink / raw
  To: gentoo-user

On Sun, Apr 29, 2012 at 9:19 AM, AleiPhoenix (A.K.A Areverie)
<aleiphoenix@gmail.com> wrote:
> Hi, all
> Recently when I'm trying sync and upgrade the whole system with
>
> emerge -DNnav --with-bdeps=y @system @world
>
> I've got erlang with wxwidgets use flag. On my another gentoo box, uprading
> erlang didn't build with this flag.
>
> emerge --info shows my final use flag DOES have wxwidgets (while another box
> doesn't have). So how can I find out what cause this?
>
> Or should I provide more info ?
> Thanks.
>

Generally speaking, for flags look in

/etc/make.conf
/etc/portage/package.use

To look at what packages have a certain flag give equery a try:

equery hasuse wxwidgets

and then

eix package

to loo at the use flag settings

HTH,
Mark



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] How to check what cause a use flag
  2012-04-29 16:19 [gentoo-user] How to check what cause a use flag AleiPhoenix (A.K.A Areverie)
  2012-04-29 16:47 ` Mark Knecht
@ 2012-04-29 16:58 ` Alex Schuster
  2012-04-29 23:18   ` Mark Knecht
  1 sibling, 1 reply; 5+ messages in thread
From: Alex Schuster @ 2012-04-29 16:58 UTC (permalink / raw
  To: gentoo-user

AleiPhoenix (A.K.A Areverie) writes:

> Hi, all
> Recently when I'm trying sync and upgrade the whole system with
> 
> emerge -DNnav --with-bdeps=y @system @world
> 
> I've got erlang with wxwidgets use flag. On my another gentoo box,
> uprading erlang didn't build with this flag.
> 
> emerge --info shows my final use flag DOES have wxwidgets (while another
> box doesn't have). So how can I find out what cause this?

I assume grep wxwidgets /etc/make.conf does not give anything on both
machines. But does eselect profile list show different profiles?

/usr/portage/profiles/ChangeLog has this entry:

16 Apr 2012; Pacho Ramos <pacho@gentoo.org>
targets/desktop/make.defaults: Enable wxwidgets by default as discussed in
http://archives.gentoo.org/gentoo-dev/msg_fdc392cc98c7eea216175521d87b9955.xml

	Wonko



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] How to check what cause a use flag
  2012-04-29 16:58 ` Alex Schuster
@ 2012-04-29 23:18   ` Mark Knecht
  2012-04-30  8:16     ` AleiPhoenix (A.K.A Areverie)
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Knecht @ 2012-04-29 23:18 UTC (permalink / raw
  To: gentoo-user

On Sun, Apr 29, 2012 at 9:58 AM, Alex Schuster <wonko@wonkology.org> wrote:
> AleiPhoenix (A.K.A Areverie) writes:
>
>> Hi, all
>> Recently when I'm trying sync and upgrade the whole system with
>>
>> emerge -DNnav --with-bdeps=y @system @world
>>
>> I've got erlang with wxwidgets use flag. On my another gentoo box,
>> uprading erlang didn't build with this flag.
>>
>> emerge --info shows my final use flag DOES have wxwidgets (while another
>> box doesn't have). So how can I find out what cause this?
>
> I assume grep wxwidgets /etc/make.conf does not give anything on both
> machines. But does eselect profile list show different profiles?
>
> /usr/portage/profiles/ChangeLog has this entry:
>
> 16 Apr 2012; Pacho Ramos <pacho@gentoo.org>
> targets/desktop/make.defaults: Enable wxwidgets by default as discussed in
> http://archives.gentoo.org/gentoo-dev/msg_fdc392cc98c7eea216175521d87b9955.xml
>
>        Wonko
>

Excellent point about the profile. I hadn't considered that as I
hardly think about them.

profile first, then make.conf, then package.use I guess.

- Mark



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [gentoo-user] How to check what cause a use flag
  2012-04-29 23:18   ` Mark Knecht
@ 2012-04-30  8:16     ` AleiPhoenix (A.K.A Areverie)
  0 siblings, 0 replies; 5+ messages in thread
From: AleiPhoenix (A.K.A Areverie) @ 2012-04-30  8:16 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1544 bytes --]

You got me. It's the profile make this happen.

This virtual machine box profile is set to desktop (can't remember when)
and my another box is set to server.

Anyway, thanks guys, problem solved. :)

On Mon, Apr 30, 2012 at 7:18 AM, Mark Knecht <markknecht@gmail.com> wrote:

> On Sun, Apr 29, 2012 at 9:58 AM, Alex Schuster <wonko@wonkology.org>
> wrote:
> > AleiPhoenix (A.K.A Areverie) writes:
> >
> >> Hi, all
> >> Recently when I'm trying sync and upgrade the whole system with
> >>
> >> emerge -DNnav --with-bdeps=y @system @world
> >>
> >> I've got erlang with wxwidgets use flag. On my another gentoo box,
> >> uprading erlang didn't build with this flag.
> >>
> >> emerge --info shows my final use flag DOES have wxwidgets (while another
> >> box doesn't have). So how can I find out what cause this?
> >
> > I assume grep wxwidgets /etc/make.conf does not give anything on both
> > machines. But does eselect profile list show different profiles?
> >
> > /usr/portage/profiles/ChangeLog has this entry:
> >
> > 16 Apr 2012; Pacho Ramos <pacho@gentoo.org>
> > targets/desktop/make.defaults: Enable wxwidgets by default as discussed
> in
> >
> http://archives.gentoo.org/gentoo-dev/msg_fdc392cc98c7eea216175521d87b9955.xml
> >
> >        Wonko
> >
>
> Excellent point about the profile. I hadn't considered that as I
> hardly think about them.
>
> profile first, then make.conf, then package.use I guess.
>
> - Mark
>
>


-- 
Silence is gold.

twitter: @areverie
wikipedia: AleiPhoenix
blog: weblog.areverie.org
wiki: wiki.areverie.org

[-- Attachment #2: Type: text/html, Size: 2508 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-04-30  8:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-29 16:19 [gentoo-user] How to check what cause a use flag AleiPhoenix (A.K.A Areverie)
2012-04-29 16:47 ` Mark Knecht
2012-04-29 16:58 ` Alex Schuster
2012-04-29 23:18   ` Mark Knecht
2012-04-30  8:16     ` AleiPhoenix (A.K.A Areverie)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox