[Buildroot] [git commit] libeina: Add new package along with EFL infrastructure

Peter Korsgaard jacmet at sunsite.dk
Thu Jan 26 22:02:46 UTC 2012


commit: http://git.buildroot.net/buildroot/commit/?id=66c1b5f4088382da8b607bed7809169fc1edad8f
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

[Peter: drop autoreconf, add URL]
Signed-off-by: Will Newton <will.newton at imgtec.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
Signed-off-by: Peter Korsgaard <jacmet at sunsite.dk>
---
 package/Config.in              |    1 +
 package/efl/Config.in          |   16 ++++++++++++++++
 package/efl/efl.mk             |    1 +
 package/efl/libeina/Config.in  |    6 ++++++
 package/efl/libeina/libeina.mk |   15 +++++++++++++++
 5 files changed, 39 insertions(+), 0 deletions(-)

diff --git a/package/Config.in b/package/Config.in
index 251da85..65c2a98 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -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"
 
diff --git a/package/efl/Config.in b/package/efl/Config.in
new file mode 100644
index 0000000..cc677cb
--- /dev/null
+++ b/package/efl/Config.in
@@ -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
diff --git a/package/efl/efl.mk b/package/efl/efl.mk
new file mode 100644
index 0000000..d8d53cf
--- /dev/null
+++ b/package/efl/efl.mk
@@ -0,0 +1 @@
+include package/efl/*/*.mk
diff --git a/package/efl/libeina/Config.in b/package/efl/libeina/Config.in
new file mode 100644
index 0000000..80600ad
--- /dev/null
+++ b/package/efl/libeina/Config.in
@@ -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
diff --git a/package/efl/libeina/libeina.mk b/package/efl/libeina/libeina.mk
new file mode 100644
index 0000000..b457e3f
--- /dev/null
+++ b/package/efl/libeina/libeina.mk
@@ -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))


More information about the buildroot mailing list