Re: [E-devel] resolve eet build failure

2009-09-10 Thread Albin Tonnerre
On Thu, 10 Sep 2009 15:42 +1000, Simon Horman wrote :
 As reported in track ticket 377 (amongst other things), eet seems
 to fail to build (on Debian).
 
 # svn checkout FOO/eet
 # cd eet
 # ./autogen.sh
 # make
 [snip]
 libtool: link: gcc -std=gnu99 -Wall -O2 -fomit-frame-pointer -pipe 
 -Wl,--as-needed -o .libs/eet eet-eet_main.o  ../../src/lib/.libs/libeet.so
 ../../src/lib/.libs/libeet.so: undefined reference to `clock_gettime'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlsym'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlerror'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_lock'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_unlock'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_init'
 ../../src/lib/.libs/libeet.so: undefined reference to `dladdr'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_destroy'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlopen'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlclose'
 collect2: ld returned 1 exit status
 make[3]: *** [eet] Error 1
 make[3]: Leaving directory `/home/horms/projects/e/svn/trunk/eet/src/bin'
 make[2]: *** [all-recursive] Error 1
 make[2]: Leaving directory `/home/horms/projects/e/svn/trunk/eet/src'
 make[1]: *** [all-recursive] Error 1
 make[1]: Leaving directory `/home/horms/projects/e/svn/trunk/eet'
 make: *** [all] Error 2
 
 A simple solution seems to be to link libeet against ldl and lrt as
 follows. Is this acceptable?

That looks *a lot* like one of eet's dependencies is missing proper linking,
rather as eet itself - as it doesn't have any pthread code nor dlopen code. Have
you checked whether eina is correctly linked against libdl and libpthread ?

Regards,
-- 
Albin Tonnerre


signature.asc
Description: Digital signature
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [patch] esmart: Add autogen.sh to dist tarball

2009-09-10 Thread The Rasterman
On Thu, 10 Sep 2009 06:48:27 +0200 (CEST) Vincent Torri vto...@univ-evry.fr
said:

 
 
 On Thu, 10 Sep 2009, Carsten Haitzler (The Rasterman) wrote:
 
  On Thu, 10 Sep 2009 09:50:04 +1000 Simon Horman ho...@verge.net.au said:
 
  On Wed, Sep 09, 2009 at 09:30:24AM +0200, Albin Tonnerre wrote:
  On Wed, 09 Sep 2009 09:24 +1000, Simon Horman wrote :
  Is the following appropriate?
 
  -
 
  Subject: Add autogen.sh to dist tarball
 
  autogen.sh is used by the debian packaging so it seems
  appropriate to include it in the dist tarball
 
  Either you're packaging from SVN and therefore don't need it to be part of
  the dist tarball, or you're packaging from the snapshots at
  download.enlightenment.org (or snapshots you generated) and then your
  packaging should be fixed to use directly ./configure instead of
  configure.sh. Is there an actual use case I'm missing, for which this
  change would be required?
 
  Thanks for filling me in on the expected usage.
 
  actually. alibin is wrong (sorry!) autogen's do get packaged. look at
  existing efl. we put it in so if u get a tarball u CAN easily modify the
  configure.ac, Makefile.am's etc. and re-generate the autofoo. the script
  will be there with all the magic. not everyone will want or need to do this
  from a tarball dist - but it dos happen. people patching packages are often
  the ones using it. so it's not valid. it's an omission in the esmart build
  foo. :) (even if albin was right - eet, evas, elementary, edje, ... etc.
  all include autogen.sh in their EXTRA_DIST, so it'd go in for consistency
  sake. it's goo to have everything in svn have consistent autofoo files and
  work the same way. it makes everything hav the same bug o everything is
  right. not some things buggy, some not, in terms of autofoo
  usage/structure, so if u do find a bug/issue - u can know that fixing it
  everywhere else is trivial)
 
 get a source, modify configure.ac, run make. The autotools commands will 
 be re-launched.
 
 Sometimes, when the modifications are too big, you need autogen.sh (i had 
 that problem), or use autoreconf.

yeah. you can get into that state of it not being able to re-bootstrap itself,
thus the need for autogen

-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] resolve eet build failure

2009-09-10 Thread Simon Horman
On Thu, Sep 10, 2009 at 10:04:15AM +0200, Albin Tonnerre wrote:
 On Thu, 10 Sep 2009 15:42 +1000, Simon Horman wrote :
  As reported in track ticket 377 (amongst other things), eet seems
  to fail to build (on Debian).
  
  # svn checkout FOO/eet
  # cd eet
  # ./autogen.sh
  # make
  [snip]
  libtool: link: gcc -std=gnu99 -Wall -O2 -fomit-frame-pointer -pipe 
  -Wl,--as-needed -o .libs/eet eet-eet_main.o  ../../src/lib/.libs/libeet.so
  ../../src/lib/.libs/libeet.so: undefined reference to `clock_gettime'
  ../../src/lib/.libs/libeet.so: undefined reference to `dlsym'
  ../../src/lib/.libs/libeet.so: undefined reference to `dlerror'
  ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_lock'
  ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_unlock'
  ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_init'
  ../../src/lib/.libs/libeet.so: undefined reference to `dladdr'
  ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_destroy'
  ../../src/lib/.libs/libeet.so: undefined reference to `dlopen'
  ../../src/lib/.libs/libeet.so: undefined reference to `dlclose'
  collect2: ld returned 1 exit status
  make[3]: *** [eet] Error 1
  make[3]: Leaving directory `/home/horms/projects/e/svn/trunk/eet/src/bin'
  make[2]: *** [all-recursive] Error 1
  make[2]: Leaving directory `/home/horms/projects/e/svn/trunk/eet/src'
  make[1]: *** [all-recursive] Error 1
  make[1]: Leaving directory `/home/horms/projects/e/svn/trunk/eet'
  make: *** [all] Error 2
  
  A simple solution seems to be to link libeet against ldl and lrt as
  follows. Is this acceptable?
 
 That looks *a lot* like one of eet's dependencies is missing proper linking,
 rather as eet itself - as it doesn't have any pthread code nor dlopen code. 
 Have
 you checked whether eina is correctly linked against libdl and libpthread ?

