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] [PATCH] Add press delay support to illume

2009-06-10 Thread Marco Trevisan (Treviño)
Gustavo Sverzut Barbieri ha scritto:
 As said in the other, looks good and will apply after svn feature lock
 is released.
 
 One minor issue is the usage of int instead of unsigned int in
 eet/dbus, why not use it since it's like that in e_fm?

Mh, in e_fm it's still an int. I've not used unsigned flag since no
other setting was using it also if it would have supported it (i.e. size
setings), so... Just for coherency with the rest.

BTW, move it to the best form if you think that it's better.

Bye and thanks for applying (and replying)!

-- 
Treviño's World - Life and Linux
http://www.3v1n0.net/


--
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] [RFC] Evas module move to Eina module API

2009-06-10 Thread Cedric BAIL
On Tue, Jun 9, 2009 at 11:29 PM, Lars Munchl...@segv.dk wrote:
 On Mon, Jun 08, 2009 at 02:52:20PM +0200, Cedric BAIL wrote:
 Hi,

   Attached is a patch that move all evas module to eina module. The
 move introduce one new feature, the possibility to build module inside
 libevas directly leading the way to an all in one binary for an efl
 application.

 This is indeed a very nice feature (which also makes it possible to port
 efl to ecos and rtems :-) but static linking efl can be a little tricky
 license wise, given that some libraries (e.g EINA) are LGPL without any
 exceptions. Sorry for being slightly off topic and maybe even beating a
 dead horse, but have the authors of EINA and other LGPL based libraries
 in efl considered adding a static linking exceptions to the LGPL
 license, like FLTK, mini-xml and many other LGPL based libraries has?

 The wording could be something like:

 Static linking of applications to the XYZ library does not constitute a
 derivative work and does not require the author to provide source code
 for the application, use the shared XYZ libraries, or link their
 applications against a user-supplied version of library XYZ.

I would like to state that this is only relevant for system without
dynamic linking and it make sense in my opinion. So what do people
think of :

Static linking of applications to eina library does not constitute a
derivative work on system that does not provide dynamic linking and
does not require the author to provide source code for the
application, use the shared eina libraries or link their applications
against a user-supplied version of library eina.

This change to the licence could also be added to elementary.

 (not sure if inline functions, macros and templates needs to be covered
 as well in the above, but you get my point)

They are already covered by the LGPL and doesn't make an application
using a LGPL library GPL.

 Anyway, please consider the above suggestion as this new feature opens
 up for porting efl to some interesting and more embedded operating
 systems and adding this exception will IMHO not violate the spirit of
 the LGPL.

If this change sounds good to every one on this ML, I will contact all
12 authors of eina and check with them if they agree on this change.

Regards,
-- 
Cedric BAIL

--
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] [PATCH/RFC] e_fm2 avoid invalid mouse-up

2009-06-10 Thread Marco Trevisan (Treviño)
Gustavo Sverzut Barbieri wrote:
 Again it looks good, just a minor indentation issue with:
 
 + ed = evas_event;
 
 (ed is off).

Oh, ok sorry. I'm not so familiar with the E's indentation rules :P
They seems so strange... :)

 as for just emit click if release (up) was on the given object, it
 should be like that. At least that's how edje does it for click.

I figured that, since this issue generally doesn't happen; but there are
some exceptions (quite frequent, BTW) which needed this workaround.

 about evas_smart and on_hold flag, I'm not really doing that these
 days and no time to look at it now, maybe raster can comment on it
 later.

Ok, I'll wait him ;)

Thanks ;)

-- 
Treviño's World - Life and Linux
http://www.3v1n0.net/


--
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 vto...@univ-evry.fr:


 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] Release schedule and request for help

2009-06-10 Thread Nicolas Aguirre
2009/6/9 Gustavo Sverzut Barbieri barbi...@profusion.mobi:
 Hello all,

 If you follow http://trac.enlightenment.org/e/wiki/Release you will
 notice that more and more items are being strike out in the past
 months due work of many individuals, we'd like to thank them all.
 Among contributors we can even find out nice examples like Luca De
 Marini that is not a programmer but fund/help the work of Sergey P.
 Semernin to help finish that list.


http://local.profusion.mobi:8081/~lfelipe/output-efl seems to be dead .
my 2 cents :)

-- 
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] moving things to OLD/BROKEN

2009-06-10 Thread Nicolas Aguirre
2009/6/9 Gustavo Sverzut Barbieri barbi...@profusion.mobi:
 On Tue, Jun 9, 2009 at 3:25 PM, Nicolas
 Aguirreaguirre.nico...@gmail.com wrote:
 I plan to remove enna's sources from MISC but but i would like to keep
 a directory with only one file including address of geexbox
 repository. Do you agree with that?

 why is that? You plan to maintain it outside svn you mean? Is it svn
 as well? If so,  just use svn:external property :-)


