alpha1 release autofoo/build tree work to pass distcheck and actually work v1.8.0-alpha1
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 4 Nov 2013 09:31:48 +0000 (18:31 +0900)
committerCarsten Haitzler (Rasterman) <raster@rasterman.com>
Mon, 4 Nov 2013 09:33:35 +0000 (18:33 +0900)
76 files changed:
Makefile.am
configure.ac
m4/efl.m4
pc/ecore-audio.pc.in
pc/ecore-cocoa.pc.in
pc/ecore-con.pc.in
pc/ecore-evas.pc.in
pc/ecore-fb.pc.in
pc/ecore-file.pc.in
pc/ecore-imf-evas.pc.in
pc/ecore-imf.pc.in
pc/ecore-input-evas.pc.in
pc/ecore-input.pc.in
pc/ecore-ipc.pc.in
pc/ecore-psl1ght.pc.in
pc/ecore-sdl.pc.in
pc/ecore-wayland.pc.in
pc/ecore-win32.pc.in
pc/ecore-wince.pc.in
pc/ecore-x.pc.in
pc/ecore.pc.in
pc/edje.pc.in
pc/eet.pc.in
pc/eeze.pc.in
pc/efreet-mime.pc.in
pc/efreet-trash.pc.in
pc/efreet.pc.in
pc/eina.pc.in
pc/eio.pc.in
pc/eldbus.pc.in
pc/embryo.pc.in
pc/emotion.pc.in
pc/eo.pc.in
pc/ephysics.pc.in
pc/escape.pc.in
pc/ethumb.pc.in
pc/ethumb_client.pc.in
pc/evas.pc.in
pc/evil.pc.in
po/ca.po
po/cs.po
po/de.po
po/el.po
po/eo.po
po/es.po
po/fr.po
po/gl.po
po/it.po
po/ja.po
po/ko.po
po/lt.po
po/nl.po
po/pt.po
po/ru.po
po/sl.po
po/sr.po
po/zh_CN.po
src/Makefile.am
src/Makefile_Edje.am
src/Makefile_Eeze.am
src/lib/ecore/Ecore_Common.h
src/lib/ecore_x/Ecore_X.h
src/lib/ecore_x/ecore_x_version.h.in
src/lib/edje/Edje.h
src/lib/eet/Eet.h
src/lib/eeze/Eeze.h
src/lib/efl/Efl_Config.h.in
src/lib/efreet/Efreet.h
src/lib/eina/eina_main.h
src/lib/eio/Eio.h
src/lib/eldbus/Eldbus.h
src/lib/embryo/Embryo.h
src/lib/emotion/Emotion.h
src/lib/ephysics/EPhysics.h
src/lib/ethumb/Ethumb.h
src/lib/evas/Evas_Common.h

index 161a091..85c1fa0 100644 (file)
@@ -1,11 +1,7 @@
 ACLOCAL_AMFLAGS = -I m4
 AM_MAKEFLAGS = --no-print-directory
 AM_DISTCHECK_CONFIGURE_FLAGS = \
---with-tests=regular \
---enable-always-build-examples \
---enable-xine \
---enable-sdl \
---enable-harfbuzz
+--with-tests=regular
 
 SUBDIRS = src data doc
 
index 663fd63..78f6848 100644 (file)
@@ -1,5 +1,5 @@
-EFL_VERSION([1], [7], [99], [dev])
-AC_INIT([efl], [efl_version], [enlightenment-devel@lists.sourceforge.net])
+EFL_VERSION([1], [8], [0], [dev])
+AC_INIT([efl], [efl_version-alpha1], [enlightenment-devel@lists.sourceforge.net])
 
 AC_PREREQ([2.60])
 AC_CONFIG_SRCDIR([configure.ac])
@@ -173,6 +173,11 @@ case "$host_os" in
    ;;
 esac
 
+EFL_VERSION_MAJOR="v_maj"
+EFL_VERSION_MINOR="v_min"
+AC_SUBST(EFL_VERSION_MAJOR)
+AC_SUBST(EFL_VERSION_MINOR)
+
 want_systemd="no"
 have_wince="no"
 have_win32="no"
