mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
503191773e
* it was removed from oe-core http://git.openembedded.org/openembedded-core/commit/?id=5b3748d463a6666c0d8e2624092619da8d8e6328 * it needs to be explicitly disabled now, because recipe was removed in oe-core, but files still stay in sysroot and we cannot even cleansstate it now without recipes around. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
100 lines
2.7 KiB
PHP
100 lines
2.7 KiB
PHP
DESCRIPTION = "Ecore is the Enlightenment application framework library"
|
|
LICENSE = "MIT BSD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d6ff2c3c85de2faf5fd7dcd9ccfc8886"
|
|
DEPENDS = "virtual/libiconv tslib curl eet evas glib-2.0 gnutls \
|
|
libxtst libxcomposite libxinerama libxscrnsaver libxdamage libxrandr libxcursor"
|
|
DEPENDS_virtclass-native = "eet-native evas-native gettext-native"
|
|
# optional
|
|
# DEPENDS += "directfb virtual/libsdl openssl virtual/libiconv"
|
|
|
|
inherit efl gettext
|
|
|
|
BBCLASSEXTEND = "native"
|
|
INC_PR = "r1"
|
|
|
|
do_configure_prepend() {
|
|
touch ${S}/po/Makefile.in.in || true
|
|
sed -i -e 's: po::g' ${S}/Makefile.am
|
|
}
|
|
|
|
FILESPATHPKG =. "${BPN}-${PV}:${BPN}:"
|
|
|
|
PACKAGES =+ "\
|
|
${PN}-con \
|
|
${PN}-config \
|
|
${PN}-desktop \
|
|
${PN}-directfb \
|
|
${PN}-sdl \
|
|
${PN}-evas \
|
|
${PN}-fb \
|
|
${PN}-file \
|
|
${PN}-imf-evas \
|
|
${PN}-imf \
|
|
${PN}-ipc \
|
|
${PN}-job \
|
|
${PN}-txt \
|
|
${PN}-x \
|
|
${PN}-input \
|
|
"
|
|
# Some upgrade path tweaking
|
|
AUTO_LIBNAME_PKGS = ""
|
|
|
|
FILES_${PN} = "${libdir}/libecore*.so.* \
|
|
${bindir} \
|
|
"
|
|
FILES_${PN}-con = "${libdir}/libecore_con*.so.*"
|
|
FILES_${PN}-config = "${libdir}/libecore_config*.so.*"
|
|
FILES_${PN}-desktop = "${libdir}/libecore_desktop*.so.*"
|
|
FILES_${PN}-directfb = "${libdir}/libecore_directfb*.so.*"
|
|
FILES_${PN}-sdl = "${libdir}/libecore_sdl*.so.*"
|
|
FILES_${PN}-evas = "${libdir}/libecore_evas*.so.*"
|
|
FILES_${PN}-fb = "${libdir}/libecore_fb*.so.*"
|
|
FILES_${PN}-file = "${libdir}/libecore_file*.so.*"
|
|
FILES_${PN}-imf = "${libdir}/libecore_imf*.so.* \
|
|
${libdir}/ecore/immodules/*.so \
|
|
"
|
|
FILES_${PN}-imf-evas = "${libdir}/libecore_imf_evas*.so.*"
|
|
FILES_${PN}-ipc = "${libdir}/libecore_ipc*.so.*"
|
|
FILES_${PN}-job = "${libdir}/libecore_job*.so.*"
|
|
FILES_${PN}-txt = "${libdir}/libecore_txt*.so.*"
|
|
FILES_${PN}-x = "${libdir}/libecore_x*.so.*"
|
|
FILES_${PN}-input = "${libdir}/libecore_input*.so.*"
|
|
|
|
ECORE_OECONF = "\
|
|
--x-includes=${STAGING_INCDIR}/X11 \
|
|
--x-libraries=${STAGING_LIBDIR} \
|
|
--enable-simple-x11 \
|
|
--enable-ecore-config \
|
|
--enable-ecore-x \
|
|
--enable-ecore-job \
|
|
--enable-ecore-fb \
|
|
--enable-ecore-evas \
|
|
--enable-ecore-evas-software-16-x11 \
|
|
--enable-ecore-evas-xrender \
|
|
--enable-abstract-sockets \
|
|
--enable-ecore-con \
|
|
--enable-ecore-ipc \
|
|
--enable-ecore-file \
|
|
--enable-inotify \
|
|
--disable-ecore-desktop \
|
|
--disable-ecore-x-xcb \
|
|
--disable-ecore-x-xprint \
|
|
--disable-ecore-directfb \
|
|
--disable-ecore-sdl \
|
|
--enable-ecore-evas-opengl-x11 \
|
|
--disable-ecore-evas-dfb \
|
|
--disable-ecore-evas-sdl \
|
|
--disable-openssl \
|
|
--disable-poll \
|
|
--enable-xim \
|
|
"
|
|
|
|
EXTRA_OECONF = "${ECORE_OECONF} \
|
|
--enable-curl \
|
|
"
|
|
|
|
EXTRA_OECONF_virtclass-native = "\
|
|
${ECORE_OECONF} \
|
|
--disable-curl \
|
|
"
|