summaryrefslogtreecommitdiff
path: root/packages/dbus/dbus_0.60.inc
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2006-09-13 09:23:14 +0000
committerKoen Kooi <koen@openembedded.org>2006-09-13 09:23:14 +0000
commitd9c71b977c6f12d1e9c0eb4f88e072efafba7657 (patch)
tree852fa37d34a7d139713246303793c2f00c7109e2 /packages/dbus/dbus_0.60.inc
parent4283f844bd2a786f9053852d374f3a404bea6b47 (diff)
dbus: drop 0.6x
* people wanting the use the old-API dbus can use 0.23.x * people wanting to use the new-API dbus should use 0.9x * new-API glib bindings are provided via dbus-glib
Diffstat (limited to 'packages/dbus/dbus_0.60.inc')
-rw-r--r--packages/dbus/dbus_0.60.inc64
1 files changed, 0 insertions, 64 deletions
diff --git a/packages/dbus/dbus_0.60.inc b/packages/dbus/dbus_0.60.inc
deleted file mode 100644
index 70546ed5b1..0000000000
--- a/packages/dbus/dbus_0.60.inc
+++ /dev/null
@@ -1,64 +0,0 @@
-SECTION = "base"
-PR = "r0"
-HOMEPAGE = "http://www.freedesktop.org/Software/dbus"
-DESCRIPTION = "message bus system for applications to talk to one another"
-LICENSE = "GPL"
-DEPENDS = "expat glib-2.0 virtual/libintl"
-
-SRC_URI = "http://freedesktop.org/software/dbus/releases/dbus-${PV}.tar.gz \
- file://cross.patch;patch=1 \
- file://tmpdir.patch;patch=1 \
- file://dbus-1.init \
- file://no-examples.patch;patch=1 \
- ${SRC_URI_EXTRA}"
-
-inherit autotools pkgconfig update-rc.d gettext
-
-INITSCRIPT_NAME = "dbus-1"
-INITSCRIPT_PARAMS = "defaults"
-
-CONFFILES_${PN} = "${sysconfdir}/dbus-1/system.conf ${sysconfdir}/dbus-1/session.conf"
-
-FILES_${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.*"
-FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-glib-tool"
-
-pkg_postinst_dbus() {
-#!/bin/sh
-
-# can't do adduser stuff offline
-if [ "x$D" != "x" ]; then
- exit 1
-fi
-
-MESSAGEUSER=messagebus
-MESSAGEHOME=/var/run/dbus
-
-mkdir -p $MESSAGEHOME || true
-chgrp "$MESSAGEUSER" "$MESSAGEHOME" 2>/dev/null || addgroup "$MESSAGEUSER"
-chown "$MESSAGEUSER"."$MESSAGEUSER" "$MESSAGEHOME" 2>/dev/null || adduser --system --home "$MESSAGEHOME" --no-create-home --disabled-password --ingroup "$MESSAGEUSER" "$MESSAGEUSER"
-}
-
-EXTRA_OECONF = "--disable-qt --disable-gtk --disable-tests \
- --disable-checks --disable-xml-docs --disable-doxygen-docs \
- --with-xml=expat --without-x"
-
-
-do_stage () {
- oe_libinstall -so -C dbus libdbus-1 ${STAGING_LIBDIR}
- oe_libinstall -so -C glib libdbus-glib-1 ${STAGING_LIBDIR}
-
- autotools_stage_includes
-
- mkdir -p ${STAGING_LIBDIR}/dbus-1.0/include/dbus/
- install -m 0644 dbus/dbus-arch-deps.h ${STAGING_LIBDIR}/dbus-1.0/include/dbus/
-}
-
-do_install_append () {
- install -d ${D}${sysconfdir}/init.d
- install -m 0755 ${WORKDIR}/dbus-1.init ${D}${sysconfdir}/init.d/dbus-1
-}
-
-python populate_packages_prepend () {
- if (bb.data.getVar('DEBIAN_NAMES', d, 1)):
- bb.data.setVar('PKG_dbus', 'dbus-1', d)
-}