diff options
| author | Ross Burton <ross@openedhand.com> | 2007-06-19 07:43:49 +0000 |
|---|---|---|
| committer | Ross Burton <ross@openedhand.com> | 2007-06-19 07:43:49 +0000 |
| commit | 9f594e2d33d807b27e4bfbc00a0624d67f129169 (patch) | |
| tree | 440224e52f68dfd00ce2376f7e224b7bed616a33 /meta/packages/dbus/dbus-native_1.0.2.bb | |
| parent | 5913a0765bca2b510635c5bf9b520c6be724aa5f (diff) | |
| download | poky-9f594e2d33d807b27e4bfbc00a0624d67f129169.tar.gz | |
Upgrade to DBus 1.0.2
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1974 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/dbus/dbus-native_1.0.2.bb')
| -rw-r--r-- | meta/packages/dbus/dbus-native_1.0.2.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/packages/dbus/dbus-native_1.0.2.bb b/meta/packages/dbus/dbus-native_1.0.2.bb new file mode 100644 index 0000000000..72e2190f78 --- /dev/null +++ b/meta/packages/dbus/dbus-native_1.0.2.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 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.2" | ||
| 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-tests --disable-checks --disable-xml-docs \ | ||
| 22 | --disable-doxygen-docs --with-xml=expat --without-x" | ||
| 23 | |||
| 24 | do_stage () { | ||
| 25 | oe_runmake install | ||
| 26 | autotools_stage_all | ||
| 27 | |||
| 28 | # for dbus-glib-native introspection generation | ||
| 29 | install -d ${STAGING_DATADIR}/dbus | ||
| 30 | install -m 0644 bus/session.conf ${STAGING_DATADIR}/dbus/session.conf | ||
| 31 | } | ||
