efl/legacy/edbus
José Roberto de Souza 4ec1d6c4bb edbus: Implement edbus_object_event_callback_add()
Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>



SVN revision: 80058
2012-12-03 12:09:53 +00:00
..
doc edbus: Fix doxygen layout 2012-11-16 13:07:58 +00:00
m4 edbus: Do not build examples by default 2012-09-21 22:44:05 +00:00
src edbus: Implement edbus_object_event_callback_add() 2012-12-03 12:09:53 +00:00
.gitignore edbus: Add edbus_message to/from eina_value examples 2012-10-26 18:20:02 +00:00
AUTHORS Add new edbus library, aka e_dbus v2 2012-09-17 20:41:05 +00:00
COPYING add copying (lgpl like elm) and readme. 2012-11-02 14:38:51 +00:00
Makefile.am rpm spec for new edbus 2012-11-18 11:22:16 +00:00
README add copying (lgpl like elm) and readme. 2012-11-02 14:38:51 +00:00
autogen.sh edbus: exec configure in the end to preserve return code 2012-11-01 16:41:17 +00:00
configure.ac rpm spec for new edbus 2012-11-18 11:22:16 +00:00
edbus.spec.in rpm spec for new edbus 2012-11-18 11:22:16 +00:00
edbus2.pc.in edbus: Fix lib name in edbus2.pc.in 2012-09-26 20:33:53 +00:00

README

ABOUT:
-----

EDBus provides easy access to D-Bus from EFL applications.

EDBus allows connecting to both system and session buses acting as
both client and service roles.

Many official D-Bus specifications and interfaces are supported, namely:

        - org.freedesktop.DBus.Peer: full support (Ping and GetMachineId).
        - org.freedesktop.DBus.Introspectable: full support.
        - org.freedesktop.DBus.Properties: full support.
        - org.freedesktop.DBus.ObjectManager: partial support (under dev).

One can create client-side objects using the low-level methods from
EDBus_Connection and EDBus_Object, or go high level with
EDBus_Proxy.


RELATION TO OLD E_DBUS:
-----------------------

This is a replacement for old library "e_dbus". Its main purpose is to
fix some core bugs and completely encapsulating D-Bus without exposing
libdbus to end-user. One day libdbus may be completely removed as a
dependency.


REQUIREMENTS:
-------------

        - libdbus-1
        - eina >= 1.7
        - ecore >= 1.7


CONTACT:
--------

Bugs, questions, ideas and comments should be addressed to:

        enlightenment-devel@lists.sourceforge.net



COMPILING AND INSTALLING:
-------------------------

Standard autotools process:

        ./autogen.sh    # if trying development
        ./configure     # if running from release tarball
        make
        sudo make install