Commit e6209bbb authored by Romain Naour's avatar Romain Naour Committed by Thomas Petazzoni
Browse files

package/libefl: move to package directory



As discussed on the list move the last remaining package
in package/efl subdirectory to package/ directory.

- move the efl dependency to libefl.
- Set LIBEFL_VERSION with the version number directly.

Signed-off-by: default avatarRomain Naour <romain.naour@openwide.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 820e1685
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -253,6 +253,7 @@ endif
	source "package/fbv/Config.in"
	source "package/freerdp/Config.in"
	source "package/imagemagick/Config.in"
	source "package/libefl/Config.in"
	source "package/linux-fusion/Config.in"
	source "package/lite/Config.in"
	source "package/mesa3d/Config.in"
@@ -269,7 +270,6 @@ endif
	source "package/sdl2/Config.in"

comment "Other GUIs"
	source "package/efl/Config.in"
	source "package/qt/Config.in"
	source "package/qt5/Config.in"
if BR2_PACKAGE_QT || BR2_PACKAGE_QT5

package/efl/Config.in

deleted100644 → 0
+0 −29
Original line number Diff line number Diff line
menuconfig BR2_PACKAGE_EFL
	bool "Enlightenment Foundation Libraries"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_PACKAGE_HAS_UDEV # libudev
	depends on BR2_PACKAGE_LUA # lua 5.1 or better
	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_LIBEFL
	help
	  Enlightenment Foundation Libraries

	  http://enlightenment.org

if BR2_PACKAGE_EFL

source "package/efl/libefl/Config.in"

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"
	depends on !BR2_PACKAGE_LUA
	depends on BR2_USE_MMU

package/efl/efl.mk

deleted100644 → 0
+0 −4
Original line number Diff line number Diff line

EFL_VERSION = 1.15.2

include $(sort $(wildcard package/efl/*/*.mk))
Loading