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_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_1.0.2.bb')
| -rw-r--r-- | meta/packages/dbus/dbus_1.0.2.bb | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/meta/packages/dbus/dbus_1.0.2.bb b/meta/packages/dbus/dbus_1.0.2.bb new file mode 100644 index 0000000000..0fafa28d12 --- /dev/null +++ b/meta/packages/dbus/dbus_1.0.2.bb | |||
| @@ -0,0 +1,63 @@ | |||
| 1 | DEFAULT_PREFERENCE = "-1" | ||
| 2 | |||
| 3 | SECTION = "base" | ||
| 4 | HOMEPAGE = "http://www.freedesktop.org/Software/dbus" | ||
| 5 | DESCRIPTION = "message bus system for applications to talk to one another" | ||
| 6 | LICENSE = "GPL" | ||
| 7 | DEPENDS = "expat glib-2.0 virtual/libintl" | ||
| 8 | |||
| 9 | PR = "r1" | ||
| 10 | |||
| 11 | SRC_URI = "http://dbus.freedesktop.org/releases/dbus/dbus-${PV}.tar.gz \ | ||
| 12 | file://tmpdir.patch;patch=1 \ | ||
| 13 | file://dbus-1.init \ | ||
| 14 | file://cross.patch;patch=1 \ | ||
| 15 | file://fix-install-daemon.patch;patch=1" | ||
| 16 | |||
| 17 | inherit autotools pkgconfig update-rc.d gettext | ||
| 18 | |||
| 19 | INITSCRIPT_NAME = "dbus-1" | ||
| 20 | INITSCRIPT_PARAMS = "defaults" | ||
| 21 | |||
| 22 | CONFFILES_${PN} = "${sysconfdir}/dbus-1/system.conf ${sysconfdir}/dbus-1/session.conf" | ||
| 23 | |||
| 24 | FILES_${PN} = "${bindir}/dbus-daemon ${bindir}/dbus-launch ${bindir}/dbus-cleanup-sockets ${bindir}/dbus-send ${bindir}/dbus-monitor ${bindir}/dbus-uuidgen ${sysconfdir} ${datadir}/dbus-1/services ${libdir}/lib*.so.*" | ||
| 25 | FILES_${PN}-dev += "${libdir}/dbus-1.0/include" | ||
| 26 | |||
| 27 | pkg_postinst_dbus() { | ||
| 28 | #!/bin/sh | ||
| 29 | |||
| 30 | # can't do adduser stuff offline | ||
| 31 | if [ "x$D" != "x" ]; then | ||
| 32 | exit 1 | ||
| 33 | fi | ||
| 34 | |||
| 35 | MESSAGEUSER=messagebus | ||
| 36 | MESSAGEHOME=/var/run/dbus | ||
| 37 | |||
| 38 | mkdir -p $MESSAGEHOME || true | ||
| 39 | chgrp "$MESSAGEUSER" "$MESSAGEHOME" 2>/dev/null || addgroup "$MESSAGEUSER" | ||
| 40 | chown "$MESSAGEUSER"."$MESSAGEUSER" "$MESSAGEHOME" 2>/dev/null || adduser --system --home "$MESSAGEHOME" --no-create-home --disabled-password --ingroup "$MESSAGEUSER" "$MESSAGEUSER" | ||
| 41 | } | ||
| 42 | |||
| 43 | EXTRA_OECONF = " --disable-tests --disable-checks --disable-xml-docs \ | ||
| 44 | --disable-doxygen-docs --with-xml=expat --without-x" | ||
| 45 | |||
| 46 | do_stage () { | ||
| 47 | oe_libinstall -so -C dbus libdbus-1 ${STAGING_LIBDIR} | ||
| 48 | |||
| 49 | autotools_stage_includes | ||
| 50 | |||
| 51 | mkdir -p ${STAGING_LIBDIR}/dbus-1.0/include/dbus/ | ||
| 52 | install -m 0644 dbus/dbus-arch-deps.h ${STAGING_LIBDIR}/dbus-1.0/include/dbus/ | ||
| 53 | } | ||
| 54 | |||
| 55 | do_install_append () { | ||
| 56 | install -d ${D}${sysconfdir}/init.d | ||
| 57 | install -m 0755 ${WORKDIR}/dbus-1.init ${D}${sysconfdir}/init.d/dbus-1 | ||
| 58 | } | ||
| 59 | |||
| 60 | python populate_packages_prepend () { | ||
| 61 | if (bb.data.getVar('DEBIAN_NAMES', d, 1)): | ||
| 62 | bb.data.setVar('PKG_dbus', 'dbus-1', d) | ||
| 63 | } | ||
