diff options
author | Koen Kooi <koen@openembedded.org> | 2008-01-07 13:32:38 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-01-07 13:32:38 +0000 |
commit | fa04db1991f2372697d20bd79eb47fdeb784dd69 (patch) | |
tree | 5a1d67fce6fb59256aefefd6ee457d4c18a19e61 /packages/dbus/dbus-native_1.1.1.bb | |
parent | 908e3da2f1abb6ed3214422f9d21bd0b61b6119d (diff) | |
parent | b9563cc443ff9eb0af87cbc48da5c2f37e45305a (diff) |
propagate from branch 'org.openembedded.dev' (head a9234837102809b3f5f82abc11e373c14c1c638b)
to branch 'org.openembedded.dev.avr32' (head a4083d30914efeafacb96396afd63cef1ef01050)
Diffstat (limited to 'packages/dbus/dbus-native_1.1.1.bb')
-rw-r--r-- | packages/dbus/dbus-native_1.1.1.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/dbus/dbus-native_1.1.1.bb b/packages/dbus/dbus-native_1.1.1.bb new file mode 100644 index 0000000000..72e2190f78 --- /dev/null +++ b/packages/dbus/dbus-native_1.1.1.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "message bus system for applications to talk to one another" +HOMEPAGE = "http://www.freedesktop.org/Software/dbus" +LICENSE = "GPL" +SECTION = "base" + +PR = "r0" + +DEPENDS = "glib-2.0-native libxml2-native expat-native" + +DEFAULT_PREFERENCE = "-1" + +FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/dbus-1.0.2" +SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ + file://cross.patch;patch=1 \ + " + +inherit autotools pkgconfig gettext native + +S = "${WORKDIR}/dbus-${PV}" + +EXTRA_OECONF = " --disable-tests --disable-checks --disable-xml-docs \ + --disable-doxygen-docs --with-xml=expat --without-x" + +do_stage () { + oe_runmake install + autotools_stage_all + + # for dbus-glib-native introspection generation + install -d ${STAGING_DATADIR}/dbus + install -m 0644 bus/session.conf ${STAGING_DATADIR}/dbus/session.conf +} |