I already maintain enna in geexbox mercurial repository. The version
in E svn is old and doesn't compile.
Enna geexbox version, can be compiled with last SVN and contains less
bugs (I guess)  and more features.
Look at enna.geexbox.org if you want to give it a try.

-- 
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] moving things to OLD/BROKEN

2009-06-10 Thread Gustavo Sverzut Barbieri
On Wed, Jun 10, 2009 at 9:57 AM, Nicolas
Aguirreaguirre.nico...@gmail.com wrote:
 2009/6/9 Gustavo Sverzut Barbieri barbi...@profusion.mobi:
 On Tue, Jun 9, 2009 at 3:25 PM, Nicolas
 Aguirreaguirre.nico...@gmail.com wrote:
 I plan to remove enna's sources from MISC but but i would like to keep
 a directory with only one file including address of geexbox
 repository. Do you agree with that?

 why is that? You plan to maintain it outside svn you mean? Is it svn
 as well? If so,  just use svn:external property :-)


 I already maintain enna in geexbox mercurial repository. The version
 in E svn is old and doesn't compile.
 Enna geexbox version, can be compiled with last SVN and contains less
 bugs (I guess)  and more features.
 Look at enna.geexbox.org if you want to give it a try.

ok, will try the new version!

and ok, just remove the code and point to the new page. That's is
better than a non-working code, and should be easier for you to
maintain.

-- 
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


Re: [E-devel] Release schedule and request for help

2009-06-10 Thread Luis Felipe Strano Moraes
On Wed, Jun 10, 2009 at 10:03 AM, Nicolas
Aguirreaguirre.nico...@gmail.com wrote:
 2009/6/9 Gustavo Sverzut Barbieri barbi...@profusion.mobi:
 Hello all,

 If you follow http://trac.enlightenment.org/e/wiki/Release you will
 notice that more and more items are being strike out in the past
 months due work of many individuals, we'd like to thank them all.
 Among contributors we can even find out nice examples like Luca De
 Marini that is not a programmer but fund/help the work of Sergey P.
 Semernin to help finish that list.


 http://local.profusion.mobi:8081/~lfelipe/output-efl seems to be dead .
 my 2 cents :)
It shouldn't be, perhaps it was just some temporary issue. I'm still trying
to keep it as up to date as possible (and I'm keeping the first one there
as well just for historical purposes :P).

--lf


 --
 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




-- 
Sometimes you gotta look reality in the face and say no! -- Benjamin Gonzalez

--
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 Sachiel
On Wed, Jun 10, 2009 at 2:03 AM, Vincent Torrivto...@univ-evry.fr 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] Release schedule and request for help

2009-06-10 Thread Nicolas Aguirre
2009/6/10 Luis Felipe Strano Moraes luis.str...@gmail.com:

 http://local.profusion.mobi:8081/~lfelipe/output-efl seems to be dead .
 my 2 cents :)
 It shouldn't be, perhaps it was just some temporary issue. I'm still trying
 to keep it as up to date as possible (and I'm keeping the first one there
 as well just for historical purposes :P).


Ok my bad, at work we have a proxy that refuse to connect on 8081
port. It works fine at home sorry :)

-- 
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


[E-devel] Edje/Evas and image resized

2009-06-10 Thread Atton Jonathan
hello,

With the new Eyelight theme, the animation on the first slide is slow if we
have a big resolution (1200x ...). This animation has 2 images (one on top
and one on bottom). Theses images keep the same size during the animation
(rel1-rel2) but rel1 and rel2 change.

I think theses images are resized each iteration of the animation. Is there
a solution to calculate the new image only 1 time and no during the
animation ? Raster works on a cache no ?

-- 
Regards.
--
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] [e-users] Planet revamped!

2009-06-10 Thread Atton Jonathan
Blog created : http://watchwolf.fr/blog/
The rss : http://watchwolf.fr/blog/index.php?feed/atom

