Move all to deprecated folder.
This commit is contained in:
191
deprecated/firmware/buildroot/package/efl/Config.in
Normal file
191
deprecated/firmware/buildroot/package/efl/Config.in
Normal file
@@ -0,0 +1,191 @@
|
||||
config BR2_PACKAGE_EFL
|
||||
bool "efl"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_PACKAGE_HAS_UDEV # libudev
|
||||
# https://phab.enlightenment.org/T2728
|
||||
depends on BR2_PACKAGE_LUA_5_1 # needs lua 5.1, broken with 5.2+
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # untested without threads
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_USE_WCHAR # use wchar_t
|
||||
depends on !BR2_STATIC_LIBS # dlfcn.h
|
||||
select BR2_PACKAGE_DBUS
|
||||
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
|
||||
select BR2_PACKAGE_UTIL_LINUX
|
||||
# libblkid is part of required tools, see EFL's README.
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBBLKID
|
||||
help
|
||||
Enlightenment Foundation Libraries
|
||||
|
||||
https://enlightenment.org
|
||||
|
||||
if BR2_PACKAGE_EFL
|
||||
|
||||
config BR2_PACKAGE_EFL_BULLET
|
||||
bool "Enable bullet support (recommended)"
|
||||
select BR2_PACKAGE_BULLET
|
||||
default y
|
||||
help
|
||||
If you have chosen to disable physics support, this disables
|
||||
lots of core functionality and is effectively never
|
||||
tested. You are going to find features that suddenly don't
|
||||
work and as a result cause a series of breakages. This is
|
||||
simply not tested so you are on your own in terms of
|
||||
ensuring everything works if you do this.
|
||||
|
||||
config BR2_PACKAGE_EFL_FONTCONFIG
|
||||
bool "Enable fontconfig support (recommended)"
|
||||
select BR2_PACKAGE_FONTCONFIG
|
||||
default y
|
||||
help
|
||||
If fontconfig is disabled, this is going to make general
|
||||
font searching not work, and only some very direct 'load
|
||||
/path/file.ttf' will work alongside some old-school ttf file
|
||||
path searching. This is very likely not what you want, so
|
||||
highly reconsider turning fontconfig off. Having it off will
|
||||
lead to visual problems like missing text in many UI areas
|
||||
etc...
|
||||
|
||||
config BR2_PACKAGE_EFL_GSTREAMER1
|
||||
bool "Enable gstreamer1 support (recommended)"
|
||||
select BR2_PACKAGE_GSTREAMER1
|
||||
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
||||
default y
|
||||
help
|
||||
If Gstreamer 1.x support is disabled, it will heavily limit
|
||||
your media support options and render some functionality as
|
||||
useless, leading to visible application bugs.
|
||||
|
||||
config BR2_PACKAGE_EFL_LIBFRIBIDI
|
||||
bool "Enable libfribidi support (recommended)"
|
||||
select BR2_PACKAGE_LIBFRIBIDI
|
||||
default y
|
||||
help
|
||||
Fribidi is used for handling right-to-left text (like
|
||||
Arabic, Hebrew, Farsi, Persian etc.) and is very likely not
|
||||
a feature you want to disable unless you know for absolute
|
||||
certain you will never encounter and have to display such
|
||||
scripts. Also note that we don't test with fribidi disabled
|
||||
so you may also trigger code paths with bugs that are never
|
||||
normally used.
|
||||
|
||||
config BR2_PACKAGE_EFL_LIBSNDFILE
|
||||
bool "Enable libsndfile support (recommended)"
|
||||
select BR2_PACKAGE_LIBSNDFILE
|
||||
default y
|
||||
help
|
||||
If you disabled audio support in Ecore, this is not tested
|
||||
and may create bugs for you due to it creating untested code
|
||||
paths. Reconsider disabling audio.
|
||||
|
||||
config BR2_PACKAGE_EFL_PULSEAUDIO
|
||||
bool "Enable pulseaudio support (recommended)"
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pulseaudio -> json-c
|
||||
select BR2_PACKAGE_PULSEAUDIO
|
||||
default y
|
||||
help
|
||||
The only audio output method supported by Ecore right now is
|
||||
via Pulseaudio. You have disabled that and likely have
|
||||
broken a whole bunch of things in the process. Reconsider
|
||||
your configure options.
|
||||
|
||||
NOTE: multisense support is automatically enabled with
|
||||
pulseaudio.
|
||||
|
||||
config BR2_PACKAGE_EFL_UTIL_LINUX_LIBMOUNT
|
||||
bool "Enable libmount support (recommended)"
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBMOUNT
|
||||
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.
|
||||
|
||||
config BR2_PACKAGE_EFL_HAS_RECOMMENDED_CONFIG
|
||||
bool
|
||||
default y if BR2_PACKAGE_EFL_BULLET && \
|
||||
BR2_PACKAGE_EFL_FONTCONFIG && \
|
||||
BR2_PACKAGE_EFL_GSTREAMER1 && \
|
||||
BR2_PACKAGE_EFL_LIBFRIBIDI && \
|
||||
BR2_PACKAGE_EFL_LIBSNDFILE && \
|
||||
BR2_PACKAGE_EFL_PULSEAUDIO && \
|
||||
BR2_PACKAGE_EFL_UTIL_LINUX_LIBMOUNT
|
||||
|
||||
|
||||
comment "Warning: one of the recommended option for EFL is not enabled"
|
||||
depends on !BR2_PACKAGE_EFL_HAS_RECOMMENDED_CONFIG
|
||||
|
||||
comment "libecore video support"
|
||||
|
||||
config BR2_PACKAGE_EFL_FB
|
||||
bool "FB support"
|
||||
|
||||
config BR2_PACKAGE_EFL_X_XLIB
|
||||
bool "X11 support (xlib)"
|
||||
depends on BR2_PACKAGE_XORG7
|
||||
select BR2_PACKAGE_XLIB_LIBX11
|
||||
select BR2_PACKAGE_XLIB_LIBXEXT
|
||||
select BR2_PACKAGE_XLIB_LIBXCOMPOSITE
|
||||
select BR2_PACKAGE_XLIB_LIBXCURSOR
|
||||
select BR2_PACKAGE_XLIB_LIBXDAMAGE
|
||||
select BR2_PACKAGE_XLIB_LIBXINERAMA
|
||||
select BR2_PACKAGE_XLIB_LIBXP
|
||||
select BR2_PACKAGE_XLIB_LIBXRANDR
|
||||
select BR2_PACKAGE_XLIB_LIBXRENDER
|
||||
select BR2_PACKAGE_XLIB_LIBXSCRNSAVER
|
||||
select BR2_PACKAGE_XLIB_LIBXTST
|
||||
select BR2_PACKAGE_XPROTO_GLPROTO
|
||||
|
||||
comment "libevas loaders"
|
||||
|
||||
config BR2_PACKAGE_EFL_PNG
|
||||
bool "libevas png loader"
|
||||
select BR2_PACKAGE_LIBPNG
|
||||
help
|
||||
This enables the loader code that loads png files using
|
||||
libpng.
|
||||
|
||||
config BR2_PACKAGE_EFL_JP2K
|
||||
bool "libevas jp2k loader"
|
||||
select BR2_PACKAGE_OPENJPEG
|
||||
help
|
||||
This enables the loader code that loads jp2k files using
|
||||
openjpeg.
|
||||
|
||||
config BR2_PACKAGE_EFL_JPEG
|
||||
bool "libevas jpeg loader"
|
||||
help
|
||||
This enables the loader code that loads jpeg files using
|
||||
libjpeg.
|
||||
|
||||
config BR2_PACKAGE_EFL_GIF
|
||||
bool "libevas gif loader"
|
||||
select BR2_PACKAGE_GIFLIB
|
||||
help
|
||||
This enables the loader code that loads gif files using
|
||||
giflib.
|
||||
|
||||
config BR2_PACKAGE_EFL_TIFF
|
||||
bool "libevas tiff loader"
|
||||
select BR2_PACKAGE_TIFF
|
||||
help
|
||||
This enables the loader code that loads tiff files.
|
||||
|
||||
config BR2_PACKAGE_EFL_WEBP
|
||||
bool "libevas webp image loader"
|
||||
select BR2_PACKAGE_WEBP
|
||||
help
|
||||
This enables the loader code that loads images using WebP.
|
||||
|
||||
endif # BR2_PACKAGE_EFL
|
||||
|
||||
comment "efl needs udev /dev management and a toolchain w/ C++, dynamic library, threads, wchar"
|
||||
depends on !BR2_PACKAGE_HAS_UDEV || !BR2_INSTALL_LIBSTDCPP \
|
||||
|| BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
||||
depends on BR2_USE_MMU
|
||||
|
||||
comment "efl needs lua 5.1"
|
||||
depends on !BR2_PACKAGE_LUA_5_1
|
||||
depends on BR2_USE_MMU
|
||||
2
deprecated/firmware/buildroot/package/efl/efl.hash
Normal file
2
deprecated/firmware/buildroot/package/efl/efl.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From https://download.enlightenment.org/rel/libs/efl/efl-1.15.3.tar.xz.sha256
|
||||
sha256 3bac40e6294288034bd7f8902088bf1169cf376f6fd25b7a49854ab561630642 efl-1.15.3.tar.xz
|
||||
277
deprecated/firmware/buildroot/package/efl/efl.mk
Normal file
277
deprecated/firmware/buildroot/package/efl/efl.mk
Normal file
@@ -0,0 +1,277 @@
|
||||
################################################################################
|
||||
#
|
||||
# efl
|
||||
#
|
||||
################################################################################
|
||||
|
||||
EFL_VERSION = 1.15.3
|
||||
EFL_SOURCE = efl-$(EFL_VERSION).tar.xz
|
||||
EFL_SITE = http://download.enlightenment.org/rel/libs/efl
|
||||
EFL_LICENSE = BSD-2c, LGPLv2.1+, GPLv2+
|
||||
EFL_LICENSE_FILES = \
|
||||
COMPLIANCE \
|
||||
COPYING \
|
||||
licenses/COPYING.BSD \
|
||||
licenses/COPYING.FTL \
|
||||
licenses/COPYING.GPL \
|
||||
licenses/COPYING.LGPL \
|
||||
licenses/COPYING.SMALL
|
||||
|
||||
EFL_INSTALL_STAGING = YES
|
||||
|
||||
EFL_DEPENDENCIES = host-pkgconf host-efl dbus freetype jpeg lua udev \
|
||||
util-linux zlib
|
||||
|
||||
# Regenerate the autotools:
|
||||
# - to fix an issue in eldbus-codegen: https://phab.enlightenment.org/T2718
|
||||
EFL_AUTORECONF = YES
|
||||
EFL_GETTEXTIZE = YES
|
||||
|
||||
# Configure options:
|
||||
# --disable-cxx-bindings: disable C++11 bindings.
|
||||
# --disable-sdl: disable sdl2 support.
|
||||
# --disable-systemd: disable systemd support.
|
||||
# --disable-xinput22: disable X11 XInput v2.2+ support.
|
||||
# --enable-lua-old: disable Elua and remove luajit dependency.
|
||||
# --with-opengl=none: disable opengl support.
|
||||
EFL_CONF_OPTS = \
|
||||
--with-edje-cc=$(HOST_DIR)/usr/bin/edje_cc \
|
||||
--with-eolian-gen=$(HOST_DIR)/usr/bin/eolian_gen \
|
||||
--disable-cxx-bindings \
|
||||
--disable-sdl \
|
||||
--disable-systemd \
|
||||
--disable-xinput22 \
|
||||
--enable-lua-old \
|
||||
--with-opengl=none
|
||||
|
||||
# Disable untested configuration warning.
|
||||
ifeq ($(BR2_PACKAGE_EFL_HAS_RECOMMENDED_CONFIG),)
|
||||
EFL_CONF_OPTS += --enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aba
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBMOUNT),y)
|
||||
EFL_DEPENDENCIES += util-linux
|
||||
EFL_CONF_OPTS += --enable-libmount
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-libmount
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_FONTCONFIG),y)
|
||||
EFL_CONF_OPTS += --enable-fontconfig
|
||||
EFL_DEPENDENCIES += fontconfig
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-fontconfig
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBFRIBIDI),y)
|
||||
EFL_CONF_OPTS += --enable-fribidi
|
||||
EFL_DEPENDENCIES += libfribidi
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-fribidi
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GSTREAMER1)$(BR2_PACKAGE_GST1_PLUGINS_BASE),yy)
|
||||
EFL_CONF_OPTS += --enable-gstreamer1
|
||||
EFL_DEPENDENCIES += gstreamer1 gst1-plugins-base
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-gstreamer1
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BULLET),y)
|
||||
EFL_CONF_OPTS += --enable-physics
|
||||
EFL_DEPENDENCIES += bullet
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-physics
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
||||
EFL_CONF_OPTS += --enable-audio
|
||||
EFL_DEPENDENCIES += libsndfile
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-audio
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PULSEAUDIO),y)
|
||||
EFL_CONF_OPTS += --enable-pulseaudio
|
||||
EFL_DEPENDENCIES += pulseaudio
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-pulseaudio
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HARFBUZZ),y)
|
||||
EFL_DEPENDENCIES += harfbuzz
|
||||
EFL_CONF_OPTS += --enable-harfbuzz
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-harfbuzz
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_TSLIB),y)
|
||||
EFL_DEPENDENCIES += tslib
|
||||
EFL_CONF_OPTS += --enable-tslib
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-tslib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
|
||||
EFL_DEPENDENCIES += libglib2
|
||||
EFL_CONF_OPTS += --with-glib=yes
|
||||
else
|
||||
EFL_CONF_OPTS += --with-glib=no
|
||||
endif
|
||||
|
||||
# Prefer openssl (the default) over gnutls.
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
EFL_DEPENDENCIES += openssl
|
||||
EFL_CONF_OPTS += --with-crypto=openssl
|
||||
else ifeq ($(BR2_PACKAGE_GNUTLS)$(BR2_PACKAGE_LIBGCRYPT),yy)
|
||||
EFL_DEPENDENCIES += gnutls libgcrypt
|
||||
EFL_CONF_OPTS += --with-crypto=gnutls \
|
||||
--with-libgcrypt-prefix=$(STAGING_DIR)/usr
|
||||
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
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-wayland
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_FB),y)
|
||||
EFL_CONF_OPTS += --enable-fb
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-fb
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_X_XLIB),y)
|
||||
EFL_CONF_OPTS += \
|
||||
--with-x11=xlib \
|
||||
--with-x=$(STAGING_DIR) \
|
||||
--x-includes=$(STAGING_DIR)/usr/include \
|
||||
--x-libraries=$(STAGING_DIR)/usr/lib
|
||||
|
||||
EFL_DEPENDENCIES += \
|
||||
xlib_libX11 \
|
||||
xlib_libXcomposite \
|
||||
xlib_libXcursor \
|
||||
xlib_libXdamage \
|
||||
xlib_libXext \
|
||||
xlib_libXinerama \
|
||||
xlib_libXrandr \
|
||||
xlib_libXrender \
|
||||
xlib_libXScrnSaver \
|
||||
xlib_libXtst
|
||||
else
|
||||
EFL_CONF_OPTS += --with-x11=none
|
||||
endif
|
||||
|
||||
# Loaders that need external dependencies needs to be --enable-XXX=yes
|
||||
# otherwise the default is '=static'.
|
||||
# All other loaders are statically built-in
|
||||
ifeq ($(BR2_PACKAGE_EFL_PNG),y)
|
||||
EFL_CONF_OPTS += --enable-image-loader-png=yes
|
||||
EFL_DEPENDENCIES += libpng
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-image-loader-png
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_JPEG),y)
|
||||
EFL_CONF_OPTS += --enable-image-loader-jpeg=yes
|
||||
# efl already depends on jpeg.
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-image-loader-jpeg
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_GIF),y)
|
||||
EFL_CONF_OPTS += --enable-image-loader-gif=yes
|
||||
EFL_DEPENDENCIES += giflib
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-image-loader-gif
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_TIFF),y)
|
||||
EFL_CONF_OPTS += --enable-image-loader-tiff=yes
|
||||
EFL_DEPENDENCIES += tiff
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-image-loader-tiff
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_JP2K),y)
|
||||
EFL_CONF_OPTS += --enable-image-loader-jp2k=yes
|
||||
EFL_DEPENDENCIES += openjpeg
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-image-loader-jp2k
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_EFL_WEBP),y)
|
||||
EFL_CONF_OPTS += --enable-image-loader-webp=yes
|
||||
EFL_DEPENDENCIES += webp
|
||||
else
|
||||
EFL_CONF_OPTS += --disable-image-loader-webp
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
|
||||
################################################################################
|
||||
#
|
||||
# host-efl
|
||||
#
|
||||
################################################################################
|
||||
|
||||
# We want to build only some host tools used later in the build.
|
||||
# Actually we want: edje_cc, embryo_cc and eet.
|
||||
|
||||
# Host dependencies:
|
||||
# * host-dbus: for Eldbus
|
||||
# * host-freetype: for libevas
|
||||
# * host-libglib2: for libecore
|
||||
# * host-libjpeg, host-libpng: for libevas image loader
|
||||
# * host-lua: disable luajit dependency
|
||||
HOST_EFL_DEPENDENCIES = \
|
||||
host-pkgconf \
|
||||
host-dbus \
|
||||
host-freetype \
|
||||
host-libglib2 \
|
||||
host-libjpeg \
|
||||
host-libpng \
|
||||
host-lua \
|
||||
host-zlib
|
||||
|
||||
# Configure options:
|
||||
# --disable-audio, --disable-multisense remove libsndfile dependency.
|
||||
# --disable-cxx-bindings: disable C++11 bindings.
|
||||
# --disable-fontconfig: remove dependency on fontconfig.
|
||||
# --disable-fribidi: remove dependency on libfribidi.
|
||||
# --disable-gstreamer1: remove dependency on gtreamer 1.0.
|
||||
# --disable-libeeze: remove libudev dependency.
|
||||
# --disable-libmount: remove dependency on host-util-linux libmount.
|
||||
# --disable-physics: remove Bullet dependency.
|
||||
# --enable-image-loader-gif=no: disable Gif dependency.
|
||||
# --enable-image-loader-tiff=no: disable Tiff dependency.
|
||||
# --enable-lua-old: disable Elua and remove luajit dependency.
|
||||
# --with-crypto=none: remove dependencies on openssl or gnutls.
|
||||
# --with-x11=none: remove dependency on X.org.
|
||||
# Yes I really know what I am doing.
|
||||
HOST_EFL_CONF_OPTS += \
|
||||
--disable-audio \
|
||||
--disable-cxx-bindings \
|
||||
--disable-fontconfig \
|
||||
--disable-fribidi \
|
||||
--disable-gstreamer1 \
|
||||
--disable-libeeze \
|
||||
--disable-libmount \
|
||||
--disable-multisense \
|
||||
--disable-physics \
|
||||
--enable-image-loader-gif=no \
|
||||
--enable-image-loader-jpeg=yes \
|
||||
--enable-image-loader-png=yes \
|
||||
--enable-image-loader-tiff=no \
|
||||
--enable-lua-old \
|
||||
--with-crypto=none \
|
||||
--with-glib=yes \
|
||||
--with-opengl=none \
|
||||
--with-x11=none \
|
||||
--enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aba
|
||||
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user