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