efl/legacy/eet
Gustavo Sverzut Barbieri 293ca061c3 make eet_data_image_jpeg_alpha_decode() more like eet_data_image_jpeg_rgb_decode().
eet_data_image_jpeg_rgb_decode() did not had a warning the alpha
version did, as the code is very similar and the return pointer was
not used, make it just like rgb and return an integer.



SVN revision: 67345
2012-01-19 14:54:01 +00:00
..
doc use $(MAKE) instead of make, echo the built doc package. 2012-01-19 14:07:35 +00:00
m4 eet: use eina_lock. 2011-05-14 09:07:51 +00:00
src make eet_data_image_jpeg_alpha_decode() more like eet_data_image_jpeg_rgb_decode(). 2012-01-19 14:54:01 +00:00
.gitignore Add ignore and update files 2011-06-07 10:26:13 +00:00
AUTHORS change of email address: this is going to be ugly 2011-11-23 08:40:50 +00:00
COPYING fix COPYING to say 2011. 2011-09-05 07:15:41 +00:00
ChangeLog eet: write to standard output if no output file given. 2012-01-07 13:33:15 +00:00
INSTALL eet - clean out old data from doc dir, set up for 1.4.0 release, 2010-08-16 05:42:01 +00:00
Makefile.am use $(MAKE) instead of make, echo the built doc package. 2012-01-19 14:07:35 +00:00
NEWS unrevert 65828 and unspank myself. 2011-12-02 22:50:00 +00:00
README update READMe for eet 2011-11-15 11:27:32 +00:00
autogen.sh Ticket #824 - no readme.in's 2011-11-06 08:47:38 +00:00
configure.ac eet: Fixed svn detection for svn1.7 2011-12-13 08:54:44 +00:00
eet.pc.in no more dependency on pthread 2011-06-03 07:31:18 +00:00
eet.spec.in Minor adjustments to the current status. 2011-12-10 11:26:31 +00:00

README

Eet 1.1.0

******************************************************************************

 FOR ANY ISSUES PLEASE EMAIL:
 enlightenment-devel@lists.sourceforge.net

******************************************************************************

Requirements:
-------------
Must have:
  libc
  libm
  zlib
  libjpeg
  eina (1.1.0 or better) 
  (For windows you also need: evil)

Optional requirements:
  gnutls (1.7.6 or better)
  openssl

Eet is a tiny library designed to write an arbitrary set of chunks of
data to a file and optionally compress each chunk (very much like a
zip file) and allow fast random-access reading of the file later
on. It does not do zip as a zip itself has more complexity than is
needed, and it was much simpler to implement this once here.

It also can encode and decode data structures in memory, as well as
image data for saving to eet files or sending across the network to
other machines, or just writing to arbitrary files on the system. All
data is encoded in a platform independent way and can be written and
read by any architecture. This data once encoded can be sent to
another process or machine and decoded on the other end without
needing to go into an eet file. Eet can also optionally encrypt files
and use digital signatures (with gnutls or openssl support).

------------------------------------------------------------------------------
COMPILING AND INSTALLING:

  ./configure
  make
(do this as root unless you are installing in your users directories):
  make install

To get the coverage report:
    make coverage
The report is created in the coverage/ subdir
If you want to be able to run coverage test over eet, you will need gcov 
(usually any distro provides it) and lcov from:
  http://ltp.sourceforge.net/coverage/lcov.php.
For coverage support you also need "make check" support with the check
library (see below).
 
For compilation with MinGW, fnmatch.h is probably missing. That file can be
found here:
  http://www.koders.com/c/fid2B518462CB1EED3D4E31E271DB83CD1582F6EEBE.aspx
It should be installed in the mingw include directory.

For compilation with mingw32ce, run configure with the option
  --host=arm-wince-mingw32ce

For compilation with cegcc, follow the wiki:
  http://wiki.enlightenment.org/index.php/Category:EFL_Windows_CE

If you want to be able to run "make check", you need library check
  from http://check.sourceforge.net/