Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 04/14] libeina: Add new package along with EFL infrastructure
@ 2012-01-23 16:35 Will Newton
  0 siblings, 0 replies; 3+ messages in thread
From: Will Newton @ 2012-01-23 16:35 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Will Newton <will.newton@imgtec.com>
Reviewed-by: Arnout Vandecappelle <arnout@mind.be>
---
 package/Config.in              |    1 +
 package/efl/Config.in          |   16 ++++++++++++++++
 package/efl/efl.mk             |    1 +
 package/efl/libeina/Config.in  |    4 ++++
 package/efl/libeina/libeina.mk |   16 ++++++++++++++++
 5 files changed, 38 insertions(+), 0 deletions(-)
 create mode 100644 package/efl/Config.in
 create mode 100644 package/efl/efl.mk
 create mode 100644 package/efl/libeina/Config.in
 create mode 100644 package/efl/libeina/libeina.mk

diff --git a/package/Config.in b/package/Config.in
index f219e37..c54e546 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..b937b3b
--- /dev/null
+++ b/package/efl/libeina/Config.in
@@ -0,0 +1,4 @@
+config BR2_PACKAGE_LIBEINA
+	bool "libeina"
+	help
+	  Eina is a tiny library to handle data types (list, hash, etc.)
diff --git a/package/efl/libeina/libeina.mk b/package/efl/libeina/libeina.mk
new file mode 100644
index 0000000..3ed43db
--- /dev/null
+++ b/package/efl/libeina/libeina.mk
@@ -0,0 +1,16 @@
+#############################################################
+#
+# libeina
+#
+#############################################################
+
+LIBEINA_VERSION = 1.1.0
+LIBEINA_SOURCE = eina-$(LIBEINA_VERSION).tar.bz2
+LIBEINA_SITE = http://download.enlightenment.org/releases/
+LIBEINA_AUTORECONF = YES
+LIBEINA_INSTALL_STAGING = YES
+
+LIBEINA_DEPENDENCIES = host-pkg-config
+
+$(eval $(call AUTOTARGETS))
+$(eval $(call AUTOTARGETS,host))
-- 
1.7.1
-------------- next part --------------

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 04/14] libeina: Add new package along with EFL infrastructure
@ 2012-01-26 17:42 Will Newton
  2012-01-26 22:03 ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Will Newton @ 2012-01-26 17:42 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Will Newton <will.newton@imgtec.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 package/Config.in              |    1 +
 package/efl/Config.in          |   16 ++++++++++++++++
 package/efl/efl.mk             |    1 +
 package/efl/libeina/Config.in  |    4 ++++
 package/efl/libeina/libeina.mk |   16 ++++++++++++++++
 5 files changed, 38 insertions(+), 0 deletions(-)
 create mode 100644 package/efl/Config.in
 create mode 100644 package/efl/efl.mk
 create mode 100644 package/efl/libeina/Config.in
 create mode 100644 package/efl/libeina/libeina.mk

diff --git a/package/Config.in b/package/Config.in
index b245da8..9d435d6 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..b937b3b
--- /dev/null
+++ b/package/efl/libeina/Config.in
@@ -0,0 +1,4 @@
+config BR2_PACKAGE_LIBEINA
+	bool "libeina"
+	help
+	  Eina is a tiny library to handle data types (list, hash, etc.)
diff --git a/package/efl/libeina/libeina.mk b/package/efl/libeina/libeina.mk
new file mode 100644
index 0000000..3ed43db
--- /dev/null
+++ b/package/efl/libeina/libeina.mk
@@ -0,0 +1,16 @@
+#############################################################
+#
+# libeina
+#
+#############################################################
+
+LIBEINA_VERSION = 1.1.0
+LIBEINA_SOURCE = eina-$(LIBEINA_VERSION).tar.bz2
+LIBEINA_SITE = http://download.enlightenment.org/releases/
+LIBEINA_AUTORECONF = YES
+LIBEINA_INSTALL_STAGING = YES
+
+LIBEINA_DEPENDENCIES = host-pkg-config
+
+$(eval $(call AUTOTARGETS))
+$(eval $(call AUTOTARGETS,host))
-- 
1.7.1
-------------- next part --------------

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 04/14] libeina: Add new package along with EFL infrastructure
  2012-01-26 17:42 [Buildroot] [PATCH 04/14] libeina: Add new package along with EFL infrastructure Will Newton
@ 2012-01-26 22:03 ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2012-01-26 22:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Will" == Will Newton <will.newton@gmail.com> writes:

 Will> Signed-off-by: Will Newton <will.newton@imgtec.com>
 Will> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
 Will> ---

 Will> +++ b/package/efl/libeina/Config.in
 Will> @@ -0,0 +1,4 @@
 Will> +config BR2_PACKAGE_LIBEINA
 Will> +	bool "libeina"
 Will> +	help
 Will> +	  Eina is a tiny library to handle data types (list, hash, etc.)

Heh, the compressed tarball is almost 10MB.

You forgot to add an upstream URL. I've added
http://trac.enlightenment.org/e/wiki/Eina

 Will> diff --git a/package/efl/libeina/libeina.mk b/package/efl/libeina/libeina.mk
 Will> new file mode 100644
 Will> index 0000000..3ed43db
 Will> --- /dev/null
 Will> +++ b/package/efl/libeina/libeina.mk
 Will> @@ -0,0 +1,16 @@
 Will> +#############################################################
 Will> +#
 Will> +# libeina
 Will> +#
 Will> +#############################################################
 Will> +
 Will> +LIBEINA_VERSION = 1.1.0
 Will> +LIBEINA_SOURCE = eina-$(LIBEINA_VERSION).tar.bz2
 Will> +LIBEINA_SITE = http://download.enlightenment.org/releases/
 Will> +LIBEINA_AUTORECONF = YES

You're not patching any auto* files, so no need to autoreconf.

Otherwise it looks good - Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-26 22:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-26 17:42 [Buildroot] [PATCH 04/14] libeina: Add new package along with EFL infrastructure Will Newton
2012-01-26 22:03 ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2012-01-23 16:35 Will Newton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox