efl/legacy/edje
rbdpngn b97f74f636 The path for the libedje.la needs to indicate that it's in the same directory
for autofoo to determine the correct build order. This should solve the
parallel build issue.


SVN revision: 9137
2004-02-28 04:42:27 +00:00
..
data support for inlining ttf's in edje's so you can ship your fonts along too! :) 2004-01-23 02:13:42 +00:00
debian A simple program that lists collections in files, can take multiple files as 2003-10-16 07:02:31 +00:00
doc Edje now has some semblance of basic documentation. 2003-06-25 08:28:21 +00:00
src The path for the libedje.la needs to indicate that it's in the same directory 2004-02-28 04:42:27 +00:00
.cvsignore added .cvsignore files 2004-01-17 16:36:46 +00:00
AUTHORS in we go edje... no it doesnt do anything useful at the moment... 2003-06-02 23:49:56 +00:00
COPYING in we go edje... no it doesnt do anything useful at the moment... 2003-06-02 23:49:56 +00:00
COPYING-PLAIN in we go edje... no it doesnt do anything useful at the moment... 2003-06-02 23:49:56 +00:00
ChangeLog - Fix warnings 2004-01-15 00:12:19 +00:00
Doxyfile in we go edje... no it doesnt do anything useful at the moment... 2003-06-02 23:49:56 +00:00
INSTALL in we go edje... no it doesnt do anything useful at the moment... 2003-06-02 23:49:56 +00:00
Makefile.am build packages 2003-07-21 05:36:46 +00:00
NEWS - Fix warnings 2004-01-15 00:12:19 +00:00
README remove conf file, update README 2004-01-28 02:50:20 +00:00
acinclude.m4 - Fix warnings 2004-01-15 00:12:19 +00:00
autogen.sh Portable version check for libtool. 2003-11-25 07:23:48 +00:00
configure.in cross-compile cleanly! 2004-02-17 07:13:12 +00:00
edje-config.in oops. edje! edje! 2003-06-25 23:31:23 +00:00
edje.c.in fixie doccie 2004-02-20 08:16:25 +00:00
edje.spec A simple program that lists collections in files, can take multiple files as 2003-10-16 07:02:31 +00:00
edje.supp added valgrind suppression file for Edje 2004-01-17 23:53:57 +00:00
gendoc gendoc update 2004-02-20 08:24:06 +00:00
make_cross_compile_arm.sh cross-compile cleanly! 2004-02-17 07:13:12 +00:00

README

Edje 0.0.1

A graphical layout and animation library for animated resizable, compressed and
scalable themes.

It's current under development and isn't complete. See src/lib/edje_private.h
for a list of FIXME's to do. Hopefully it will be complete in a few weeks.

Quick start-up guide:

1. You need eet from the HEAD cvs branch (must be up-to-date)

  cvs co e17/libs/eet
  cd e17/libs/eet
  ./autogen.sh
  ./configure
  make
  sudo make install
  cd

2. You need evas from the HEAD branch built with eet loader support.

  cvs co e17/libs/evas
  cd e17/libs/evas
  ./autogen.sh
  ./configure
  make
  sudo make install
  cd
  
3. You need ecore from the HEAD cvs branch

  cvs co e17/libs/ecore
  cd e17/libs/ecore
  ./autogen.sh
  ./configure
  make
  sudo make install
  cd

4. You need imlib2 installed. any reelease from 1.0.0 on will do.
5. You already have edje. now build it:

   ./autogen.sh
   make
   sudo make install

You now want to go test it out. first you'll need to make an edje .eet file.
   
   cd data
   ./e_logo.sh
   
Now you can view the edje you just built:
   
   edje ./e_logo.eet
   
You can view multilpe files at once with the edje test program:
   
   edje ./e_logo.eet ./e_logo.eet ./e_logo.eet
   
to view the same one 3 times.
   
You can read the source fuile that builds the edje .eet file by looking at:

   data/src/e_logo.edc

Another test file is also there:

   data/src/test.edc
   
The test file doesn't build anything useful at the moment.