aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eet/README
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-04 18:41:13 +1000
committerDavid Walter Seikel2012-01-04 18:41:13 +1000
commitdd7595a3475407a7fa96a97393bae8c5220e8762 (patch)
treee341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/eet/README
parentAdd the skeleton. (diff)
downloadSledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.zip
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.gz
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.bz2
SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.xz
Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje.
Note that embryo wont be used, but I'm not sure yet if you can build edje without it.
Diffstat (limited to 'libraries/eet/README')
-rw-r--r--libraries/eet/README69
1 files changed, 69 insertions, 0 deletions
diff --git a/libraries/eet/README b/libraries/eet/README
new file mode 100644
index 0000000..48be3e5
--- /dev/null
+++ b/libraries/eet/README
@@ -0,0 +1,69 @@
1Eet 1.1.0
2
3******************************************************************************
4
5 FOR ANY ISSUES PLEASE EMAIL:
6 enlightenment-devel@lists.sourceforge.net
7
8******************************************************************************
9
10Requirements:
11-------------
12Must have:
13 libc
14 libm
15 zlib
16 libjpeg
17 eina (1.1.0 or better)
18 (For windows you also need: evil)
19
20Optional requirements:
21 gnutls (1.7.6 or better)
22 openssl
23
24Eet is a tiny library designed to write an arbitrary set of chunks of
25data to a file and optionally compress each chunk (very much like a
26zip file) and allow fast random-access reading of the file later
27on. It does not do zip as a zip itself has more complexity than is
28needed, and it was much simpler to implement this once here.
29
30It also can encode and decode data structures in memory, as well as
31image data for saving to eet files or sending across the network to
32other machines, or just writing to arbitrary files on the system. All
33data is encoded in a platform independent way and can be written and
34read by any architecture. This data once encoded can be sent to
35another process or machine and decoded on the other end without
36needing to go into an eet file. Eet can also optionally encrypt files
37and use digital signatures (with gnutls or openssl support).
38
39------------------------------------------------------------------------------
40COMPILING AND INSTALLING:
41
42 ./configure
43 make
44(do this as root unless you are installing in your users directories):
45 make install
46
47To get the coverage report:
48 make coverage
49The report is created in the coverage/ subdir
50If you want to be able to run coverage test over eet, you will need gcov
51(usually any distro provides it) and lcov from:
52 http://ltp.sourceforge.net/coverage/lcov.php.
53For coverage support you also need "make check" support with the check
54library (see below).
55
56For compilation with MinGW, fnmatch.h is probably missing. That file can be
57found here:
58 http://www.koders.com/c/fid2B518462CB1EED3D4E31E271DB83CD1582F6EEBE.aspx
59It should be installed in the mingw include directory.
60
61For compilation with mingw32ce, run configure with the option
62 --host=arm-wince-mingw32ce
63
64For compilation with cegcc, follow the wiki:
65 http://wiki.enlightenment.org/index.php/Category:EFL_Windows_CE
66
67If you want to be able to run "make check", you need library check
68 from http://check.sourceforge.net/
69