Bump buildroot to version 2017-02
TG-3 #closed
This commit is contained in:
@@ -4,7 +4,6 @@ config BR2_PACKAGE_EFL
|
||||
depends on BR2_HOST_GCC_AT_LEAST_4_7
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_PACKAGE_HAS_UDEV # libudev
|
||||
depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS # luajit
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # untested without threads
|
||||
depends on BR2_USE_MMU
|
||||
@@ -14,12 +13,9 @@ config BR2_PACKAGE_EFL
|
||||
select BR2_PACKAGE_FREETYPE
|
||||
select BR2_PACKAGE_JPEG # Emile needs libjpeg
|
||||
select BR2_PACKAGE_LIBCURL # Ecore_con_url, runtime dependency
|
||||
select BR2_PACKAGE_LIBXKBCOMMON if BR2_PACKAGE_WAYLAND
|
||||
# https://phab.enlightenment.org/T2728
|
||||
select BR2_PACKAGE_LUAJIT # Lua support broken
|
||||
select BR2_PACKAGE_UTIL_LINUX
|
||||
# libblkid is part of required tools, see EFL's README.
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
|
||||
select BR2_PACKAGE_LZ4
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
Enlightenment Foundation Libraries
|
||||
@@ -40,6 +36,19 @@ config BR2_PACKAGE_EFL_BULLET
|
||||
simply not tested so you are on your own in terms of
|
||||
ensuring everything works if you do this.
|
||||
|
||||
config BR2_PACKAGE_EFL_EEZE
|
||||
bool "Enable eeze (udev) support (recommended)"
|
||||
depends on BR2_PACKAGE_HAS_UDEV # libudev
|
||||
default y
|
||||
help
|
||||
Eeze is EFL's hardware abstraction layer on top of udev.
|
||||
Having it off will disable some hardware detection, such as
|
||||
'drm' graphics engine or 'elput', as well as mounting
|
||||
removable media.
|
||||
|
||||
comment "eeze needs udev /dev management"
|
||||
depends on !BR2_PACKAGE_HAS_UDEV
|
||||
|
||||
config BR2_PACKAGE_EFL_FONTCONFIG
|
||||
bool "Enable fontconfig support (recommended)"
|
||||
select BR2_PACKAGE_FONTCONFIG
|
||||
@@ -101,16 +110,24 @@ config BR2_PACKAGE_EFL_PULSEAUDIO
|
||||
|
||||
config BR2_PACKAGE_EFL_UTIL_LINUX_LIBMOUNT
|
||||
bool "Enable libmount support (recommended)"
|
||||
depends on BR2_PACKAGE_EFL_EEZE
|
||||
select BR2_PACKAGE_UTIL_LINUX
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBMOUNT
|
||||
# libblkid is part of required tools, see EFL's README.
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
|
||||
default y
|
||||
help
|
||||
Libmount is used heavily inside Eeze for support of removable
|
||||
devices etc... and disabling this will hurt support for
|
||||
Enlightenment and its filemanager.
|
||||
|
||||
comment "efl's libmount support needs udev /dev management (eeze)"
|
||||
depends on !BR2_PACKAGE_EFL_EEZE
|
||||
|
||||
config BR2_PACKAGE_EFL_HAS_RECOMMENDED_CONFIG
|
||||
bool
|
||||
default y if BR2_PACKAGE_EFL_BULLET && \
|
||||
BR2_PACKAGE_EFL_EEZE && \
|
||||
BR2_PACKAGE_EFL_FONTCONFIG && \
|
||||
BR2_PACKAGE_EFL_GSTREAMER1 && \
|
||||
BR2_PACKAGE_EFL_LIBFRIBIDI && \
|
||||
@@ -155,6 +172,77 @@ config BR2_PACKAGE_EFL_X_XLIB
|
||||
select BR2_PACKAGE_XLIB_LIBXTST
|
||||
select BR2_PACKAGE_XPROTO_GLPROTO
|
||||
|
||||
config BR2_PACKAGE_EFL_WAYLAND
|
||||
bool "Wayland support"
|
||||
depends on BR2_PACKAGE_WAYLAND
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # Evas DRM Engine -> libdrm
|
||||
depends on BR2_PACKAGE_MESA3D_OPENGL_EGL # Evas DRM Engine
|
||||
depends on BR2_PACKAGE_EFL_EEZE # efl drm
|
||||
depends on BR2_PACKAGE_EFL_OPENGLES # OpenGL ES with EGL support only
|
||||
select BR2_PACKAGE_EFL_DRM
|
||||
|
||||
comment "Wayland support needs udev /dev management (eeze) and OpenGL ES w/ EGL, threads"
|
||||
depends on BR2_PACKAGE_WAYLAND
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_MESA3D_OPENGL_EGL \
|
||||
|| !BR2_PACKAGE_EFL_OPENGLES || !BR2_PACKAGE_EFL_EEZE
|
||||
|
||||
choice
|
||||
bool "OpenGL support"
|
||||
help
|
||||
libevas can be configured to use HW acceleration with OpenGL or
|
||||
OpenGL ES.
|
||||
|
||||
config BR2_PACKAGE_EFL_OPENGL
|
||||
bool "OpenGL"
|
||||
depends on BR2_PACKAGE_HAS_LIBGL
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_EFL_X_XLIB
|
||||
|
||||
comment "OpenGL support needs X11 and an OpenGL provider"
|
||||
depends on !BR2_PACKAGE_HAS_LIBGL || !BR2_PACKAGE_XORG7
|
||||
|
||||
config BR2_PACKAGE_EFL_OPENGLES
|
||||
bool "OpenGL ES (w/ EGL)"
|
||||
depends on BR2_PACKAGE_HAS_LIBEGL
|
||||
depends on BR2_PACKAGE_HAS_LIBGLES
|
||||
|
||||
comment "OpenGL ES support needs an OpenGL ES w/ EGL provider"
|
||||
depends on !BR2_PACKAGE_HAS_LIBGLES || !BR2_PACKAGE_HAS_LIBEGL
|
||||
|
||||
config BR2_PACKAGE_EFL_OPENGL_NONE
|
||||
bool "none"
|
||||
|
||||
endchoice # OpenGL support
|
||||
|
||||
config BR2_PACKAGE_EFL_ELPUT
|
||||
bool "Elput"
|
||||
depends on BR2_PACKAGE_EFL_EEZE
|
||||
select BR2_PACKAGE_LIBINPUT
|
||||
select BR2_PACKAGE_LIBXKBCOMMON
|
||||
help
|
||||
The elput library is an efl abstraction for the libinput library
|
||||
which can be used by various other subsystems (ecore_fb,
|
||||
ecore_drm, etc) to handle interfacing with libinput without
|
||||
having to duplicate the code in each subsystem.
|
||||
|
||||
comment "Elput support needs udev /dev management (eeze)"
|
||||
depends on !BR2_PACKAGE_EFL_EEZE
|
||||
|
||||
config BR2_PACKAGE_EFL_DRM
|
||||
bool "Evas DRM Engine"
|
||||
depends on BR2_PACKAGE_EFL_EEZE
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libdrm
|
||||
depends on BR2_PACKAGE_MESA3D_OPENGL_EGL # require libgbm from mesa3d
|
||||
select BR2_PACKAGE_EFL_ELPUT
|
||||
select BR2_PACKAGE_LIBDRM
|
||||
select BR2_PACKAGE_LIBXKBCOMMON
|
||||
help
|
||||
This option enable building support for the Evas DRM Engine.
|
||||
|
||||
comment "Evas DRM Engine needs udev /dev management (eeze) and mesa3d w/ EGL support, threads"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_MESA3D_OPENGL_EGL \
|
||||
|| !BR2_PACKAGE_EFL_EEZE
|
||||
|
||||
comment "libevas loaders"
|
||||
|
||||
config BR2_PACKAGE_EFL_PNG
|
||||
@@ -199,10 +287,24 @@ config BR2_PACKAGE_EFL_WEBP
|
||||
help
|
||||
This enables the loader code that loads images using WebP.
|
||||
|
||||
config BR2_PACKAGE_EFL_LIBRAW
|
||||
bool "libraw loader"
|
||||
select BR2_PACKAGE_LIBRAW
|
||||
help
|
||||
This option enables the Evas generic Libraw loader
|
||||
|
||||
config BR2_PACKAGE_EFL_SVG
|
||||
bool "SVG loader"
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # librsvg -> pango -> harfbuzz
|
||||
select BR2_PACKAGE_LIBRSVG
|
||||
select BR2_PACKAGE_CAIRO
|
||||
help
|
||||
This option enables the Evas generic SVG loader
|
||||
|
||||
endif # BR2_PACKAGE_EFL
|
||||
|
||||
comment "efl needs udev /dev management and a toolchain w/ C++, dynamic library, gcc >= 4.7, threads, wchar"
|
||||
depends on !BR2_PACKAGE_HAS_UDEV || !BR2_INSTALL_LIBSTDCPP \
|
||||
comment "efl needs a toolchain w/ C++, dynamic library, gcc >= 4.7, threads, wchar"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP \
|
||||
|| !BR2_HOST_GCC_AT_LEAST_4_7 || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 \
|
||||
|| BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
||||
depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
# From https://download.enlightenment.org/rel/libs/efl/efl-1.17.2.tar.xz.sha256
|
||||
sha256 9aa93ff0ab4bdf95d5cf9606bd7efece611691ca22eb6fc3484fe6e7a92bf8b6 efl-1.17.2.tar.xz
|
||||
# From https://download.enlightenment.org/rel/libs/efl/efl-1.18.4.tar.xz.sha256
|
||||
sha256 39ebc07e37437d6ecdeb0f645783484e28a882b38f7e619ad12c2bf9b5548025 efl-1.18.4.tar.xz
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EFL_VERSION = 1.17.2
|
||||
EFL_VERSION = 1.18.4
|
||||
EFL_SOURCE = efl-$(EFL_VERSION).tar.xz
|
||||
EFL_SITE = http://download.enlightenment.org/rel/libs/efl
|
||||
EFL_LICENSE = BSD-2c, LGPLv2.1+, GPLv2+
|
||||
@@ -20,21 +20,32 @@ EFL_LICENSE_FILES = \
|
||||
EFL_INSTALL_STAGING = YES
|
||||
|
||||
EFL_DEPENDENCIES = host-pkgconf host-efl host-luajit dbus freetype \
|
||||
jpeg luajit udev util-linux zlib
|
||||
jpeg luajit lz4 zlib
|
||||
|
||||
# Configure options:
|
||||
# --disable-lua-old: build elua for the target.
|
||||
# --disable-poppler: disable poppler image loader.
|
||||
# --disable-sdl: disable sdl2 support.
|
||||
# --disable-spectre: disable spectre image loader.
|
||||
# --disable-xinput22: disable X11 XInput v2.2+ support.
|
||||
# --with-opengl=none: disable opengl support.
|
||||
# --enable-liblz4: use liblz4 from lz4 package.
|
||||
# --with-doxygen: disable doxygen documentation
|
||||
EFL_CONF_OPTS = \
|
||||
--with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc \
|
||||
--with-eet-eet=$(HOST_DIR)/usr/bin/eet \
|
||||
--with-eldbus_codegen=$(HOST_DIR)/usr/bin/eldbus-codegen \
|
||||
--with-elementary-codegen=$(HOST_DIR)/usr/bin/elementary_codegen \
|
||||
--with-elm-prefs-cc=$(HOST_DIR)/usr/bin/elm_prefs_cc \
|
||||
--with-elua=$(HOST_DIR)/usr/bin/elua \
|
||||
--with-eolian-gen=$(HOST_DIR)/usr/bin/eolian_gen \
|
||||
--disable-lua-old \
|
||||
--disable-poppler \
|
||||
--disable-sdl \
|
||||
--disable-spectre \
|
||||
--disable-xinput22 \
|
||||
--with-opengl=none
|
||||
--disable-wayland \
|
||||
--enable-liblz4 \
|
||||
--with-doxygen=no
|
||||
|
||||
# Disable untested configuration warning.
|
||||
ifeq ($(BR2_PACKAGE_EFL_HAS_RECOMMENDED_CONFIG),)
|
||||
@@ -48,7 +59,14 @@ else
|
||||
EFL_CONF_OPTS += --disable-cxx-bindings
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBMOUNT),y)
|
||||
ifeq ($(BR2_PACKAGE_EFL_EEZE),y)
|
||||
EFL_DEPENDENCIES += udev
|
||||
EFL_CONF_OPTS += --enable-libeeze
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-libeeze
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_UTIL_LINUX_LIBMOUNT),y)
|
||||
EFL_DEPENDENCIES += util-linux
|
||||
EFL_CONF_OPTS += --enable-libmount
|
||||
else
|
||||
@@ -137,11 +155,11 @@ else
|
||||
EFL_CONF_OPTS += --with-crypto=none
|
||||
endif # BR2_PACKAGE_OPENSSL
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WAYLAND),y)
|
||||
EFL_DEPENDENCIES += wayland libxkbcommon
|
||||
EFL_CONF_OPTS += --enable-wayland
|
||||
ifeq ($(BR2_PACKAGE_EFL_ELPUT),y)
|
||||
EFL_CONF_OPTS += --enable-elput
|
||||
EFL_DEPENDENCIES += libinput
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-wayland
|
||||
EFL_CONF_OPTS += --disable-elput
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_FB),y)
|
||||
@@ -172,6 +190,36 @@ else
|
||||
EFL_CONF_OPTS += --with-x11=none
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_OPENGL),y)
|
||||
EFL_CONF_OPTS += --with-opengl=full
|
||||
EFL_DEPENDENCIES += libgl
|
||||
# OpenGL ES requires EGL
|
||||
else ifeq ($(BR2_PACKAGE_EFL_OPENGLES),y)
|
||||
EFL_CONF_OPTS += --with-opengl=es --enable-egl
|
||||
EFL_DEPENDENCIES += libegl libgles
|
||||
else ifeq ($(BR2_PACKAGE_EFL_OPENGL_NONE),y)
|
||||
EFL_CONF_OPTS += --with-opengl=none
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_DRM),y)
|
||||
EFL_CONF_OPTS += --enable-drm
|
||||
EFL_DEPENDENCIES += libdrm libegl mesa3d
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-drm
|
||||
endif
|
||||
|
||||
# The EFL Wayland support requires Evas GLES DRM engine support
|
||||
# which depends on wayland-client to build.
|
||||
# So enable gl_drm only when wayland support is selected.
|
||||
ifeq ($(BR2_PACKAGE_EFL_WAYLAND),y)
|
||||
EFL_DEPENDENCIES += wayland
|
||||
EFL_CONF_OPTS += --enable-wayland --enable-gl-drm
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-wayland --disable-gl-drm
|
||||
endif
|
||||
|
||||
EFL_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBXKBCOMMON),libxkbcommon)
|
||||
|
||||
# Loaders that need external dependencies needs to be --enable-XXX=yes
|
||||
# otherwise the default is '=static'.
|
||||
# All other loaders are statically built-in
|
||||
@@ -217,6 +265,32 @@ else
|
||||
EFL_CONF_OPTS += --disable-image-loader-webp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_LIBRAW),y)
|
||||
EFL_DEPENDENCIES += libraw
|
||||
EFL_CONF_OPTS += --enable-libraw
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-libraw
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_SVG),y)
|
||||
EFL_DEPENDENCIES += librsvg cairo
|
||||
EFL_CONF_OPTS += --enable-librsvg
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-librsvg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UPOWER),)
|
||||
# upower ecore system module is only useful if upower
|
||||
# dbus service is available.
|
||||
# It's not essential, only used to notify applications
|
||||
# of power state, such as low battery or AC power, so
|
||||
# they can adapt their power consumption.
|
||||
define EFL_HOOK_REMOVE_UPOWER
|
||||
rm -fr $(TARGET_DIR)/usr/lib/ecore/system/upower
|
||||
endef
|
||||
EFL_POST_INSTALL_TARGET_HOOKS = EFL_HOOK_REMOVE_UPOWER
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
################################################################################
|
||||
@@ -254,9 +328,12 @@ HOST_EFL_DEPENDENCIES = \
|
||||
# --disable-libmount: remove dependency on host-util-linux libmount.
|
||||
# --disable-lua-old: build elua for the host.
|
||||
# --disable-physics: remove Bullet dependency.
|
||||
# --disable-poppler: disable poppler image loader.
|
||||
# --disable-spectre: disable spectre image loader.
|
||||
# --enable-image-loader-gif=no: disable Gif dependency.
|
||||
# --enable-image-loader-tiff=no: disable Tiff dependency.
|
||||
# --with-crypto=none: remove dependencies on openssl or gnutls.
|
||||
# --with-doxygen: disable doxygen documentation
|
||||
# --with-x11=none: remove dependency on X.org.
|
||||
# Yes I really know what I am doing.
|
||||
HOST_EFL_CONF_OPTS += \
|
||||
@@ -266,14 +343,20 @@ HOST_EFL_CONF_OPTS += \
|
||||
--disable-gstreamer1 \
|
||||
--disable-libeeze \
|
||||
--disable-libmount \
|
||||
--disable-libraw \
|
||||
--disable-librsvg \
|
||||
--disable-lua-old \
|
||||
--disable-multisense \
|
||||
--disable-physics \
|
||||
--disable-poppler \
|
||||
--disable-spectre \
|
||||
--disable-xcf \
|
||||
--enable-image-loader-gif=no \
|
||||
--enable-image-loader-jpeg=yes \
|
||||
--enable-image-loader-png=yes \
|
||||
--enable-image-loader-tiff=no \
|
||||
--with-crypto=none \
|
||||
--with-doxygen=no \
|
||||
--with-glib=yes \
|
||||
--with-opengl=none \
|
||||
--with-x11=none \
|
||||
@@ -288,4 +371,13 @@ else
|
||||
HOST_EFL_CONF_OPTS += --disable-cxx-bindings
|
||||
endif
|
||||
|
||||
# Always disable upower system module from host as it's
|
||||
# not useful and would try to use the output/host/var
|
||||
# system bus which is non-existent and does not contain
|
||||
# any upower service in it.
|
||||
define HOST_EFL_HOOK_REMOVE_UPOWER
|
||||
rm -fr $(HOST_DIR)/usr/lib/ecore/system/upower
|
||||
endef
|
||||
HOST_EFL_POST_INSTALL_HOOKS = HOST_EFL_HOOK_REMOVE_UPOWER
|
||||
|
||||
$(eval $(host-autotools-package))
|
||||
|
||||
Reference in New Issue
Block a user