Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 14/14] libedbus: Add new package
@ 2012-01-23 16:36 Will Newton
  2012-01-23 22:51 ` Arnout Vandecappelle
  0 siblings, 1 reply; 16+ messages in thread
From: Will Newton @ 2012-01-23 16:36 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Will Newton <will.newton@imgtec.com>
---
 package/efl/Config.in            |    1 +
 package/efl/libedbus/Config.in   |    8 ++++++++
 package/efl/libedbus/libedbus.mk |   16 ++++++++++++++++
 3 files changed, 25 insertions(+), 0 deletions(-)
 create mode 100644 package/efl/libedbus/Config.in
 create mode 100644 package/efl/libedbus/libedbus.mk

diff --git a/package/efl/Config.in b/package/efl/Config.in
index ec8c513..c783d7f 100644
--- a/package/efl/Config.in
+++ b/package/efl/Config.in
@@ -18,6 +18,7 @@ source "package/efl/libembryo/Config.in"
 source "package/efl/libedje/Config.in"
 source "package/efl/libethumb/Config.in"
 source "package/efl/libelementary/Config.in"
+source "package/efl/libedbus/Config.in"

 endif # BR2_PACKAGE_EFL

diff --git a/package/efl/libedbus/Config.in b/package/efl/libedbus/Config.in
new file mode 100644
index 0000000..71e3b50
--- /dev/null
+++ b/package/efl/libedbus/Config.in
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_LIBEDBUS
+	bool "libedbus"
+	select BR2_PACKAGE_LIBEINA
+	select BR2_PACKAGE_DBUS
+	help
+	  E_Dbus is a set of wrappers around DBus APIs by third party, so
+	  they can be easily used by EFL applications, automatically
+	  providing Ecore/main loop integration, as well as Eina data types.
diff --git a/package/efl/libedbus/libedbus.mk b/package/efl/libedbus/libedbus.mk
new file mode 100644
index 0000000..e2ac836
--- /dev/null
+++ b/package/efl/libedbus/libedbus.mk
@@ -0,0 +1,16 @@
+#############################################################
+#
+# libedbus
+#
+#############################################################
+
+LIBEDBUS_VERSION = 1.1.0
+LIBEDBUS_SOURCE = e_dbus-$(LIBEDBUS_VERSION).tar.bz2
+LIBEDBUS_SITE = http://download.enlightenment.org/releases/
+LIBEDBUS_AUTORECONF = YES
+LIBEDBUS_LIBTOOL_PATCH = YES
+LIBEDBUS_INSTALL_STAGING = YES
+
+LIBEDBUS_DEPENDENCIES = host-pkg-config dbus libeina
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.1
-------------- next part --------------

^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [Buildroot] [PATCH 14/14] libedbus: Add new package
@ 2012-01-26 17:42 Will Newton
  2012-01-29 22:22 ` Peter Korsgaard
  0 siblings, 1 reply; 16+ 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/efl/Config.in            |    1 +
 package/efl/libedbus/Config.in   |   10 ++++++++++
 package/efl/libedbus/libedbus.mk |   15 +++++++++++++++
 3 files changed, 26 insertions(+), 0 deletions(-)
 create mode 100644 package/efl/libedbus/Config.in
 create mode 100644 package/efl/libedbus/libedbus.mk

diff --git a/package/efl/Config.in b/package/efl/Config.in
index ec8c513..c783d7f 100644
--- a/package/efl/Config.in
+++ b/package/efl/Config.in
@@ -18,6 +18,7 @@ source "package/efl/libembryo/Config.in"
 source "package/efl/libedje/Config.in"
 source "package/efl/libethumb/Config.in"
 source "package/efl/libelementary/Config.in"
+source "package/efl/libedbus/Config.in"

 endif # BR2_PACKAGE_EFL

diff --git a/package/efl/libedbus/Config.in b/package/efl/libedbus/Config.in
new file mode 100644
index 0000000..27993f0
--- /dev/null
+++ b/package/efl/libedbus/Config.in
@@ -0,0 +1,10 @@
+config BR2_PACKAGE_LIBEDBUS
+	bool "libedbus"
+	select BR2_PACKAGE_LIBEINA
+	select BR2_PACKAGE_LIBECORE
+	select BR2_PACKAGE_DBUS
+	select BR2_PACKAGE_EXPAT if !BR2_PACKAGE_LIBXML2
+	help
+	  E_Dbus is a set of wrappers around D-Bus APIs so they can be
+	  easily used by EFL applications, automatically providing
+	  Ecore/main loop integration, as well as Eina data types.
diff --git a/package/efl/libedbus/libedbus.mk b/package/efl/libedbus/libedbus.mk
new file mode 100644
index 0000000..fe883e0
--- /dev/null
+++ b/package/efl/libedbus/libedbus.mk
@@ -0,0 +1,15 @@
+#############################################################
+#
+# libedbus
+#
+#############################################################
+
+LIBEDBUS_VERSION = 1.1.0
+LIBEDBUS_SOURCE = e_dbus-$(LIBEDBUS_VERSION).tar.bz2
+LIBEDBUS_SITE = http://download.enlightenment.org/releases/
+LIBEDBUS_AUTORECONF = YES
+LIBEDBUS_INSTALL_STAGING = YES
+
+LIBEDBUS_DEPENDENCIES = host-pkg-config dbus libeina libecore
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.1
-------------- next part --------------

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

end of thread, other threads:[~2012-02-01 17:09 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-23 16:36 [Buildroot] [PATCH 14/14] libedbus: Add new package Will Newton
2012-01-23 22:51 ` Arnout Vandecappelle
2012-01-24 10:32   ` Will Newton
2012-01-26 23:40     ` Arnout Vandecappelle
2012-01-26 23:41     ` [Buildroot] [PATCH 1/6] dbus: make it easier to select an XML library (select rather than depends on) Arnout Vandecappelle
2012-01-26 23:41       ` [Buildroot] [PATCH 2/6] bluez_utils: remove redundant selection of expat Arnout Vandecappelle
2012-01-26 23:41       ` [Buildroot] [PATCH 3/6] samba: avahi: replace dependency on dbus by select Arnout Vandecappelle
2012-01-26 23:41       ` [Buildroot] [PATCH 4/6] qt: qt-dbus: " Arnout Vandecappelle
2012-01-26 23:41       ` [Buildroot] [PATCH 5/6] network-manager: " Arnout Vandecappelle
2012-01-26 23:41       ` [Buildroot] [PATCH 6/6] connman: " Arnout Vandecappelle
2012-01-31 11:26       ` [Buildroot] [PATCH 1/6] dbus: make it easier to select an XML library (select rather than depends on) Peter Korsgaard
2012-01-31 11:39         ` Arnout Vandecappelle
2012-01-31 13:01           ` Peter Korsgaard
2012-02-01 17:09             ` [Buildroot] [PATCH] dbus: deprecate libxml2 support Arnout Vandecappelle
  -- strict thread matches above, loose matches on Subject: below --
2012-01-26 17:42 [Buildroot] [PATCH 14/14] libedbus: Add new package Will Newton
2012-01-29 22:22 ` Peter Korsgaard

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