* [gentoo-user] How do I remove a module from ENLIGHTENMENT_MODULES?
@ 2012-12-20 4:15 Nikos Chantziaras
2012-12-20 4:26 ` Dustin C. Hatch
0 siblings, 1 reply; 5+ messages in thread
From: Nikos Chantziaras @ 2012-12-20 4:15 UTC (permalink / raw
To: gentoo-user
I want to remove the "connman" module from ENLIGHTENMENT_MODULES. I've
put this in my make.conf:
ENLIGHTENMENT_MODULES = "-connman"
But it doesn't work; emerge complains:
Invalid '-' operator in non-incremental variable
'ENLIGHTENMENT_MODULES': '-connman'
So how does this work?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] How do I remove a module from ENLIGHTENMENT_MODULES?
2012-12-20 4:15 [gentoo-user] How do I remove a module from ENLIGHTENMENT_MODULES? Nikos Chantziaras
@ 2012-12-20 4:26 ` Dustin C. Hatch
2012-12-20 4:32 ` [gentoo-user] " Nikos Chantziaras
0 siblings, 1 reply; 5+ messages in thread
From: Dustin C. Hatch @ 2012-12-20 4:26 UTC (permalink / raw
To: gentoo-user
On 12/19/2012 22:15, Nikos Chantziaras wrote:
> I want to remove the "connman" module from ENLIGHTENMENT_MODULES. I've
> put this in my make.conf:
>
> ENLIGHTENMENT_MODULES = "-connman"
>
> But it doesn't work; emerge complains:
>
> Invalid '-' operator in non-incremental variable
> 'ENLIGHTENMENT_MODULES': '-connman'
>
> So how does this work?
>
>
"Non-incremental variable" means it will reset whenever you assign to
it. Thus, all you need to do is specify only what modules you want;
anything not specified will be excluded.
--
♫Dustin
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-user] Re: How do I remove a module from ENLIGHTENMENT_MODULES?
2012-12-20 4:26 ` Dustin C. Hatch
@ 2012-12-20 4:32 ` Nikos Chantziaras
2012-12-20 6:52 ` ckard
0 siblings, 1 reply; 5+ messages in thread
From: Nikos Chantziaras @ 2012-12-20 4:32 UTC (permalink / raw
To: gentoo-user
On 20/12/12 06:26, Dustin C. Hatch wrote:
> On 12/19/2012 22:15, Nikos Chantziaras wrote:
>> I want to remove the "connman" module from ENLIGHTENMENT_MODULES. I've
>> put this in my make.conf:
>>
>> ENLIGHTENMENT_MODULES = "-connman"
>>
>> But it doesn't work; emerge complains:
>>
>> Invalid '-' operator in non-incremental variable
>> 'ENLIGHTENMENT_MODULES': '-connman'
>>
>> So how does this work?
>>
>>
> "Non-incremental variable" means it will reset whenever you assign to
> it. Thus, all you need to do is specify only what modules you want;
> anything not specified will be excluded.
I want to have the defaults for it, except "connman". The defaults are
provided by the ebuild (and they can change from version to version; I
can't keep track of that.)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [gentoo-user] Re: How do I remove a module from ENLIGHTENMENT_MODULES?
2012-12-20 4:32 ` [gentoo-user] " Nikos Chantziaras
@ 2012-12-20 6:52 ` ckard
2012-12-21 0:17 ` Nikos Chantziaras
0 siblings, 1 reply; 5+ messages in thread
From: ckard @ 2012-12-20 6:52 UTC (permalink / raw
To: gentoo-user
On Thu, Dec 20, 2012 at 6:32 AM, Nikos Chantziaras <realnc@gmail.com> wrote:
> On 20/12/12 06:26, Dustin C. Hatch wrote:
>>
>> On 12/19/2012 22:15, Nikos Chantziaras wrote:
>>>
>>> I want to remove the "connman" module from ENLIGHTENMENT_MODULES. I've
>>> put this in my make.conf:
>>>
>>> ENLIGHTENMENT_MODULES = "-connman"
>>>
>>> But it doesn't work; emerge complains:
>>>
>>> Invalid '-' operator in non-incremental variable
>>> 'ENLIGHTENMENT_MODULES': '-connman'
>>>
>>> So how does this work?
>>>
>>>
>> "Non-incremental variable" means it will reset whenever you assign to
>> it. Thus, all you need to do is specify only what modules you want;
>> anything not specified will be excluded.
>
>
> I want to have the defaults for it, except "connman". The defaults are
> provided by the ebuild (and they can change from version to version; I can't
> keep track of that.)
>
>
In your package.use
"x11-wm/enlightenment -enlightenment_modules_connman"
"enlightenment_modules_module-name" in general for each one you wanna
turn off individually
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-user] Re: How do I remove a module from ENLIGHTENMENT_MODULES?
2012-12-20 6:52 ` ckard
@ 2012-12-21 0:17 ` Nikos Chantziaras
0 siblings, 0 replies; 5+ messages in thread
From: Nikos Chantziaras @ 2012-12-21 0:17 UTC (permalink / raw
To: gentoo-user
On 20/12/12 08:52, ckard wrote:
> On Thu, Dec 20, 2012 at 6:32 AM, Nikos Chantziaras <realnc@gmail.com> wrote:
>>>
>>> On 12/19/2012 22:15, Nikos Chantziaras wrote:
>>>>
>>>> I want to remove the "connman" module from ENLIGHTENMENT_MODULES. I've
>>>> put this in my make.conf:
>>>>
>>>> ENLIGHTENMENT_MODULES = "-connman"
>>>>
>>>> But it doesn't work; emerge complains:
>>>>
>>>> Invalid '-' operator in non-incremental variable
>>>> 'ENLIGHTENMENT_MODULES': '-connman'
>
> In your package.use
> "x11-wm/enlightenment -enlightenment_modules_connman"
>
> "enlightenment_modules_module-name" in general for each one you wanna
> turn off individually
Thanks. That does the trick.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-12-21 0:19 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-20 4:15 [gentoo-user] How do I remove a module from ENLIGHTENMENT_MODULES? Nikos Chantziaras
2012-12-20 4:26 ` Dustin C. Hatch
2012-12-20 4:32 ` [gentoo-user] " Nikos Chantziaras
2012-12-20 6:52 ` ckard
2012-12-21 0:17 ` Nikos Chantziaras
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox