6deaa3d50d
- Remove upstream patch [1]. - Switch to meson build system. - The cryptography backend is now mandatory, use openssl for the host and use openssl by default for the target if gnutls is not selected. - Add host-giflib since the dependency can't be disabled anymore. (even by adding gif in HOST_EFL_EVAS_LOADERS_DISABLER). - Disable explicitely meson build options that was not previously handled (avahi, emotion, ecore-imf-loarders...) - Elput support is now enabled through drm meson option [2], remove BR2_PACKAGE_EFL_ELPUT. - Update license file hash (csharp licensing information, cxx bindings licensing) - Add COPYING.images and licenses/COPYING.ASL license file. - The evas png loader is now mandatory [3] (even by adding png in EFL_EVAS_LOADERS_DISABLER). - Same for the evas gif loader [4]. - Backport an upstream patch to fix the evas build with -Dwl=false. - Update indentation of hash file (two spaces) See: https://www.enlightenment.org/news/efl-1.23.0 https://www.enlightenment.org/news/efl-1.23.1 https://www.enlightenment.org/news/efl-1.23.2 [1] https://git.enlightenment.org/core/efl.git/commit/?id=c46a8143916f0d3f66bbdffc7107c97c88df212d [2] https://git.enlightenment.org/core/efl.git/tree/meson.build?h=v1.23.3#n297 [3] https://git.enlightenment.org/core/efl.git/tree/src/modules/evas/meson.build?h=v1.23.3#n2 [4] https://git.enlightenment.org/core/efl.git/tree/src/modules/evas/meson.build?h=v1.23.3#n4 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
config BR2_PACKAGE_ENLIGHTENMENT
|
|
bool "enlightenment"
|
|
# libevas-generic-loaders-svg -> librsvg -> glib2 / pango
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
# libedbus -> dbus
|
|
# libedbus -> glib2, libevas
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# libedbus -> dbus, efl libraries
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_EFL
|
|
depends on BR2_PACKAGE_HAS_UDEV # efl (eeze) -> libudev
|
|
depends on BR2_PACKAGE_XORG7
|
|
# libevas-generic-loaders-svg -> librsvg -> pango -> harfbuzz
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
select BR2_PACKAGE_EFL_X_XLIB
|
|
select BR2_PACKAGE_EFL_EEZE
|
|
select BR2_PACKAGE_EFL_JPEG # needed at runtime by enlightenment_start
|
|
select BR2_PACKAGE_EFL_SVG
|
|
select BR2_PACKAGE_XCB_UTIL_KEYSYMS
|
|
help
|
|
Enlightenment, also known simply as E, is a stacking window
|
|
manager for the X Window System which can be used alone or
|
|
in conjunction with a desktop environment such as GNOME or
|
|
KDE. Enlightenment can be used as a substitute for a full
|
|
desktop environment.
|
|
|
|
http://www.enlightenment.org/
|
|
|
|
comment "enlightenment needs udev /dev management and a toolchain w/ wchar, C++, threads, gcc >= 4.8"
|
|
depends on BR2_PACKAGE_EFL && BR2_PACKAGE_XORG7 && BR2_USE_MMU
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || \
|
|
!BR2_PACKAGE_HAS_UDEV
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|