From 05ddd5fe2df500b018fd077359121653628cd44a Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Thu, 27 Sep 2012 03:02:12 +0000 Subject: [PATCH] cleaning up the base of efl tree moving files to subdirs SVN revision: 77106 --- COPYING | 11 +++--- ChangeLog.eina | 0 Makefile.am | 41 +++++++++++---------- NEWS | 16 ++++++++ README | 20 ++++++++++ configure.ac | 12 +++--- COPYING.BSD => licenses/COPYING.BSD | 0 COPYING.GPL => licenses/COPYING.GPL | 0 COPYING.LGPL => licenses/COPYING.LGPL | 0 ChangeLog.eet => old/ChangeLog.eet | 0 legacy/eina/ChangeLog => old/ChangeLog.eina | 0 ChangeLog.evil => old/ChangeLog.evil | 0 ChangeLog.evil.0 => old/ChangeLog.evil.0 | 0 NEWS.eet => old/NEWS.eet | 0 NEWS.eina => old/NEWS.eina | 0 NEWS.evil => old/NEWS.evil | 0 README.eet => old/README.eet | 0 README.eina => old/README.eina | 0 README.evil => old/README.evil | 0 eet.pc.in => pc/eet.pc.in | 0 eina.pc.in => pc/eina.pc.in | 0 eo.pc.in => pc/eo.pc.in | 0 evil.pc.in => pc/evil.pc.in | 0 eet.spec.in => spec/eet.spec.in | 0 eina.spec.in => spec/eina.spec.in | 0 25 files changed, 69 insertions(+), 31 deletions(-) delete mode 100644 ChangeLog.eina rename COPYING.BSD => licenses/COPYING.BSD (100%) rename COPYING.GPL => licenses/COPYING.GPL (100%) rename COPYING.LGPL => licenses/COPYING.LGPL (100%) rename ChangeLog.eet => old/ChangeLog.eet (100%) rename legacy/eina/ChangeLog => old/ChangeLog.eina (100%) rename ChangeLog.evil => old/ChangeLog.evil (100%) rename ChangeLog.evil.0 => old/ChangeLog.evil.0 (100%) rename NEWS.eet => old/NEWS.eet (100%) rename NEWS.eina => old/NEWS.eina (100%) rename NEWS.evil => old/NEWS.evil (100%) rename README.eet => old/README.eet (100%) rename README.eina => old/README.eina (100%) rename README.evil => old/README.evil (100%) rename eet.pc.in => pc/eet.pc.in (100%) rename eina.pc.in => pc/eina.pc.in (100%) rename eo.pc.in => pc/eo.pc.in (100%) rename evil.pc.in => pc/evil.pc.in (100%) rename eet.spec.in => spec/eet.spec.in (100%) rename eina.spec.in => spec/eina.spec.in (100%) diff --git a/COPYING b/COPYING index c5514db908..afd8438b6e 100644 --- a/COPYING +++ b/COPYING @@ -1,7 +1,6 @@ -The EFL come with several licences: +EFL comes with several licences. Listed are the library/probject +name and the license file covering it. -BSD 2-clause: Evil, Eet - -LGPL v2: Eina - -GPL v2: +evil: licenses/COPYING.BSD +eet: licenses/COPYING.BSD +eina: licenses/COPYING.LGPL diff --git a/ChangeLog.eina b/ChangeLog.eina deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/Makefile.am b/Makefile.am index e3f8375a83..78ffecd8f3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,37 +32,40 @@ m4/evil_windows.m4 \ m4/eina_check.m4 EXTRA_DIST += \ -ChangeLog.evil \ -NEWS.evil \ -README.evil \ -evil.pc \ -ChangeLog.eina \ -NEWS.eina \ -README.eina \ -eina.spec \ -eina.pc \ -ChangeLog.eet \ -NEWS.eet \ -README.eet \ -eet.spec \ -eet.pc \ -eo.pc +licenses/COPYING.LGPL \ +licenses/COPYING.GPL \ +licenses/COPYING.BSD \ +old/ChangeLog.evil \ +old/ChangeLog.eina \ +old/ChangeLog.eet \ +old/NEWS.evil \ +old/README.evil \ +old/NEWS.eina \ +old/README.eina \ +old/NEWS.eet \ +old/README.eet \ +spec/eina.spec \ +spec/eet.spec \ +pc/evil.pc \ +pc/eina.pc \ +pc/eet.pc \ +pc/eo.pc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = if HAVE_WINDOWS -pkgconfig_DATA += evil.pc +pkgconfig_DATA += pc/evil.pc endif -pkgconfig_DATA += eina.pc +pkgconfig_DATA += pc/eina.pc if EFL_BUILD_EET -pkgconfig_DATA += eet.pc +pkgconfig_DATA += pc/eet.pc endif if EFL_BUILD_EO -pkgconfig_DATA += eo.pc +pkgconfig_DATA += pc/eo.pc endif diff --git a/NEWS b/NEWS index e69de29bb2..13fa7d056e 100644 --- a/NEWS +++ b/NEWS @@ -0,0 +1,16 @@ +========= +EFL 1.8.0 +========= + +Changes since 1.7.0: + +Additions: + * Add DOCTYPE children parsing in eina_simple_xml + +Improvements: + * Single EFL tree now covring all EFL library components. + * Speedup Eina Rbtree Iterator by recycling memory instead of + massively calling malloc/free. + +Fixes: + * Fix PPC (big endian) image codec bug. diff --git a/README b/README index e69de29bb2..4ab17664c0 100644 --- a/README +++ b/README @@ -0,0 +1,20 @@ +EFL 1.7.99 + +****************************************************************************** + + FOR ANY ISSUES PLEASE EMAIL: + enlightenment-devel@lists.sourceforge.net + +****************************************************************************** + +EFL is a collection of libraries for handling many common tasks a +developer man have such as data structures, communication, rendering, +widgets and more. + +------------------------------------------------------------------------------ +COMPILING AND INSTALLING: + + ./configure + make +(do this as root unless you are installing in your users directories): + make install diff --git a/configure.ac b/configure.ac index 740bb1791b..5c3c0c5cce 100644 --- a/configure.ac +++ b/configure.ac @@ -1259,12 +1259,12 @@ src/tests/Makefile src/tests/eina/Makefile src/tests/eet/Makefile src/tests/eo/Makefile -eina.spec -eet.spec -evil.pc -eina.pc -eet.pc -eo.pc +spec/eina.spec +spec/eet.spec +pc/evil.pc +pc/eina.pc +pc/eet.pc +pc/eo.pc ]) AC_OUTPUT diff --git a/COPYING.BSD b/licenses/COPYING.BSD similarity index 100% rename from COPYING.BSD rename to licenses/COPYING.BSD diff --git a/COPYING.GPL b/licenses/COPYING.GPL similarity index 100% rename from COPYING.GPL rename to licenses/COPYING.GPL diff --git a/COPYING.LGPL b/licenses/COPYING.LGPL similarity index 100% rename from COPYING.LGPL rename to licenses/COPYING.LGPL diff --git a/ChangeLog.eet b/old/ChangeLog.eet similarity index 100% rename from ChangeLog.eet rename to old/ChangeLog.eet diff --git a/legacy/eina/ChangeLog b/old/ChangeLog.eina similarity index 100% rename from legacy/eina/ChangeLog rename to old/ChangeLog.eina diff --git a/ChangeLog.evil b/old/ChangeLog.evil similarity index 100% rename from ChangeLog.evil rename to old/ChangeLog.evil diff --git a/ChangeLog.evil.0 b/old/ChangeLog.evil.0 similarity index 100% rename from ChangeLog.evil.0 rename to old/ChangeLog.evil.0 diff --git a/NEWS.eet b/old/NEWS.eet similarity index 100% rename from NEWS.eet rename to old/NEWS.eet diff --git a/NEWS.eina b/old/NEWS.eina similarity index 100% rename from NEWS.eina rename to old/NEWS.eina diff --git a/NEWS.evil b/old/NEWS.evil similarity index 100% rename from NEWS.evil rename to old/NEWS.evil diff --git a/README.eet b/old/README.eet similarity index 100% rename from README.eet rename to old/README.eet diff --git a/README.eina b/old/README.eina similarity index 100% rename from README.eina rename to old/README.eina diff --git a/README.evil b/old/README.evil similarity index 100% rename from README.evil rename to old/README.evil diff --git a/eet.pc.in b/pc/eet.pc.in similarity index 100% rename from eet.pc.in rename to pc/eet.pc.in diff --git a/eina.pc.in b/pc/eina.pc.in similarity index 100% rename from eina.pc.in rename to pc/eina.pc.in diff --git a/eo.pc.in b/pc/eo.pc.in similarity index 100% rename from eo.pc.in rename to pc/eo.pc.in diff --git a/evil.pc.in b/pc/evil.pc.in similarity index 100% rename from evil.pc.in rename to pc/evil.pc.in diff --git a/eet.spec.in b/spec/eet.spec.in similarity index 100% rename from eet.spec.in rename to spec/eet.spec.in diff --git a/eina.spec.in b/spec/eina.spec.in similarity index 100% rename from eina.spec.in rename to spec/eina.spec.in