elementary: upgrade to 1.8.4

* Elementary 1.8.3 release
  http://sourceforge.net/mailarchive/message.php?msg_id=31826305
* Elementary 1.8.4 release
  http://sourceforge.net/mailarchive/message.php?msg_id=31895179
* introduce elementary-native for elm-prefs_cc and elementary_codegen
  binary

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
Martin Jansa
2014-01-31 21:14:29 +01:00
parent 5870add0ca
commit 5c5bdbca17
4 changed files with 93 additions and 19 deletions
+20 -11
View File
@@ -1,20 +1,26 @@
DESCRIPTION = "EFL based widget set for mobile devices"
LICENSE = "LGPLv2.1"
LIC_FILES_CHKSUM = "file://COPYING;md5=10a051c72424b80bc784a3903651b43b"
DEPENDS = "eet-native efreet evas ecore edje eet edbus ethumb poppler eio"
LIC_FILES_CHKSUM = "file://COPYING;md5=ae1a906a61040d01df137a6b2c6acb68"
DEPENDS = "eet-native edje-native elementary-native efreet evas ecore edje eet eldbus ethumb poppler eio"
DEPENDS_class-native = "efl-native"
inherit efl gettext
EXTRA_OECONF = "\
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
--disable-web \
"
EXTRA_OECONF_append_class-target = "\
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
--with-elementary-codegen=${STAGING_BINDIR_NATIVE}/elementary_codegen \
--with-elm-prefs-cc=${STAGING_BINDIR_NATIVE}/elm_prefs_cc \
"
BBCLASSEXTEND = "native"
PACKAGECONFIG ??= ""
PACKAGECONFIG[eweather] = "--enable-eweather,--disable-eweather,libeweather"
do_compile_append() {
do_compile_append_class-target() {
sed -i -e s:${STAGING_DIR_TARGET}::g \
-e s:/${TARGET_SYS}::g \
elementary.pc
@@ -22,6 +28,8 @@ do_compile_append() {
PACKAGES += "${PN}-configs ${PN}-accessibility"
RDEPENDS_${PN}_class-native = ""
RDEPENDS_${PN} = "\
${PN}-themes \
${PN}-configs \
@@ -31,10 +39,14 @@ RSUGGESTS_${PN} = "${PN}-tests ${PN}-accessibility"
FILES_${PN} += "\
${libdir}/edje/modules/elm \
${libdir}/elementary/modules/datetime_input_ctxpopup/*/module.so \
${libdir}/elementary/modules/prefs/*/module.so \
${libdir}/elementary/modules/prefs/*/*.edj \
"
FILES_${PN}-dev += "\
${libdir}/elementary/modules/datetime_input_ctxpopup/*/module.la \
${bindir}/elm_prefs_cc \
${libdir}/elementary/modules/*/*/module.la \
${libdir}/cmake \
"
FILES_${PN}-themes = "\
@@ -46,10 +58,7 @@ FILES_${PN}-configs = "\
"
FILES_${PN}-dbg += "\
${libdir}/elementary/modules/test_entry/*/.debug \
${libdir}/elementary/modules/test_map/*/.debug \
${libdir}/elementary/modules/access_output/*/.debug \
${libdir}/elementary/modules/datetime_input_ctxpopup/*/.debug \
${libdir}/elementary/modules/*/*/.debug \
${libdir}/edje/modules/elm/*/.debug \
"
@@ -0,0 +1,61 @@
From 53c7046933d1b622a7f99e70a08a0bf46e38369f Mon Sep 17 00:00:00 2001
From: Martin Jansa <Martin.Jansa@gmail.com>
Date: Sat, 11 Jan 2014 12:55:59 +0100
Subject: [PATCH] Makefile: Use elm_prefs_cc and elementary_codegen defined in
configure
* using binaries from top_buildir doesn't work when cross-compiling elementary
where we need to pass native binaries in configure params
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
data/objects/Makefile.am | 2 +-
doc/widgets/Makefile.am | 2 +-
src/examples/Makefile.am | 4 ++--
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/data/objects/Makefile.am b/data/objects/Makefile.am
index c6a775d..88c4f1a 100644
--- a/data/objects/Makefile.am
+++ b/data/objects/Makefile.am
@@ -11,7 +11,7 @@ filesdir = $(datadir)/elementary/objects
files_DATA = test.edj test_external.edj multip.edj cursors.edj font_preview.edj postit_ent.edj multibuttonentry.edj test_prefs.edj test_prefs.epb test_focus_custom.edj
-ELM_PREFS_CC = $(top_builddir)/src/bin/@ELM_PREFS_CC_PRG@
+ELM_PREFS_CC = @elm_prefs_cc@
EXTRA_DIST = \
test.edc \
diff --git a/doc/widgets/Makefile.am b/doc/widgets/Makefile.am
index c1508b8..c0544f9 100644
--- a/doc/widgets/Makefile.am
+++ b/doc/widgets/Makefile.am
@@ -19,7 +19,7 @@ AM_CPPFLAGS = \
@ELEMENTARY_EWEATHER_CFLAGS@ \
@ELEMENTARY_EMAP_CFLAGS@
-ELM_PREFS_CC = $(top_builddir)/src/bin/@ELM_PREFS_CC_PRG@
+ELM_PREFS_CC = @elm_prefs_cc@
noinst_DATA = widget_preview_prefs.epb
diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am
index 7184ca1..ce80a46 100644
--- a/src/examples/Makefile.am
+++ b/src/examples/Makefile.am
@@ -33,9 +33,9 @@ EDJE_FLAGS_VERBOSE_0 =
EDJE_FLAGS_VERBOSE_1 = -v
EDJE_FLAGS = $(EDJE_FLAGS_VERBOSE_$(V))
-ELM_PREFS_CC = $(top_builddir)/src/bin/@ELM_PREFS_CC_PRG@
+ELM_PREFS_CC = @elm_prefs_cc@
-ELEMENTARY_CODEGEN = $(top_builddir)/src/bin/@ELEMENTARY_CODEGEN_PRG@
+ELEMENTARY_CODEGEN = @elementary_codegen@
ELEMENTARY_CODEGEN_FLAGS = --prefix=codegen_example
SRCS = \
--
1.8.5.2
@@ -1,8 +0,0 @@
require ${BPN}.inc
SRC_URI = "\
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
"
SRC_URI[md5sum] = "6a3acb394b640697b1fd2dd61d990d0b"
SRC_URI[sha256sum] = "3667c6da3d89be5a46363509645be59e3deb1f052bfa14239986ac9499da52fb"
@@ -0,0 +1,12 @@
require ${BPN}.inc
SRC_URI = "\
${E_RELEASES}/libs/${SRCNAME}/${SRCNAME}-${SRCVER}.tar.gz \
"
# only for target, because configure doesn't default to sane default when
# these paths aren't passed in -native build
SRC_URI_append_class-target = " file://0001-Makefile-Use-elm_prefs_cc-and-elementary_codegen-def.patch"
SRC_URI[md5sum] = "898d0ee0e18078640948fa5d04d56efe"
SRC_URI[sha256sum] = "129b8a015c34df3e8633b5b65aa3bcdd77ed101992948cb096389fed3f3a4244"