Re: [E-devel] autotools "shave"

2009-06-10 Thread Sachiel
On Wed, Jun 10, 2009 at 2:03 AM, Vincent Torri wrote:
>
>
> On Tue, 9 Jun 2009, Gustavo Sverzut Barbieri wrote:
>
>> http://damien.lespiau.name/blog/2009/02/18/shave-making-the-autotools-output-sane/
>>
>> I've seen some projects using it and actually looks nice! Vincent, are
>> you willing to give it a try?
>
> I knew that stuff (Nicolas Aguirre showed me the link) but didn't look
> into it in details.
>
> I don't know if it's a coincidence or not, but just after your mail, a guy
> posted the link in the automake ML. The answer is : it exists in the new
> automake 1.11. Then it easy to set it up (i've just tried and it works).
> The problem is that i don't know yet how I can add it without breaking
> configuration with automake < 1.11.

Specially since automake 1.11 has trouble installing Eina, and maybe
something else too.

>
> As a developper, i usally prefer having the whole compile line. But for a
> user, it might be interesting. That kind of output can also help in
> finding warnings, but I usually use emacs to compile and the warnings
> appear in red. I think that vi also have that feature.
>
> If I can find how to add it without breaking the current configuration
> with automake < 1.11, I can add that feature to the EFL. Otherwise I
> prefer not add it.
>
> For those who want to try:
>
> 1) install automake 1.11
>
> 2) run in the project top level directory:
>
> make maintainer-clean
>
> 3) add in configure.ac, just after AM_INIT_AUTOMAKE:
>
> AM_SILENT_RULES
>
> 4) run:
>
> ./autogen.sh --enable-silent-rules
>
> 5) then 'make' and see the result :-)
>
> Vincent
>
> --
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables unlimited
> royalty-free distribution of the report engine for externally facing
> server and web deployment.
> http://p.sf.net/sfu/businessobjects
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] autotools "shave"

2009-06-10 Thread Nicolas Aguirre
2009/6/10 Vincent Torri :
>
>
> On Tue, 9 Jun 2009, Gustavo Sverzut Barbieri wrote:
>
>> http://damien.lespiau.name/blog/2009/02/18/shave-making-the-autotools-output-sane/
>>
>> I've seen some projects using it and actually looks nice! Vincent, are
>> you willing to give it a try?
>
> I knew that stuff (Nicolas Aguirre showed me the link) but didn't look
> into it in details.
>

Right, I use it in enna, and I have an option in configure to
enable/disble shave output. It's a great tool !

-- 
Nicolas Aguirre
Mail: aguirre.nico...@gmail.com
Web: http://www.digital-corner.org

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] autotools "shave"

2009-06-10 Thread Peter Wehrfritz
Vincent Torri schrieb:
> On Tue, 9 Jun 2009, Gustavo Sverzut Barbieri wrote:
>
>   
>> http://damien.lespiau.name/blog/2009/02/18/shave-making-the-autotools-output-sane/
>>
>> I've seen some projects using it and actually looks nice! Vincent, are
>> you willing to give it a try?
>> 
>
> I knew that stuff (Nicolas Aguirre showed me the link) but didn't look 
> into it in details.
>
> I don't know if it's a coincidence or not, but just after your mail, a guy 
> posted the link in the automake ML. The answer is : it exists in the new 
> automake 1.11. Then it easy to set it up (i've just tried and it works). 
> The problem is that i don't know yet how I can add it without breaking 
> configuration with automake < 1.11.
>
> As a developper, i usally prefer having the whole compile line. But for a 
> user, it might be interesting. That kind of output can also help in 
> finding warnings, but I usually use emacs to compile and the warnings 
> appear in red. I think that vi also have that feature.
>   

I usually do `make > /dev/null` to get all (and nothing else than) warnings.

> If I can find how to add it without breaking the current configuration 
> with automake < 1.11, I can add that feature to the EFL. Otherwise I 
> prefer not add it.
>
> For those who want to try:
>
> 1) install automake 1.11
>
> 2) run in the project top level directory:
>
> make maintainer-clean
>
> 3) add in configure.ac, just after AM_INIT_AUTOMAKE:
>
> AM_SILENT_RULES
>
> 4) run:
>
> ./autogen.sh --enable-silent-rules
>
> 5) then 'make' and see the result :-)
>
> Vincent
>
> --
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables unlimited
> royalty-free distribution of the report engine for externally facing 
> server and web deployment.
> http://p.sf.net/sfu/businessobjects
> ___
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>   


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] autotools "shave"

2009-06-09 Thread Vincent Torri


On Tue, 9 Jun 2009, Gustavo Sverzut Barbieri wrote:

> http://damien.lespiau.name/blog/2009/02/18/shave-making-the-autotools-output-sane/
>
> I've seen some projects using it and actually looks nice! Vincent, are
> you willing to give it a try?

I knew that stuff (Nicolas Aguirre showed me the link) but didn't look 
into it in details.

I don't know if it's a coincidence or not, but just after your mail, a guy 
posted the link in the automake ML. The answer is : it exists in the new 
automake 1.11. Then it easy to set it up (i've just tried and it works). 
The problem is that i don't know yet how I can add it without breaking 
configuration with automake < 1.11.

As a developper, i usally prefer having the whole compile line. But for a 
user, it might be interesting. That kind of output can also help in 
finding warnings, but I usually use emacs to compile and the warnings 
appear in red. I think that vi also have that feature.

If I can find how to add it without breaking the current configuration 
with automake < 1.11, I can add that feature to the EFL. Otherwise I 
prefer not add it.

For those who want to try:

1) install automake 1.11

2) run in the project top level directory:

make maintainer-clean

3) add in configure.ac, just after AM_INIT_AUTOMAKE:

AM_SILENT_RULES

4) run:

./autogen.sh --enable-silent-rules

5) then 'make' and see the result :-)

Vincent

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] autotools "shave"

2009-06-09 Thread Gustavo Sverzut Barbieri
http://damien.lespiau.name/blog/2009/02/18/shave-making-the-autotools-output-sane/

I've seen some projects using it and actually looks nice! Vincent, are
you willing to give it a try?

-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel