efl/legacy/evas/src/static_deps/liblinebreak
Tom Hacohen f51c8f7fc3 Evas liblineabreak: Include the wordbreak headers.
SVN revision: 66264
2011-12-15 22:27:59 +00:00
..
AUTHORS Evas liblinebreak: Added the wordbreak support. 2011-12-12 15:25:39 +00:00
ChangeLog Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
LICENCE Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
LineBreak1.sed Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
LineBreak2.sed Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
Makefile.am Evas liblineabreak: Include the wordbreak headers. 2011-12-15 22:27:59 +00:00
NEWS Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
README Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
filter_dup.c Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
gen_linebreak_data.sh Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
gen_wordbreak_data.sh Evas liblinebreak: Added the wordbreak support. 2011-12-12 15:25:39 +00:00
linebreak.c Evas linebraek: Fix liblinebreak's CB class at sot handling. 2011-05-05 11:05:50 +00:00
linebreak.h Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
linebreakdata.c Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
linebreakdata1.tmpl Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
linebreakdata2.tmpl Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
linebreakdata3.tmpl Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
linebreakdef.c Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
linebreakdef.h Evas: Added liblinebreak (static dep) to the build process. 2011-05-05 11:05:44 +00:00
sort_numeric_hex.py Evas liblinebreak: Added the wordbreak support. 2011-12-12 15:25:39 +00:00
wordbreak.c Evas linebreak: Fix wordbreak bug when there are chars < 0x0A. 2011-12-13 07:32:56 +00:00
wordbreak.h Evas liblinebreak: Added the wordbreak support. 2011-12-12 15:25:39 +00:00
wordbreakdata.x Evas liblinebreak: Added the wordbreak support. 2011-12-12 15:25:39 +00:00
wordbreakdef.h Evas liblinebreak: Added the wordbreak support. 2011-12-12 15:25:39 +00:00

README

NOTICE: This is the original version, that was adapted a bit (mostly
              build related) in order to work nicely with Evas.


                        L I B L I N E B R E A K
                        =======================

Overview
--------

This is the README file for liblinebreak, an implementation of the line
breaking algorithm as described in Unicode 5.2.0 Standard Annex 14,
Revision 24, available at
         <URL:http://www.unicode.org/reports/tr14/tr14-24.html>

Check this URL for up-to-date information:
         <URL:http://vimgadgets.sourceforge.net/liblinebreak/>


Licence
-------

This library is released under an open-source licence, the zlib/libpng
licence.  Please check the file LICENCE for details.

Apart from using the algorithm, part of the code is derived from the
data provided under
                  <URL:http://www.unicode.org/Public/>

And the Unicode Terms of Use may apply:
              <URL:http://www.unicode.org/copyright.html>


Installation
------------

There are three ways to build the library:

1) On *NIX systems supported by the autoconfiscation tools, do the
   normal

     ./configure
     make
     sudo make install

   to build and install both the dynamic and static libraries.  In
   addition, one may

   - type `make doc' to generate the doxygen documentation; or
   - type `make linebreakdata' to regenerate linebreakdata.c from
     LineBreak.txt.

2) On systems where GCC and Binutils are supported, one can type

     cp -p Makefile.gcc Makefile
     make

   to build the static library.  In addition, one may

   - type `make debug' or `make release' to explicitly generate the
     debug or release build;
   - type `make doc' to generate the doxygen documentation; or
   - type `make linebreakdata' to regenerate linebreakdata.c from
     LineBreak.txt.

3) On Windows, apart from using method 1 (Cygwin/MSYS) and method 2
   (MinGW), MSVC can also be used.  Type

     nmake -f Makefile.msvc

   to build the static library.  By default the debug release is built.
   To build the release version

     nmake -f Makefile.msvc CFG="linebreak - Win32 Release"


Documentation
-------------

Check the generated document doc/html/linebreak_8h.html for the public
interfaces exposed to applications.


$Id: README,v 1.6 2009/11/29 08:09:13 adah Exp $

vim:autoindent:expandtab:formatoptions=tcqlmn:textwidth=72: