mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 20:21:58 +02:00
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Khem Raj <raj.khem@gmail.com> Siged-off-by: Koen Kooi <koen@dominion.truhere.net>
57 lines
1.6 KiB
PHP
57 lines
1.6 KiB
PHP
DESCRIPTION = "Edje is the Enlightenment graphical design & layout library"
|
|
DEPENDS = "lua5.1 eet evas ecore embryo edje-native"
|
|
DEPENDS_virtclass-native = "lua5.1-native evas-native ecore-native eet-native embryo-native"
|
|
DEPENDS_virtclass-nativesdk = "evas-native ecore-native eet-native embryo-native"
|
|
LICENSE = "MIT BSD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=1f2d83425ec8dfae5cd77f8ce52e872c"
|
|
|
|
inherit efl
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
INC_PR = "r0"
|
|
|
|
do_configure_prepend_virtclass-native() {
|
|
sed -i 's:EMBRYO_PREFIX"/bin:"${STAGING_BINDIR}:' ${S}/src/bin/edje_cc_out.c
|
|
sed -i 's: cpp -I: /usr/bin/cpp -I:' ${S}/src/bin/edje_cc_parse.c
|
|
sed -i 's:\"gcc -I:\"/usr/bin/gcc -I:' ${S}/src/bin/edje_cc_parse.c
|
|
}
|
|
# The new lua stuff is a bit broken...
|
|
do_configure_append() {
|
|
for i in $(find "${S}" -name "Makefile") ; do
|
|
sed -i -e 's:-L/usr/local/lib::g' $i
|
|
done
|
|
}
|
|
|
|
do_compile_append() {
|
|
sed -i -e s:local/::g -e 's:-L${STAGING_LIBDIR}::g' ${S}/edje.pc
|
|
}
|
|
|
|
# gain some extra performance at the expense of RAM - generally i'd say bad
|
|
# and a possible source of bugs
|
|
#EXTRA_OECONF = "--enable-edje-program-cache"
|
|
|
|
# Since r44323 edje has a fixed-point mode
|
|
require edje-fpu.inc
|
|
EXTRA_OECONF += "${@get_edje_fpu_setting(bb, d)}"
|
|
|
|
PACKAGES =+ "${PN}-utils"
|
|
RDEPENDS_${PN}-utils = "cpp cpp-symlinks embryo-tests"
|
|
|
|
RRECOMMENDS_${PN}-utils = "\
|
|
evas-saver-png \
|
|
evas-saver-jpeg \
|
|
evas-saver-eet \
|
|
"
|
|
|
|
DEBIAN_NOAUTONAME_${PN}-utils = "1"
|
|
# Some upgrade path tweaking
|
|
AUTO_LIBNAME_PKGS = ""
|
|
|
|
RREPLACES_${PN} = "libedje-ver-pre-svn-00-0 libedje-ver-pre-svn-01-0"
|
|
|
|
FILES_${PN}-utils = "\
|
|
${bindir}/edje_* \
|
|
${bindir}/inkscape2edc \
|
|
${datadir}/edje/include/edje.inc \
|
|
"
|