aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eet/README
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/eet/README
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/eet/README')
-rw-r--r--libraries/eet/README68
1 files changed, 0 insertions, 68 deletions
diff --git a/libraries/eet/README b/libraries/eet/README
deleted file mode 100644
index 416214b..0000000
--- a/libraries/eet/README
+++ /dev/null
@@ -1,68 +0,0 @@
1Eet 1.6.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 zlib
15 libjpeg
16 eina (1.1.0 or better)
17 (For windows you also need: evil)
18
19Optional requirements:
20 gnutls (1.7.6 or better)
21 openssl
22
23Eet is a tiny library designed to write an arbitrary set of chunks of
24data to a file and optionally compress each chunk (very much like a
25zip file) and allow fast random-access reading of the file later
26on. It does not do zip as a zip itself has more complexity than is
27needed, and it was much simpler to implement this once here.
28
29It also can encode and decode data structures in memory, as well as
30image data for saving to eet files or sending across the network to
31other machines, or just writing to arbitrary files on the system. All
32data is encoded in a platform independent way and can be written and
33read by any architecture. This data once encoded can be sent to
34another process or machine and decoded on the other end without
35needing to go into an eet file. Eet can also optionally encrypt files
36and use digital signatures (with gnutls or openssl support).
37
38------------------------------------------------------------------------------
39COMPILING AND INSTALLING:
40
41 ./configure
42 make
43(do this as root unless you are installing in your users directories):
44 make install
45
46To get the coverage report:
47 make coverage
48The report is created in the coverage/ subdir
49If you want to be able to run coverage test over eet, you will need gcov
50(usually any distro provides it) and lcov from:
51 http://ltp.sourceforge.net/coverage/lcov.php.
52For coverage support you also need "make check" support with the check
53library (see below).
54
55For compilation with MinGW, fnmatch.h is probably missing. That file can be
56found here:
57 http://www.koders.com/c/fid2B518462CB1EED3D4E31E271DB83CD1582F6EEBE.aspx
58It should be installed in the mingw include directory.
59
60For compilation with mingw32ce, run configure with the option
61 --host=arm-wince-mingw32ce
62
63For compilation with cegcc, follow the wiki:
64 http://wiki.enlightenment.org/index.php/Category:EFL_Windows_CE
65
66If you want to be able to run "make check", you need library check
67 from http://check.sourceforge.net/
68