summaryrefslogtreecommitdiffstats
path: root/meta/packages/dbus/dbus-native_1.0.2.bb
diff options
context:
space:
mode:
authorRoss Burton <ross@openedhand.com>2007-06-19 07:43:49 +0000
committerRoss Burton <ross@openedhand.com>2007-06-19 07:43:49 +0000
commit9f594e2d33d807b27e4bfbc00a0624d67f129169 (patch)
tree440224e52f68dfd00ce2376f7e224b7bed616a33 /meta/packages/dbus/dbus-native_1.0.2.bb
parent5913a0765bca2b510635c5bf9b520c6be724aa5f (diff)
downloadpoky-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.bb31
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 @@
1DESCRIPTION = "message bus system for applications to talk to one another"
2HOMEPAGE = "http://www.freedesktop.org/Software/dbus"
3LICENSE = "GPL"
4SECTION = "base"
5
6PR = "r0"
7
8DEPENDS = "glib-2.0-native libxml2-native expat-native"
9
10DEFAULT_PREFERENCE = "-1"
11
12FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/dbus-1.0.2"
13SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \
14 file://cross.patch;patch=1 \
15 "
16
17inherit autotools pkgconfig gettext native
18
19S = "${WORKDIR}/dbus-${PV}"
20
21EXTRA_OECONF = " --disable-tests --disable-checks --disable-xml-docs \
22 --disable-doxygen-docs --with-xml=expat --without-x"
23
24do_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}