Good thinking. I'll try looking into that.


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] resolve eet build failure

2009-09-10 Thread Vincent Torri

Hey,

On Thu, 10 Sep 2009, Simon Horman wrote:

 As reported in track ticket 377 (amongst other things), eet seems
 to fail to build (on Debian).

 libtool: link: gcc -std=gnu99 -Wall -O2 -fomit-frame-pointer -pipe 
 -Wl,--as-needed -o .libs/eet eet-eet_main.o  ../../src/lib/.libs/libeet.so
 ../../src/lib/.libs/libeet.so: undefined reference to `clock_gettime'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlsym'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlerror'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_lock'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_unlock'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_init'
 ../../src/lib/.libs/libeet.so: undefined reference to `dladdr'
 ../../src/lib/.libs/libeet.so: undefined reference to `pthread_spin_destroy'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlopen'
 ../../src/lib/.libs/libeet.so: undefined reference to `dlclose'
 collect2: ld returned 1 exit status
 make: *** [all] Error 2

 A simple solution seems to be to link libeet against ldl and lrt as
 follows. Is this acceptable?

I don't think so as eet does not use any of those functions. (also waht 
about pthread if you just add dl and rt ?).

Vincent

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] e16-1.0.1

2009-09-10 Thread Kim Woelders
e16-1.0.1 is available for download:
http://sourceforge.net/project/showfiles.php?group_id=2

e16-1.0.1:
- Fix potential crash when closing magnifier window.
- Look up menu icons in ~/.e16/icons too (ticket 328).
- Prevent area switch while shading (ticket 332).
- Fix size of windows resized by a window match.
- Use xrender cursor for restart cursor when available.
- Fix font configuration file search order (default should be fonts.cfg).
- Fix crash when snapshot or match places window on invalid desk.
- Translation updates (ar, es, nl, pt_BR, sk, zh_CN).