2009/6/9 Gustavo Sverzut Barbieri barbi...@profusion.mobi

 sure!

 On Tue, Jun 9, 2009 at 10:22 AM, Atton Jonathanjonathan.at...@gmail.com
 wrote:
  hum maybe I need a blog to talk about Exalt and Eyelight.
 
  2009/6/9 muzzle muz...@gmail.com
 
  On Mon, Jun 8, 2009 at 8:39 PM, Gustavo Sverzut
  Barbieribarbi...@profusion.mobi wrote:
   Hi all,
  
   I take over planet.enlightenment.org maintenance, remove the two
 blogs
   that were not talking about E these days (tilman and dj2) and added a
   couple of other (dieb, lfelipe),
 
  Thank you!
 
   enabled the hackegotchi (so far just
   my picture) and I want design guys to help making its look  feel
   consistent with other bits of the website (dresb?)
  
   Want to be on planet?
 - send me your RSS/ATOM link, if you often talk about non-e17/efl
   things, then send link to specific category
  
   Want your hackergotchi?
 - send me your picture as png or jpeg with size 65x85
  
   Let's make it live with E/EFL stuff again, let's rock.
  
 
  Keep up the good work and make the plane a resource we users can rely
  on to understand what's going on in the e17 world.
 
  Cheers,
 
  Emme
 
   --
   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-users mailing list
   enlightenment-us...@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/enlightenment-users
  
 
 
 
 --
  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-users mailing list
  enlightenment-us...@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-users
 
 
 
  --
  Regards.
 



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




-- 
Regards.
--
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] [RFC] Evas module move to Eina module API

2009-06-10 Thread Michael Jennings
On Wednesday, 10 June 2009, at 14:06:52 (+0200),
Cedric BAIL wrote:

  Static linking of applications to the XYZ library does not constitute a
  derivative work and does not require the author to provide source code
  for the application, use the shared XYZ libraries, or link their
  applications against a user-supplied version of library XYZ.
 
 I would like to state that this is only relevant for system without
 dynamic linking and it make sense in my opinion. So what do people
 think of :
 
 Static linking of applications to eina library does not constitute a
 derivative work on system that does not provide dynamic linking and
 does not require the author to provide source code for the
 application, use the shared eina libraries or link their applications
 against a user-supplied version of library eina.

The originally-suggested text says the same thing and is grammatically
correct.  It's probably unwise to have grammatically dubious text in a
legal statement.

Michael

-- 
Michael Jennings (a.k.a. KainX)  http://www.kainx.org/  m...@kainx.org
Linux Server/Cluster Admin, LBL.gov   Author, Eterm (www.eterm.org)
---
 Act like you expect to get into the end zone.-- Joe Paterno

--
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] [e-users] Planet revamped!

2009-06-10 Thread Gustavo Sverzut Barbieri
On Wed, Jun 10, 2009 at 1:46 PM, Atton Jonathanjonathan.at...@gmail.com wrote:
 Blog created : http://watchwolf.fr/blog/
 The rss : http://watchwolf.fr/blog/index.php?feed/atom

done, but if you want your face there, just send me the
watchwolf.png/jpg with size 65x85.

-- 
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


Re: [E-devel] Edje/Evas and image resized

2009-06-10 Thread Gustavo Sverzut Barbieri
On Wed, Jun 10, 2009 at 1:33 PM, Atton Jonathanjonathan.at...@gmail.com wrote:
 hello,

 With the new Eyelight theme, the animation on the first slide is slow if we
 have a big resolution (1200x ...). This animation has 2 images (one on top
 and one on bottom). Theses images keep the same size during the animation
 (rel1-rel2) but rel1 and rel2 change.

 I think theses images are resized each iteration of the animation. Is there
 a solution to calculate the new image only 1 time and no during the
 animation ? Raster works on a cache no ?

yes, just flag them as:

   image {
  scale_hint: STATIC;
   }



-- 
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


[E-devel] eina install problem

2009-06-10 Thread tam
Current SVN pull, no other e17/efl components installed.  Ran autogen.sh,
make, sudo make install.  The first two completed successfully; the latter
gave me:

