diff options
Diffstat (limited to 'meta/packages/dbus/dbus-glib_0.73.bb')
-rw-r--r-- | meta/packages/dbus/dbus-glib_0.73.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta/packages/dbus/dbus-glib_0.73.bb b/meta/packages/dbus/dbus-glib_0.73.bb new file mode 100644 index 0000000000..641f0263a2 --- /dev/null +++ b/meta/packages/dbus/dbus-glib_0.73.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SECTION = "base" | ||
2 | PR = "r0" | ||
3 | HOMEPAGE = "http://www.freedesktop.org/Software/dbus" | ||
4 | DESCRIPTION = "message bus system for applications to talk to one another" | ||
5 | LICENSE = "GPL" | ||
6 | DEPENDS = "expat glib-2.0 virtual/libintl dbus-glib-native dbus" | ||
7 | |||
8 | SRC_URI = "http://dbus.freedesktop.org/releases/dbus-glib/dbus-glib-${PV}.tar.gz \ | ||
9 | file://cross.patch;patch=1 \ | ||
10 | file://no-examples.patch;patch=1 \ | ||
11 | file://no-introspect.patch;patch=1" | ||
12 | |||
13 | inherit autotools pkgconfig gettext | ||
14 | |||
15 | FILES_${PN} = "${libdir}/lib*.so.*" | ||
16 | FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-glib-tool" | ||
17 | |||
18 | do_configure_prepend() { | ||
19 | install -m 0644 ${STAGING_DIR}/${BUILD_SYS}/share/dbus/dbus-bus-introspect.xml ${S}/tools/ | ||
20 | install -m 0644 ${STAGING_DIR}/${BUILD_SYS}/share/dbus/dbus-glib-bindings.h ${S}/tools/ | ||
21 | } | ||
22 | |||
23 | do_stage () { | ||
24 | oe_libinstall -so -C dbus libdbus-glib-1 ${STAGING_LIBDIR} | ||
25 | |||
26 | autotools_stage_includes | ||
27 | } | ||
28 | |||
29 | FILES_${PN}-dev += "${bindir}/dbus-binding-tool" | ||