libeina: Add new package along with EFL infrastructure

[Peter: drop autoreconf, add URL]
Signed-off-by: Will Newton <will.newton@imgtec.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Will Newton 2012-01-26 17:42:25 +00:00 committed by Peter Korsgaard
parent 5a05d31da2
commit 66c1b5f408
5 changed files with 39 additions and 0 deletions

View file

@ -118,6 +118,7 @@ source "package/sdl_ttf/Config.in"
source "package/sdl_gfx/Config.in"
comment "other GUIs"
source "package/efl/Config.in"
source "package/qt/Config.in"
source "package/x11r7/Config.in"

16
package/efl/Config.in Normal file
View file

@ -0,0 +1,16 @@
menuconfig BR2_PACKAGE_EFL
bool "Enlightenment Foundation Libraries"
depends on BR2_USE_WCHAR
help
Enlightenment Foundation Libraries
http://enlightenment.org
if BR2_PACKAGE_EFL
source "package/efl/libeina/Config.in"
endif # BR2_PACKAGE_EFL
comment "EFL requires WCHAR support in toolchain"
depends on !BR2_USE_WCHAR

1
package/efl/efl.mk Normal file
View file

@ -0,0 +1 @@
include package/efl/*/*.mk

View file

@ -0,0 +1,6 @@
config BR2_PACKAGE_LIBEINA
bool "libeina"
help
Eina is a tiny library to handle data types (list, hash, etc.)
http://trac.enlightenment.org/e/wiki/Eina

View file

@ -0,0 +1,15 @@
#############################################################
#
# libeina
#
#############################################################
LIBEINA_VERSION = 1.1.0
LIBEINA_SOURCE = eina-$(LIBEINA_VERSION).tar.bz2
LIBEINA_SITE = http://download.enlightenment.org/releases/
LIBEINA_INSTALL_STAGING = YES
LIBEINA_DEPENDENCIES = host-pkg-config
$(eval $(call AUTOTARGETS))
$(eval $(call AUTOTARGETS,host))