Making install in chained_pool
make[4]: Entering directory 
`/home/pete/src/enlightenment/e/trunk/eina/src/modules/mp/chained_pool'
make[5]: Entering directory 
`/home/pete/src/enlightenment/e/trunk/eina/src/modules/mp/chained_pool'
make[5]: Nothing to be done for `install-exec-am'.
test -z /usr/local/e17/lib/eina/mp/ || /bin/mkdir -p 
/usr/local/e17/lib/eina/mp/
 /bin/sh ../../../../libtool   --mode=install /bin/install -c   
eina_chained_mempool.la '/usr/local/e17/lib/eina/mp/'
libtool: install: error: cannot install `eina_chained_mempool.la' to a 
directory not ending in /usr/local/e17/lib/eina/mp/
make[5]: *** [install-controllerLTLIBRARIES] Error 1
make[5]: Leaving directory 
`/home/pete/src/enlightenment/e/trunk/eina/src/modules/mp/chained_pool'
make[4]: *** [install-am] Error 2


I poked around the autotools files, but nothing jumped out at me.  It seems
interesting that make[4] and make[5] are at the same depth.  Thoughts?

pete


--
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] eina install problem

2009-06-10 Thread Vincent Torri


On Wed, 10 Jun 2009, t...@hiddenrock.com wrote:

 Current SVN pull, no other e17/efl components installed.  Ran autogen.sh,
 make, sudo make install.  The first two completed successfully; the latter
 gave me:

 Making install in chained_pool
 make[4]: Entering directory 
 `/home/pete/src/enlightenment/e/trunk/eina/src/modules/mp/chained_pool'
 make[5]: Entering directory 
 `/home/pete/src/enlightenment/e/trunk/eina/src/modules/mp/chained_pool'
 make[5]: Nothing to be done for `install-exec-am'.
 test -z /usr/local/e17/lib/eina/mp/ || /bin/mkdir -p 
 /usr/local/e17/lib/eina/mp/
 /bin/sh ../../../../libtool   --mode=install /bin/install -c   
 eina_chained_mempool.la '/usr/local/e17/lib/eina/mp/'
 libtool: install: error: cannot install `eina_chained_mempool.la' to a 
 directory not ending in /usr/local/e17/lib/eina/mp/
 make[5]: *** [install-controllerLTLIBRARIES] Error 1
 make[5]: Leaving directory 
 `/home/pete/src/enlightenment/e/trunk/eina/src/modules/mp/chained_pool'
 make[4]: *** [install-am] Error 2

which version of automake ?

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


Re: [E-devel] eina install problem

2009-06-10 Thread tam
 which version of automake ?

Arch Linux's 1.11-1, i686.


--
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] [RFC] Evas module move to Eina module API

2009-06-10 Thread Lars Munch
On Wed, Jun 10, 2009 at 02:06:52PM +0200, Cedric BAIL wrote:
 On Tue, Jun 9, 2009 at 11:29 PM, Lars Munchl...@segv.dk wrote:
  On Mon, Jun 08, 2009 at 02:52:20PM +0200, Cedric BAIL wrote:
  Hi,
 
    Attached is a patch that move all evas module to eina module. The
  move introduce one new feature, the possibility to build module inside
  libevas directly leading the way to an all in one binary for an efl
  application.
 
  This is indeed a very nice feature (which also makes it possible to port
  efl to ecos and rtems :-) but static linking efl can be a little tricky
  license wise, given that some libraries (e.g EINA) are LGPL without any
  exceptions. Sorry for being slightly off topic and maybe even beating a
  dead horse, but have the authors of EINA and other LGPL based libraries
  in efl considered adding a static linking exceptions to the LGPL
  license, like FLTK, mini-xml and many other LGPL based libraries has?
 
  The wording could be something like:
 
  Static linking of applications to the XYZ library does not constitute a
  derivative work and does not require the author to provide source code
  for the application, use the shared XYZ libraries, or link their
  applications against a user-supplied version of library XYZ.
 
 I would like to state that this is only relevant for system without
 dynamic linking and it make sense in my opinion. So what do people
 think of :
 
 Static linking of applications to eina library does not constitute a
 derivative work on system that does not provide dynamic linking and
 does not require the author to provide source code for the
 application, use the shared eina libraries or link their applications
 against a user-supplied version of library eina.

Just curious: why don't you want to allow static linking on systems that
supports dynamic linking? I can see many uses of a static all-in-one
binary on for example linux. An example could be a static linked
exquisite used in an initrd.

 This change to the licence could also be added to elementary.
 
  (not sure if inline functions, macros and templates needs to be covered
  as well in the above, but you get my point)
 
 They are already covered by the LGPL and doesn't make an application
 using a LGPL library GPL.
 
  Anyway, please consider the above suggestion as this new feature opens
  up for porting efl to some interesting and more embedded operating
  systems and adding this exception will IMHO not violate the spirit of
  the LGPL.
 
 If this change sounds good to every one on this ML, I will contact all
 12 authors of eina and check with them if they agree on this change.

Thanks a lot for doing that :-)

Lars Munch

--
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] eina install problem

2009-06-10 Thread Vincent Torri


On Wed, 10 Jun 2009, t...@hiddenrock.com wrote:

 which version of automake ?

 Arch Linux's 1.11-1, i686.

that could be the reason. I and other people experienced the same problem 
with automake 1.11

I'll ask in the automake ML

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


Re: [E-devel] eina install problem

2009-06-10 Thread Gustavo Sverzut Barbieri
On Wed, Jun 10, 2009 at 6:51 PM, t...@hiddenrock.com wrote:
 which version of automake ?

 Arch Linux's 1.11-1, i686.


this is known to be broken, use .10 instead :-(


-- 
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


Re: [E-devel] eina install problem

2009-06-10 Thread tam
 this is known to be broken, use .10 instead :-(

1.10 confirmed to work.  Thanks!

pete


--
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