/Kim

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: barbieri IN trunk/TMP/st: . elementary-skel elementary-skel/data elementary-skel/data/desktop elementary-skel/data/themes elementary-skel/m4 elementary-skel/po elementary-skel/src

2009-09-10 Thread Gustavo Sverzut Barbieri
Anyone willing to do a fancy elementary-based frontend for it? Would
rock to have:

Page 01: Ask project name, description, license (presented as a
hoversel), maybe let user choose icon. (icon is not supported by my
script, but you can copy it over after the script finishes)
Page 02: Ask name and email, if user decides to finish from first
page, use information from /etc/passwd and hostname.

Script output is simple to parse, lines begin with an information
followed by :, then an empty line to show the summary (that can be
ignored). Information bits are:
   - ERROR: something bad happened.
   - I: ignored
   - D: create directory
   - F: create file

It would be like to have it extensible so if in future we add more
templates we could choose from them and even present a nice
screenshot, for example instead of creating a window with a frame,
label and buttons we could generate one empty or one with a list,
etc...

Anyway, have fun.


On Thu, Sep 10, 2009 at 5:53 PM, Enlightenment SVN
no-re...@enlightenment.org wrote:
 Log:
  Generate elementary-based projects based on a skeleton.

  Just cd elementary-skel and run ./project-generate.sh OPTIONS. It is
  still barebones, specially on user-interface that could be interactive
  if no options are given.


 Author:       barbieri
 Date:         2009-09-10 13:53:37 -0700 (Thu, 10 Sep 2009)
 New Revision: 42390

 Added:
  trunk/TMP/st/elementary-skel/ trunk/TMP/st/elementary-skel/AUTHORS 
 trunk/TMP/st/elementary-skel/COPYING.Apache-2.0 
 trunk/TMP/st/elementary-skel/COPYING.Artistic 
 trunk/TMP/st/elementary-skel/COPYING.BSD 
 trunk/TMP/st/elementary-skel/COPYING.GFDL-1.2 
 trunk/TMP/st/elementary-skel/COPYING.GPL-2 
 trunk/TMP/st/elementary-skel/COPYING.GPL-3 
 trunk/TMP/st/elementary-skel/COPYING.LGPL-2 
 trunk/TMP/st/elementary-skel/COPYING.LGPL-2.1 
 trunk/TMP/st/elementary-skel/COPYING.LGPL-3 
 trunk/TMP/st/elementary-skel/COPYING.QPL-1.0 
 trunk/TMP/st/elementary-skel/ChangeLog trunk/TMP/st/elementary-skel/INSTALL 
 trunk/TMP/st/elementary-skel/Makefile.am trunk/TMP/st/elementary-skel/NEWS 
 trunk/TMP/st/elementary-skel/README trunk/TMP/st/elementary-skel/autogen.sh 
 trunk/TMP/st/elementary-skel/configure.ac trunk/TMP/st/elementary-skel/data/ 
 trunk/TMP/st/elementary-skel/data/Makefile.am 
 trunk/TMP/st/elementary-skel/data/desktop/ 
 trunk/TMP/st/elementary-skel/data/desktop/@proj...@.desktop 
 trunk/TMP/st/elementary-skel/data/desktop/@proj...@.png 
 trunk/TMP/st/elementary-skel/data/desktop/Makefile.am 
 trunk/TMP/st/elementary-skel/data/themes/ 
 trunk/TMP/st/elementary-skel/data/themes/Makefile.am 
 trunk/TMP/st/elementary-skel/m4/ 
 trunk/TMP/st/elementary-skel/m4/ac_attribute.m4 
 trunk/TMP/st/elementary-skel/po/ trunk/TMP/st/elementary-skel/po/LINGUAS 
 trunk/TMP/st/elementary-skel/po/Makevars 
 trunk/TMP/st/elementary-skel/po/POTFILES.in 
 trunk/TMP/st/elementary-skel/project-generate.sh 
 trunk/TMP/st/elementary-skel/src/ 
 trunk/TMP/st/elementary-skel/src/Makefile.am 
 trunk/TMP/st/elementary-skel/src/bin/ 
 trunk/TMP/st/elementary-skel/src/bin/Makefile.am 
 trunk/TMP/st/elementary-skel/src/bin/gettext.h 
 trunk/TMP/st/elementary-skel/src/bin/main.c

 Added: trunk/TMP/st/elementary-skel/AUTHORS

 Added: trunk/TMP/st/elementary-skel/COPYING.Apache-2.0

 Added: trunk/TMP/st/elementary-skel/COPYING.Artistic

 Added: trunk/TMP/st/elementary-skel/COPYING.BSD

 Added: trunk/TMP/st/elementary-skel/COPYING.GFDL-1.2

 Added: trunk/TMP/st/elementary-skel/COPYING.GPL-2

 Added: trunk/TMP/st/elementary-skel/COPYING.GPL-3

 Added: trunk/TMP/st/elementary-skel/COPYING.LGPL-2

 Added: trunk/TMP/st/elementary-skel/COPYING.LGPL-2.1

 Added: trunk/TMP/st/elementary-skel/COPYING.LGPL-3

 Added: trunk/TMP/st/elementary-skel/COPYING.QPL-1.0

 Added: trunk/TMP/st/elementary-skel/ChangeLog

 Added: trunk/TMP/st/elementary-skel/INSTALL

 Added: trunk/TMP/st/elementary-skel/Makefile.am

 Added: trunk/TMP/st/elementary-skel/NEWS

 Added: trunk/TMP/st/elementary-skel/README

 Added: trunk/TMP/st/elementary-skel/autogen.sh


 Property changes on: trunk/TMP/st/elementary-skel/autogen.sh
 ___
 Name: svn:executable
   + *
 Name: svn:eol-style
   + native

 Added: trunk/TMP/st/elementary-skel/configure.ac

 Added: trunk/TMP/st/elementary-skel/data/Makefile.am

 Added: trunk/TMP/st/elementary-skel/data/desktop/@proj...@.desktop

 Added: trunk/TMP/st/elementary-skel/data/desktop/@proj...@.png


 Property changes on: trunk/TMP/st/elementary-skel/data/desktop/@proj...@.png
 ___
 Name: svn:mime-type
   + image/png

 Added: trunk/TMP/st/elementary-skel/data/desktop/Makefile.am

 Added: trunk/TMP/st/elementary-skel/data/themes/Makefile.am

 Added: trunk/TMP/st/elementary-skel/m4/ac_attribute.m4

 Added: trunk/TMP/st/elementary-skel/po/LINGUAS

 Added: trunk/TMP/st/elementary-skel/po/Makevars

 Added: trunk/TMP/st/elementary-skel/po/POTFILES.in

 Added: 

