efl/legacy/evas_generic_loaders
Carsten Haitzler 63a9dd7384 v1.8.0 2013-12-01 19:02:37 +09:00
..
m4 add an xcf generic loader. code totally taken from original xcf loader 2011-04-26 06:28:29 +00:00
pkgbuild Evas_generic_loaders: PKGBUILD cleanup 2013-06-22 12:33:52 +09:00
src gst loader - early quit if gst stream has no video streams 2013-11-27 00:12:18 +09:00
.gitignore update .gitignore 2013-06-07 20:07:50 +09:00
AUTHORS evas_generic_loaders: add support for poppler 0.20. 2012-06-05 10:30:38 +00:00
COPYING Remove 'lesser' when this isn't LGPL 2013-06-09 22:13:11 +09:00
ChangeLog add timeouts to all generic loaders - same timer infra. 2012-09-26 08:07:33 +00:00
Makefile.am add an xcf generic loader. code totally taken from original xcf loader 2011-04-26 06:28:29 +00:00
NEWS add libreoffice news 2013-12-01 16:08:27 +09:00
README readme - make requirements list a bullet list 2013-12-01 14:53:49 +09:00
TODO update TODO and README 2011-06-03 23:00:31 +00:00
autogen.sh that's it - remove autom4te.cache dirs again... - keep having to many 2011-08-02 04:13:33 +00:00
configure.ac v1.8.0 2013-12-01 19:02:37 +09:00

README

Evas generic loaders 1.8.0
==========================

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

These are additional "generic" loaders for Evas that are stand-alone
executables that evas may run from its generic loader module. This
means that if they crash, the application loading the image does not
crash also. In addition the licensing of these binaries will not
affect the license of any application that uses Evas as this uses a
completely generic execution system that allows anything to be plugged
in as a loader.


REQUIREMENTS
------------

Required by default:

  * libc
  * libm
  * zlib

Highly recommended:

  * gstreamer (0.10) (ensure you have all the gstreamer codecs you need/want)
  * poppler
  * libraw
  * libspectre
  * librsvg

Sugested:

  * libreoffice


COMPONENTS
----------

Generic loaders currently provided:

  * **XCF** (.xcf .xcf.gz)

  * **PDF** (using poppler)
   * use -key option to specific what page to get and load options for size
     Should we add mupdf ?

  * **PS** (using libspectre)
   * use -key option to specific what page to get and load options for size
     Should we use directly libgs ?

  * **RAW** (using libraw)
  
  * **SVG** (using librsvg)

  * **MPG/AVI/OGV/MOV/MKV/WMV** etc. (using gstreamer)
   * Should we add libxine and vlc ?
  
  * **PPT/PPTX/DOC/DOCX/XLS** etc.
   * Required PDF loader, and uses libreoffice binaries as slaves to
     export PDFs to load


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

    ./configure
    make
    sudo make install


COMPILER FLAGS
--------------

You may want to change the install prefix for EFL with:

    --prefix=/path/to/prefix

**NOTE:**

You should put generic loaders in the same prefix as EFL or they will
not be found by EFL at runtime.