efl/legacy/eet
Carsten Haitzler 1bc1701498 cl.
SVN revision: 51558
2010-08-22 23:01:32 +00:00
..
debian From: Mikhail Gusarov <dottedmag@dottedmag.net> 2009-08-17 01:31:38 +00:00
doc eet - clean out old data from doc dir, set up for 1.4.0 release, 2010-08-16 05:42:01 +00:00
m4 Add native Windows thread support instead of using pthread 2010-07-15 06:34:32 +00:00
src more check cleans (bogus actually too - but you guys like to shut up 2010-08-22 22:21:41 +00:00
win32 * update Visual Studio project files 2010-04-03 05:29:44 +00:00
.cvsignore ignore++ 2008-06-19 12:30:57 +00:00
AUTHORS eet: mega doc update, still stuff to do. 2010-03-18 20:16:56 +00:00
COPYING fix up license - does the same as before as license now has name of 2010-08-16 02:42:00 +00:00
ChangeLog cl. 2010-08-22 23:01:32 +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 fix up license - does the same as before as license now has name of 2010-08-16 02:42:00 +00:00
NEWS news has the release in it now. 2008-04-28 04:24:34 +00:00
README.in eet - clean out old data from doc dir, set up for 1.4.0 release, 2010-08-16 05:42:01 +00:00
autogen.sh add error checking to all autogen scripts 2005-08-03 01:00:21 +00:00
configure.ac eina-1 -> eina 2010-08-16 08:03:40 +00:00
eet.pc.in Add native Windows thread support instead of using pthread 2010-07-15 06:34:32 +00:00
eet.spec.in After discussing with raster, this is what he requested for the spec 2010-04-18 07:03:09 +00:00

README.in

Eet @VERSION@ ALPHA

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

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

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

Requirements:
-------------
Must have:
  libc
  libm
  zlib
  libjpeg
  eina (1.0.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 arbitary 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 arbitary files on the system. All
data is encoded in a platform independant 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/