Re: [E-devel] E SVN: jeffdameth trunk/e/src/bin

2009-09-10 Thread The Rasterman
On Thu, 10 Sep 2009 13:03:17 -0700 Enlightenment SVN
no-re...@enlightenment.org said:

how about we fix e_icon to auto-choose the fdo ico based on the current object
size and change size (and source/file) as needed?

 Log:
   prefer 24px icons for menus. downscaling looks less worse then upscaling.
 if ok for everyone, bug http://trac.enlightenment.org/e/ticket/355 can be
 closed. 
 Author:   jeffdameth
 Date: 2009-09-10 13:03:17 -0700 (Thu, 10 Sep 2009)
 New Revision: 42388
 
 Modified:
   trunk/e/src/bin/e_utils.c 
 
 Modified: trunk/e/src/bin/e_utils.c
 ===
 --- trunk/e/src/bin/e_utils.c 2009-09-10 19:05:47 UTC (rev 42387)
 +++ trunk/e/src/bin/e_utils.c 2009-09-10 20:03:17 UTC (rev 42388)
 @@ -477,7 +477,7 @@
 unsigned int size;
  
 if ((!icon) || (!icon[0])) return 0;
 -   size = e_util_icon_size_normalize(16 * e_scale);
 +   size = e_util_icon_size_normalize(24 * e_scale);
 path = efreet_icon_path_find(e_config-icon_theme, icon, size);
 if (!path) return 0;
 e_menu_item_icon_file_set(mi, path);
 
 
 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
 trial. Simplify your report design, integration and deployment - and focus on 
 what you do best, core application coding. Discover what's new with 
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 enlightenment-svn mailing list
 enlightenment-...@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: barbieri IN trunk/TMP/st: . elementary-skel elementary-skel/data elementary-skel/data/desktop elementary-skel/data/themes elementary-skel/m4 elementary-skel/po elementary-skel/src