index 4b55c00..5cf6054 100644 (file)
--- a/m4/efl.m4
+++ b/m4/efl.m4
@@ -29,7 +29,8 @@ m4_define([dev_version], m4_esyscmd([(git rev-list --count HEAD 2>/dev/null || e
 m4_define([v_rev], m4_if($4, dev, [dev_version], [0]))dnl
 m4_define([v_rel], m4_if($4, dev, [], m4_ifblank($4, [], [-release $4])))dnl
 m4_define([def_build_profile], m4_if($4, dev, [dev], [release]))dnl
-m4_define([efl_version], m4_if($4, dev, [v_maj.v_min.v_mic.v_rev], [v_maj.v_min.v_mic]))dnl
+dnl m4_define([efl_version], m4_if($4, dev, [v_maj.v_min.v_mic.v_rev], [v_maj.v_min.v_mic]))dnl
+m4_define([efl_version], [v_maj.v_min.v_mic])dnl
 ])
 
 dnl EFL_COLOR
index 1d48e7d..31d1eab 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_audio@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_audio
 Libs.private: @requirements_libs_ecore_audio@
-Cflags: -I${includedir}/ecore-audio-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-audio-@VMAJ@
index 15af0eb..55ecca9 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_cocoa@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_cocoa
 Libs.private: @requirements_libs_ecore_cocoa@
-Cflags: -I${includedir}/ecore-cocoa-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-cocoa-@VMAJ@
index c2acbca..11fd8a5 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_con@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_con
 Libs.private: @requirements_libs_ecore_con@
-Cflags: -I${includedir}/ecore-con-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-con-@VMAJ@
index 53c85f8..d3ca75b 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_evas@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_evas
 Libs.private: @requirements_libs_ecore_evas@
-Cflags: -I${includedir}/ecore-evas-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-evas-@VMAJ@
index 4efda16..ae00624 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_fb@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_fb
 Libs.private: @requirements_libs_ecore_fb@
-Cflags: -I${includedir}/ecore-fb-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-fb-@VMAJ@
index 820c587..e4dcd1e 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_file@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_file
 Libs.private: @requirements_libs_ecore_file@
-Cflags: -I${includedir}/ecore-file-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-file-@VMAJ@
index 5e5748f..de10905 100644 (file)
@@ -8,4 +8,4 @@ Description: E core library, IMF Evas module
 Version: @VERSION@
 Requires.private: @requirements_pc_ecore_imf_evas@
 Libs: -L${libdir} -lecore_imf_evas
-Cflags: -I${includedir}/ecore-imf-evas-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-imf-evas-@VMAJ@
index 6aae05f..dd7ffff 100644 (file)
@@ -10,4 +10,4 @@ Description: E core library, IMF module
 Version: @VERSION@
 Requires.private: @requirements_pc_ecore_imf@
 Libs: -L${libdir} -lecore_imf
-Cflags: -I${includedir}/ecore-imf-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-imf-@VMAJ@
index 53b1e29..ff6159f 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_input_evas@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_input_evas
 Libs.private: @requirements_libs_ecore_input_evas@
-Cflags: -I${includedir}/ecore-input-evas-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-input-evas-@VMAJ@
index d445ced..bc4ba9f 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_input@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_input
 Libs.private: @requirements_libs_ecore_input@
-Cflags: -I${includedir}/ecore-input-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-input-@VMAJ@
index 1381490..01c4021 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_ipc@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_ipc
 Libs.private: @requirements_libs_ecore_ipc@
-Cflags: -I${includedir}/ecore-ipc-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-ipc-@VMAJ@
index c7f5166..6a8b97e 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_psl1ght@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_psl1ght
 Libs.private: @requirements_libs_ecore_psl1ght@
-Cflags: -I${includedir}/ecore-psl1ght-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-psl1ght-@VMAJ@
index 589c8a0..630a9c1 100644 (file)
@@ -8,4 +8,4 @@ Description: E core library, SDL module
 Version: @VERSION@
 Requires.private: @requirements_pc_ecore_sdl@
 Libs: -L${libdir} -lecore_sdl
-Cflags: -I${includedir}/ecore-sdl-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-sdl-@VMAJ@
index 8321897..b469a10 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_wayland@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_wayland
 Libs.private: @requirements_libs_ecore_wayland@
-Cflags: -I${includedir}/ecore-wayland-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-wayland-@VMAJ@
index 108b30a..2a1bfad 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_win32@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_win32
 Libs.private: @requirements_libs_ecore_win32@
-Cflags: -I${includedir}/ecore-win32-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-win32-@VMAJ@
index e782033..2992439 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_wince@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_wince
 Libs.private: @requirements_libs_ecore_wince@
-Cflags: -I${includedir}/ecore-wince-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-wince-@VMAJ@
index 2eb1eb2..f2c4649 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_ecore_x@
 Version: @VERSION@
 Libs: -L${libdir} -lecore_x
 Libs.private: @requirements_libs_ecore_x@
-Cflags: -I${includedir}/ecore-x-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-x-@VMAJ@
index ab7004a..b6b5516 100644 (file)
@@ -11,4 +11,4 @@ Requires.private: @requirements_pc_ecore@
 Version: @VERSION@
 Libs: -L${libdir} -lecore
 Libs.private: @requirements_libs_ecore@
-Cflags: -I${includedir}/ecore-@VMAJ@ -I${includedir}/efl-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ecore-@VMAJ@
index 51c109c..3776fe8 100644 (file)
@@ -18,4 +18,4 @@ Requires.private: @requirements_pc_edje@
 Version: @VERSION@
 Libs: -L${libdir} -ledje
 Libs.private: @requirements_libs_edje@
-Cflags: -I${includedir}/edje-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/edje-@VMAJ@
index f932978..5ce226b 100644 (file)
@@ -9,4 +9,4 @@ Version: @VERSION@
 Requires.private: @requirements_pc_eet@
 Libs: -L${libdir} -leet
 Libs.private: @requirements_libs_eet@
-Cflags: -I${includedir}/eet-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/eet-@VMAJ@
index 099c1fc..abeaa92 100644 (file)
@@ -8,4 +8,4 @@ Description: device convenience library for efl
 Requires.private: @requirements_pc_eeze@
 Version: @VERSION@
 Libs: -L${libdir} -leeze
-Cflags: -I${includedir}/eeze-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/eeze-@VMAJ@
index b14b593..506c18f 100644 (file)
@@ -8,4 +8,4 @@ Description: Freedesktop Shared Mime Info standard implementation for the EFL
 Version: @VERSION@
 Requires.private: @requirements_pc_efreet@
 Libs: -L${libdir} -lefreet_mime
-Cflags: -I${includedir}/efreet-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/efreet-@VMAJ@
index 9886ffa..4025dbb 100644 (file)
@@ -8,4 +8,4 @@ Description: Freedesktop Shared Trash implementation for the EFL
 Version: @VERSION@
 Requires.private: @requirements_pc_efreet@
 Libs: -L${libdir} -lefreet_trash
-Cflags: -I${includedir}/efreet-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/efreet-@VMAJ@
index 358c990..994b771 100644 (file)
@@ -8,4 +8,4 @@ Description: Freedesktop standards implementation for the EFL
 Version: @VERSION@
 Requires.private: @requirements_pc_efreet@
 Libs: -L${libdir} -lefreet
-Cflags: -I${includedir}/efreet-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/efreet-@VMAJ@
index e904c9e..b5b828e 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_eina@
 Version: @VERSION@
 Libs: -L${libdir} -leina @requirements_public_libs_eina@
 Libs.private: @requirements_libs_eina@
-Cflags: -I${includedir}/eina-@VMAJ@ -I${includedir}/eina-@VMAJ@/eina
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/eina-@VMAJ@ -I${includedir}/eina-@VMAJ@/eina
index b599f78..4f89e7a 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_eio@
 Version: @VERSION@
 Libs: -L${libdir} -leio
 Libs.private: @requirements_libs_eio@
-Cflags: -I${includedir}/eio-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/eio-@VMAJ@
index 94997fc..4c2a4c8 100644 (file)
@@ -9,5 +9,5 @@ Requires.private: @requirements_pc_eldbus@
 Version: @VERSION@
 Libs: -L${libdir} -leldbus
 Libs.private: @requirements_libs_eldbus@
-Cflags: -I${includedir}/eldbus-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/eldbus-@VMAJ@
 
index 9d7e121..45cc987 100644 (file)
@@ -12,4 +12,4 @@ Version: @VERSION@
 Requires.private: @requirements_pc_embryo@
 Libs: -L${libdir} -lembryo
 Libs.private: @requirements_libs_embryo@
-Cflags: -I${includedir}/embryo-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/embryo-@VMAJ@
index fdb38eb..7b89321 100644 (file)
@@ -11,4 +11,4 @@ Description: Emotion evas based multimedia library
 Version: @VERSION@
 Requires.private: @requirements_pc_emotion@
 Libs: -L${libdir} -lemotion
-Cflags: -I${includedir}/emotion-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/emotion-@VMAJ@
index a58711b..9975097 100644 (file)
@@ -9,4 +9,4 @@ Version: @PACKAGE_VERSION@
 Requires.private: @requirements_pc_eo@
 Libs: -L${libdir} -leo
 Libs.private:
-Cflags: -I${includedir}/eo-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/eo-@VMAJ@
index 38632b0..dd85303 100644 (file)
@@ -9,4 +9,4 @@ Description: EPhysics is a wrapper for physics engine.
 Requires.private: @requirements_pc_ephysics@
 Version: @VERSION@
 Libs: -L${libdir} -lephysics
-Cflags: -I${includedir}/ephysics-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ephysics-@VMAJ@
index b021b69..ec33538 100644 (file)
@@ -8,4 +8,4 @@ Description: Library that ports on the PS3 some specific Unix functions.
 Version: @VERSION@
 Libs: -L${libdir} -lescape
 Libs.private: @requirements_libs_escape@
-Cflags: -I${includedir}/escape-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/escape-@VMAJ@
index b2d935b..cc14544 100644 (file)
@@ -10,4 +10,4 @@ Description: Thumbnail Generator Library
 Version: @VERSION@
 Requires.private: @requirements_pc_ethumb@
 Libs: -L${libdir} -lethumb
-Cflags: -I${includedir}/ethumb-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ethumb-@VMAJ@
index 25e5e25..55fbdb1 100644 (file)
@@ -8,4 +8,4 @@ Description: Thumbnail Client Library
 Version: @VERSION@
 Requires.private: @requirements_pc_ethumb_client@
 Libs: -L${libdir} -lethumb_client
-Cflags: -I${includedir}/ethumb-client-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/ethumb-client-@VMAJ@
index 22617f1..4ca0275 100644 (file)
@@ -9,4 +9,4 @@ Requires.private: @requirements_pc_evas@
 Version: @VERSION@
 Libs: -L${libdir} -levas
 Libs.private: @requirements_libs_evas@
-Cflags: -I${includedir}/evas-@VMAJ@ -I${includedir}/efl-@VMAJ@
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/evas-@VMAJ@
index 2331c27..f35f512 100644 (file)
@@ -10,4 +10,4 @@ Description: Library that ports on Windows some specific Unix functions.
 Version: @VERSION@
 Libs: -L${libdir} -levil
 Libs.private:
-Cflags: -I${includedir}/evil-@VMAJ@ @EFL_WINDOWS_VERSION_CFLAGS@ -mms-bitfields -D__USE_MINGW_ANSI_STDIO
+Cflags: -I${includedir}/efl-@VMAJ@ -I${includedir}/evil-@VMAJ@ @EFL_WINDOWS_VERSION_CFLAGS@ -mms-bitfields -D__USE_MINGW_ANSI_STDIO
index 5f4e5d1..4b0d155 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-09-30 14:26+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-02-01 09:52+0100\n"
 "Last-Translator: Joan Coll <jcoll2@gmail.com>\n"
 "Language-Team: Catalan\n"
index 155fc80..b1dee55 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-09-30 14:26+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-12-13 12:06+0100\n"
 "Last-Translator: Tomáš Čech <sleep_walker@suse.cz>\n"
 "Language-Team: Czech <kde-i18n-doc@kde.org>\n"
index 389cd65..82dfa01 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-06-24 17:10+0900\n"
 "Last-Translator: Jerome Pinot <ngc891@gmail.com>\n"
 "Language-Team: Enlightenment Team\n"
index 8fc0a6c..8db9bb4 100644 (file)
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-12-01 18:26+0200\n"
 "Last-Translator: Efstathios Iosifidis <iosifidis@opensuse.org>\n"
 "Language-Team: Ελληνικά, Σύγχρονα <opensuse-translation-el@opensuse.org>\n"
index 62b48f2..91df550 100644 (file)
--- a/po/eo.po
+++ b/po/eo.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: enlightenment\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-02-21 15:24+0000\n"
 "Last-Translator: Michael Moroni <michael.moroni@mailoo.org>\n"
 "Language-Team: Esperanto <eo@li.org>\n"
index bb8352d..93ef73c 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-01-04 23:53+0100\n"
 "Last-Translator: Adrián Arévalo <adri58@gmail.com>\n"
 "Language-Team: Enlightenment Team\n"
index 38ac0da..6ce3811 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-02-05 22:51+0000\n"
 "Last-Translator: ilLogict <illogict@online.fr>\n"
 "Language-Team: Enlightenment French Team <enlightenment-intl@lists."
index bb808f1..10986b0 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-11-07 22:52+0100\n"
 "Last-Translator: Aníbal Garrido <khany@member.trisquel.info>\n"
 "Language-Team: http://trasno.net/ <proxecto@trasno.net>\n"
index bbeeb65..b1fc574 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-09-30 14:26+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-01-05 20:49+0100\n"
 "Last-Translator: Massimo Maiurana <maiurana@gmail.com>\n"
 "Language-Team: none\n"
index 2c605ed..db2ff44 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-06-24 17:10+0900\n"
 "Last-Translator: Jerome Pinot <ngc891@gmail.com>\n"
 "Language-Team: Enlightenment Team\n"
index e79196e..328445c 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-09-30 14:26+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-01-02 07:33+0900\n"
 "Last-Translator: Daniel Juyung Seo <seojuyung2@gmali.com>\n"
 "Language-Team: Enlightenment Team\n"
index 8de05cd..cbe15d4 100644 (file)
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: enlightenment\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-01-05 21:52+0000\n"
 "Last-Translator: Mantas Kriaučiūnas <mantas@akl.lt>\n"
 "Language-Team: Lithuanian <lt@li.org>\n"
index d1924c6..7215312 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-09-30 14:26+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-06-24 17:10+0900\n"
 "Last-Translator: Jerome Pinot <ngc891@gmail.com>\n"
 "Language-Team: Enlightenment Team\n"
index 6896406..f08911a 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-09-30 14:26+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-10-10 00:21+0100\n"
 "Last-Translator: Sérgio Marques <smarquespt@gmail.com>\n"
 "Language-Team: Enlightenment Team\n"
index 2980f0d..0e67856 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-06-24 17:10+0900\n"
 "Last-Translator: Jerome Pinot <ngc891@gmail.com>\n"
 "Language-Team: Enlightenment Team\n"
index 22ff5ad..4a43ba1 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-06-24 17:10+0900\n"
 "Last-Translator: Jerome Pinot <ngc891@gmail.com>\n"
 "Language-Team: Enlightenment Team\n"
index 671d484..18999c8 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: enlightenment\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-11-01 08:28+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2013-06-20 04:43+0000\n"
 "Last-Translator: Саша Петровић <salepetronije@gmail.com>\n"
 "Language-Team: српски <српски <xfce-i18n@xfce.org>>\n"
index 4b8cb27..8a68313 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Efl\n"
 "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2013-09-30 14:26+0900\n"
+"POT-Creation-Date: 2013-11-04 15:41+0900\n"
 "PO-Revision-Date: 2012-12-22 03:45+0800\n"
 "Last-Translator: Aron Xu <happyaron.xu@gmail.com>\n"
 "Language-Team: Chinese (simplified)\n"
index f4f49a8..6ceedd2 100644 (file)
@@ -15,7 +15,7 @@ check_PROGRAMS =
 TESTS =
 EXTRA_DIST =
 
-EFL_INSTALL_DATA_HOOK=
+EFL_INSTALL_EXEC_HOOK=
 
 include Makefile_Efl.am
 
@@ -102,9 +102,5 @@ clean-local:
        find . -type f -name '*.gcda' -delete
        find . -type f -name check-results.xml -delete
 
-install-data-hook:
-       $(EFL_INSTALL_DATA_HOOK)
-       for i in $(lib_LTLIBRARIES); do \
-               export file=`basename $$i`; \
-               sed -e "s/-luuid//" $(DESTDIR)${libdir}/$$file > $(DESTDIR)${libdir}/$$file.tmp && mv $(DESTDIR)${libdir}/$$file.tmp $(DESTDIR)${libdir}/$$file; \
-       done
+install-exec-hook:
+       $(EFL_INSTALL_EXEC_HOOK)
index 6c1daf9..6b4cad4 100644 (file)
@@ -210,7 +210,35 @@ bin/edje/edje_convert.c \
 bin/edje/edje_data_convert.c \
 bin/edje/edje_convert_main.c \
 lib/edje/edje_convert.c \
-tests/edje/edje_tests_helpers.h
+tests/edje/edje_tests_helpers.h \
+tests/edje/data/complex_layout.edc \
+tests/edje/data/test_layout.edc \
+tests/emotion/data/theme.edc \
+tests/emotion/data/icon.edc \
+tests/emotion/data/bpause.png \
+tests/emotion/data/bplay.png \
+tests/emotion/data/bstop.png \
+tests/emotion/data/e_logo.png \
+tests/emotion/data/fr1.png \
+tests/emotion/data/fr2.png \
+tests/emotion/data/fr3.png \
+tests/emotion/data/fr4.png \
+tests/emotion/data/fr5.png \
+tests/emotion/data/fr6.png \
+tests/emotion/data/fr7.png \
+tests/emotion/data/h_slider.png \
+tests/emotion/data/knob.png \
+tests/emotion/data/orb.png \
+tests/emotion/data/pnl.png \
+tests/emotion/data/sl.png \
+tests/emotion/data/tiles.png \
+tests/emotion/data/video_frame_bottom.png \
+tests/emotion/data/video_frame_left.png \
+tests/emotion/data/video_frame_right.png \
+tests/emotion/data/video_frame_top.png \
+tests/emotion/data/whb.png \
+tests/emotion/data/window_inner_shadow.png
+
 
 bin_SCRIPTS += bin/edje/edje_recc
 
index eaa41d7..499193d 100644 (file)
@@ -134,7 +134,7 @@ bin_eeze_eeze_scanner_DEPENDENCIES = @USE_EEZE_INTERNAL_LIBS@
 
 setuid_root_mode = a=rx,u+xs
 
-EFL_INSTALL_DATA_HOOK+=@chmod $(setuid_root_mode) $(DESTDIR)$(bindir)/eeze_scanner$(EXEEXT) || true;
+EFL_INSTALL_EXEC_HOOK+=@chmod $(setuid_root_mode) $(DESTDIR)$(bindir)/eeze_scanner$(EXEEXT) || true;
 
 
 ### Unit tests
index 83307f2..eceb4ed 100644 (file)
@@ -2,6 +2,8 @@
 extern "C" {
 #endif
 
+#include <Efl_Config.h>
+
 /**
  * @defgroup Ecore_Init_Group Ecore initialization, shutdown functions and reset on fork.
  * @ingroup Ecore
@@ -30,8 +32,8 @@ EAPI int ecore_shutdown(void);
  * @{
  */
 
-#define ECORE_VERSION_MAJOR 1
-#define ECORE_VERSION_MINOR 8
+#define ECORE_VERSION_MAJOR EFL_VERSION_MAJOR
+#define ECORE_VERSION_MINOR EFL_VERSION_MINOR
 
 typedef struct _Ecore_Version
 {
index e0e24ae..4341711 100644 (file)
@@ -2,6 +2,7 @@
 #define _ECORE_X_H
 
 #include <Eina.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
 # endif // ifdef __GNUC__
 #endif // ifdef _MSC_VER
 
+#define ECORE_X_VERSION_MAJOR EFL_VERSION_MAJOR
+#define ECORE_X_VERSION_MINOR EFL_VERSION_MINOR
+
+typedef struct _Ecore_X_Version
+{
+      int major;
+      int minor;
+      int micro;
+      int revision;
+} Ecore_X_Version;
+
+EAPI extern Ecore_X_Version *ecore_x_version;
+
 #include "ecore_x_version.h"
 
 #include <sys/types.h>
index 24de5f8..98f1d6a 100644 (file)
@@ -1,19 +1,6 @@
 #ifndef _ECORE_X_VERSION_H_
 #define _ECORE_X_VERSION_H_ 1
 
-#define ECORE_X_VERSION_MAJOR @VMAJ@
-#define ECORE_X_VERSION_MINOR @VMIN@
-
-typedef struct _Ecore_X_Version
-{
-   int major;
-   int minor;
-   int micro;
-   int revision;
-} Ecore_X_Version;
-
-EAPI extern Ecore_X_Version *ecore_x_version;
-
 #ifndef @HAVE_ECORE_X_BACKEND@
 #define @HAVE_ECORE_X_BACKEND@ 1
 #endif
index 8a460e9..015dcad 100644 (file)
@@ -214,6 +214,7 @@ param in edje programs
 
 #include <Evas.h>
 #include <Eo.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -245,8 +246,8 @@ param in edje programs
 extern "C" {
 #endif
 
-#define EDJE_VERSION_MAJOR 1
-#define EDJE_VERSION_MINOR 8
+#define EDJE_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EDJE_VERSION_MINOR EFL_VERSION_MINOR
 
 #include "Edje_Common.h"
 #ifndef EFL_NOLEGACY_API_SUPPORT
index de57e4a..ab90733 100644 (file)
@@ -97,6 +97,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 #include <Eina.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -136,8 +137,8 @@ extern "C" {
  *
  */
 
-#define EET_VERSION_MAJOR 1
-#define EET_VERSION_MINOR 8
+#define EET_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EET_VERSION_MINOR EFL_VERSION_MINOR
 /**
  * @typedef Eet_Version
  *
index 82ef11a..55d2230 100644 (file)
@@ -73,6 +73,7 @@
 #define EEZE_UDEV_H
 
 #include <Eina.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -270,8 +271,8 @@ struct Eeze_Udev_Watch;
  */
 typedef struct Eeze_Udev_Watch Eeze_Udev_Watch;
 
-#define EEZE_VERSION_MAJOR 1
-#define EEZE_VERSION_MINOR 8
+#define EEZE_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EEZE_VERSION_MINOR EFL_VERSION_MINOR
 
    typedef struct _Eeze_Version
      {
index 5bf7f6a..ad17684 100644 (file)
@@ -13,4 +13,7 @@
 /* @EFL_API_EO_DEF@ */
 #endif
 
+#define EFL_VERSION_MAJOR @EFL_VERSION_MAJOR@
+#define EFL_VERSION_MINOR @EFL_VERSION_MINOR@
+
 #endif
index ae1ec18..e2360ee 100644 (file)
@@ -72,6 +72,7 @@
  */
 
 #include <Eina.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
 extern "C" {
 #endif
 
-#define EFREET_VERSION_MAJOR 1
-#define EFREET_VERSION_MINOR 8
+#define EFREET_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EFREET_VERSION_MINOR EFL_VERSION_MINOR
    
    typedef struct _Efreet_Version
      {
index 41ea2a5..d7a7f0b 100644 (file)
@@ -19,6 +19,8 @@
 #ifndef EINA_MAIN_H_
 #define EINA_MAIN_H_
 
+#include <Efl_Config.h>
+
 #include "eina_types.h"
 
 /**
  * @def EINA_VERSION_MAJOR
  * @brief Major version of Eina
  */
-#define EINA_VERSION_MAJOR 1
+#define EINA_VERSION_MAJOR EFL_VERSION_MAJOR
 
 /**
  * @def EINA_VERSION_MINOR
  * @brief Minor version of Eina
  */
-#define EINA_VERSION_MINOR 8
+#define EINA_VERSION_MINOR EFL_VERSION_MINOR
 
 /**
  * @typedef Eina_Version
index fde08d1..7c9bd06 100644 (file)
@@ -30,6 +30,7 @@
 
 #include <Eina.h>
 #include <Eet.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -62,8 +63,8 @@
 extern "C" {
 #endif
 
-#define EIO_VERSION_MAJOR 1
-#define EIO_VERSION_MINOR 8
+#define EIO_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EIO_VERSION_MINOR EFL_VERSION_MINOR
 
     /**
     * @typedef Eio_Version
index cc069a0..478fcea 100644 (file)
@@ -78,6 +78,7 @@
 
 #include <Eina.h>
 #include <stdarg.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -115,8 +116,8 @@ extern "C" {
  *
  * @{
  */
-#define ELDBUS_VERSION_MAJOR 1
-#define ELDBUS_VERSION_MINOR 8
+#define ELDBUS_VERSION_MAJOR EFL_VERSION_MAJOR
+#define ELDBUS_VERSION_MINOR EFL_VERSION_MINOR
 
 #define ELDBUS_FDO_BUS "org.freedesktop.DBus"
 #define ELDBUS_FDO_PATH "/org/freedesktop/DBus"
index e9020d4..923afe7 100644 (file)
@@ -336,6 +336,8 @@ This is the @e only file you need to include.
 #ifndef _EMBRYO_H
 #define _EMBRYO_H
 
+#include <Efl_Config.h>
+
 #ifdef EAPI
 # undef EAPI
 #endif
@@ -366,8 +368,8 @@ This is the @e only file you need to include.
 extern "C" {
 #endif
 
-#define EMBRYO_VERSION_MAJOR 1
-#define EMBRYO_VERSION_MINOR 8
+#define EMBRYO_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EMBRYO_VERSION_MINOR EFL_VERSION_MINOR
    
    typedef struct _Embryo_Version
      {
index 34d1cc3..7240d2f 100644 (file)
@@ -92,6 +92,7 @@
  */
 
 #include <Evas.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -262,8 +263,8 @@ typedef enum _Emotion_Aspect    Emotion_Aspect; /**< Aspect ratio option. */
 extern "C" {
 #endif
 
-#define EMOTION_VERSION_MAJOR 1
-#define EMOTION_VERSION_MINOR 8
+#define EMOTION_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EMOTION_VERSION_MINOR EFL_VERSION_MINOR
    
    typedef struct _Emotion_Version
      {
index 90ea09f..f3716f9 100644 (file)
@@ -65,6 +65,7 @@
  */
 
 #include <Evas.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -96,8 +97,8 @@
 extern "C" {
 #endif
 
-#define EPHYSICS_VERSION_MAJOR 0
-#define EPHYSICS_VERSION_MINOR 1
+#define EPHYSICS_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EPHYSICS_VERSION_MINOR EFL_VERSION_MINOR
 
 /**
  * @file
index fd4dff7..4f91433 100644 (file)
@@ -2,6 +2,7 @@
 #define __ETHUMB_H__ 1
 
 #include <Eina.h>
+#include <Efl_Config.h>
 
 #ifdef EAPI
 # undef EAPI
@@ -33,8 +34,8 @@
 extern "C" {
 #endif
 
-#define ETHUMB_VERSION_MAJOR 1
-#define ETHUMB_VERSION_MINOR 8
+#define ETHUMB_VERSION_MAJOR EFL_VERSION_MAJOR
+#define ETHUMB_VERSION_MINOR EFL_VERSION_MINOR
    
    typedef struct _Ethumb_Version
      {
index 007c0ac..3dbe604 100644 (file)
@@ -2,8 +2,8 @@
 # error You shall not include this header directly
 #endif
 
-#define EVAS_VERSION_MAJOR 1
-#define EVAS_VERSION_MINOR 8
+#define EVAS_VERSION_MAJOR EFL_VERSION_MAJOR
+#define EVAS_VERSION_MINOR EFL_VERSION_MINOR
 
 typedef struct _Evas_Version
 {