diff options
Diffstat (limited to 'meta/packages/dbus/dbus-native_1.0.1.bb')
-rw-r--r-- | meta/packages/dbus/dbus-native_1.0.1.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/meta/packages/dbus/dbus-native_1.0.1.bb b/meta/packages/dbus/dbus-native_1.0.1.bb new file mode 100644 index 0000000000..7e5e4df9dd --- /dev/null +++ b/meta/packages/dbus/dbus-native_1.0.1.bb | |||
@@ -0,0 +1,32 @@ | |||
1 | DESCRIPTION = "message bus system for applications to talk to one another" | ||
2 | HOMEPAGE = "http://www.freedesktop.org/Software/dbus" | ||
3 | LICENSE = "GPL" | ||
4 | SECTION = "base" | ||
5 | |||
6 | PR = "r0" | ||
7 | |||
8 | DEPENDS = "glib-2.0-native libxml2-native expat-native" | ||
9 | |||
10 | DEFAULT_PREFERENCE = "-1" | ||
11 | |||
12 | FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/dbus-1.0.1" | ||
13 | SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ | ||
14 | file://cross.patch;patch=1 \ | ||
15 | " | ||
16 | |||
17 | inherit autotools pkgconfig gettext native | ||
18 | |||
19 | S = "${WORKDIR}/dbus-${PV}" | ||
20 | |||
21 | EXTRA_OECONF = "--disable-qt --disable-qt3 --disable-gtk --disable-tests \ | ||
22 | --disable-checks --disable-xml-docs --disable-doxygen-docs \ | ||
23 | --with-xml=expat --without-x" | ||
24 | |||
25 | do_stage () { | ||
26 | oe_runmake install | ||
27 | autotools_stage_all | ||
28 | |||
29 | # for dbus-glib-native introspection generation | ||
30 | install -d ${STAGING_DATADIR}/dbus | ||
31 | install -m 0644 bus/session.conf ${STAGING_DATADIR}/dbus/session.conf | ||
32 | } | ||