2009-09-10 Thread The Rasterman
On Thu, 10 Sep 2009 18:35:00 -0300 Gustavo Sverzut Barbieri
barbi...@profusion.mobi said:

i was just thinking that! a trivial form-filler/selector really. hell - you
could do this using shelementary as a series of dialogs atm... well some of it.
even select an initial template app that pops up a window with some pre-made
stuff in it.

so a mini glade like thing but no real ui builder.  just initial template to
get people over the getting started barrier. for now, at least, this would
be good.

 Anyone willing to do a fancy elementary-based frontend for it? Would
 rock to have:
 
 Page 01: Ask project name, description, license (presented as a
 hoversel), maybe let user choose icon. (icon is not supported by my
 script, but you can copy it over after the script finishes)
 Page 02: Ask name and email, if user decides to finish from first
 page, use information from /etc/passwd and hostname.
 
 Script output is simple to parse, lines begin with an information
 followed by :, then an empty line to show the summary (that can be
 ignored). Information bits are:
- ERROR: something bad happened.
- I: ignored
- D: create directory
- F: create file
 
 It would be like to have it extensible so if in future we add more
 templates we could choose from them and even present a nice
 screenshot, for example instead of creating a window with a frame,
 label and buttons we could generate one empty or one with a list,
 etc...
 
 Anyway, have fun.
 
 
 On Thu, Sep 10, 2009 at 5:53 PM, Enlightenment SVN
 no-re...@enlightenment.org wrote:
  Log:
   Generate elementary-based projects based on a skeleton.
 
   Just cd elementary-skel and run ./project-generate.sh OPTIONS. It is
   still barebones, specially on user-interface that could be interactive
   if no options are given.
 
 
  Author:       barbieri
  Date:         2009-09-10 13:53:37 -0700 (Thu, 10 Sep 2009)
  New Revision: 42390
 
  Added:
   trunk/TMP/st/elementary-skel/ trunk/TMP/st/elementary-skel/AUTHORS
  trunk/TMP/st/elementary-skel/COPYING.Apache-2.0
  trunk/TMP/st/elementary-skel/COPYING.Artistic
  trunk/TMP/st/elementary-skel/COPYING.BSD
  trunk/TMP/st/elementary-skel/COPYING.GFDL-1.2
  trunk/TMP/st/elementary-skel/COPYING.GPL-2
  trunk/TMP/st/elementary-skel/COPYING.GPL-3
  trunk/TMP/st/elementary-skel/COPYING.LGPL-2
  trunk/TMP/st/elementary-skel/COPYING.LGPL-2.1
  trunk/TMP/st/elementary-skel/COPYING.LGPL-3
  trunk/TMP/st/elementary-skel/COPYING.QPL-1.0
  trunk/TMP/st/elementary-skel/ChangeLog trunk/TMP/st/elementary-skel/INSTALL
  trunk/TMP/st/elementary-skel/Makefile.am trunk/TMP/st/elementary-skel/NEWS
  trunk/TMP/st/elementary-skel/README trunk/TMP/st/elementary-skel/autogen.sh
  trunk/TMP/st/elementary-skel/configure.ac
  trunk/TMP/st/elementary-skel/data/
  trunk/TMP/st/elementary-skel/data/Makefile.am
  trunk/TMP/st/elementary-skel/data/desktop/
  trunk/TMP/st/elementary-skel/data/desktop/@proj...@.desktop
  trunk/TMP/st/elementary-skel/data/desktop/@proj...@.png
  trunk/TMP/st/elementary-skel/data/desktop/Makefile.am
  trunk/TMP/st/elementary-skel/data/themes/
  trunk/TMP/st/elementary-skel/data/themes/Makefile.am
  trunk/TMP/st/elementary-skel/m4/
  trunk/TMP/st/elementary-skel/m4/ac_attribute.m4
  trunk/TMP/st/elementary-skel/po/ trunk/TMP/st/elementary-skel/po/LINGUAS
  trunk/TMP/st/elementary-skel/po/Makevars
  trunk/TMP/st/elementary-skel/po/POTFILES.in
  trunk/TMP/st/elementary-skel/project-generate.sh
  trunk/TMP/st/elementary-skel/src/
  trunk/TMP/st/elementary-skel/src/Makefile.am
  trunk/TMP/st/elementary-skel/src/bin/
  trunk/TMP/st/elementary-skel/src/bin/Makefile.am
  trunk/TMP/st/elementary-skel/src/bin/gettext.h
  trunk/TMP/st/elementary-skel/src/bin/main.c
 
  Added: trunk/TMP/st/elementary-skel/AUTHORS
 
  Added: trunk/TMP/st/elementary-skel/COPYING.Apache-2.0
 
  Added: trunk/TMP/st/elementary-skel/COPYING.Artistic
 
  Added: trunk/TMP/st/elementary-skel/COPYING.BSD
 
  Added: trunk/TMP/st/elementary-skel/COPYING.GFDL-1.2
 
  Added: trunk/TMP/st/elementary-skel/COPYING.GPL-2
 
  Added: trunk/TMP/st/elementary-skel/COPYING.GPL-3
 
  Added: trunk/TMP/st/elementary-skel/COPYING.LGPL-2
 
  Added: trunk/TMP/st/elementary-skel/COPYING.LGPL-2.1
 
  Added: trunk/TMP/st/elementary-skel/COPYING.LGPL-3
 
  Added: trunk/TMP/st/elementary-skel/COPYING.QPL-1.0
 
  Added: trunk/TMP/st/elementary-skel/ChangeLog
 
  Added: trunk/TMP/st/elementary-skel/INSTALL
 
  Added: trunk/TMP/st/elementary-skel/Makefile.am
 
  Added: trunk/TMP/st/elementary-skel/NEWS
 
  Added: trunk/TMP/st/elementary-skel/README
 
  Added: trunk/TMP/st/elementary-skel/autogen.sh
 
 
  Property changes on: trunk/TMP/st/elementary-skel/autogen.sh
  ___
  Name: svn:executable
    + *
  Name: svn:eol-style
    + native
 
  Added: trunk/TMP/st/elementary-skel/configure.ac
 
  Added: trunk/TMP/st/elementary-skel/data/Makefile.am
 
  Added: trunk/TMP/st/elementary-skel/data/desktop/@proj...@.desktop
 
  

Re: [E-devel] E SVN: barbieri IN trunk/TMP/st: . elementary-skel elementary-skel/data elementary-skel/data/desktop elementary-skel/data/themes elementary-skel/m4 elementary-skel/po elementary-skel/src

2009-09-10 Thread Gustavo Sverzut Barbieri
On Thu, Sep 10, 2009 at 7:03 PM, Carsten Haitzler ras...@rasterman.com wrote:
 On Thu, 10 Sep 2009 18:35:00 -0300 Gustavo Sverzut Barbieri
 barbi...@profusion.mobi said:

 i was just thinking that! a trivial form-filler/selector really. hell - you
 could do this using shelementary as a series of dialogs atm... well some of 
 it.
 even select an initial template app that pops up a window with some pre-made
 stuff in it.

 so a mini glade like thing but no real ui builder.  just initial template to
 get people over the getting started barrier. for now, at least, this would
 be good.

Yes, yes... have you tried it? It create a window with delete-request
connected, quit button inside a frame with a label and another button
that increments a counter and set the label. Serves as a good example.
This includes gettext/libintl support and stub to create your own
theme.

We just need to create more main-STYLE.c files and main-STYLE.png with
screenshots, then just like I did with COPYING.* you blacklist the
file and copy the chosen one manually.

Maybe I can do that later tonight after I finish some important stuff.

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

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel