summaryrefslogtreecommitdiff
path: root/packages/dbus/dbus.inc
diff options
context:
space:
mode:
authorOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2008-02-20 01:03:35 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2008-02-20 01:03:35 +0000
commit916326780dc762bb84bb24526a0ed628fff3d602 (patch)
treeb462aaefc54ca15f78d4790601eb7ca93e231c66 /packages/dbus/dbus.inc
parentc9e8762b3c2c940689bee98c2f78af69b47407e2 (diff)
parentaaa6972c4734b76385664c862760dcdb4c63d6fe (diff)
merge of '5ad99f74f7f6900d8889b6026325fc81dd39c9ff'
and 'dbd68acb5b5a6b7f90a7e82b19706ec980e6356f'
Diffstat (limited to 'packages/dbus/dbus.inc')
-rw-r--r--packages/dbus/dbus.inc22
1 files changed, 16 insertions, 6 deletions
diff --git a/packages/dbus/dbus.inc b/packages/dbus/dbus.inc
index b2ced23d99..ed0a0b3cf2 100644
--- a/packages/dbus/dbus.inc
+++ b/packages/dbus/dbus.inc
@@ -1,5 +1,6 @@
+DESCRIPTION = "A message bus system for inter-process communication"
HOMEPAGE = "http://dbus.freedesktop.org"
-DESCRIPTION = "Message bus system for applications to talk to one another"
+SECTION = "base"
LICENSE = "GPL"
DEPENDS = "expat glib-2.0 virtual/libintl"
@@ -56,13 +57,20 @@ 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"
grep -q netdev: /etc/group || addgroup netdev
-
+chmod u+s /usr/libexec/dbus-daemon-launch-helper
}
-EXTRA_OECONF = "--disable-qt --disable-qt3 --disable-gtk --disable-tests \
- --disable-checks --disable-xml-docs --disable-doxygen-docs \
- --with-xml=expat --without-x"
-
+EXTRA_OECONF = "\
+ --disable-qt \
+ --disable-qt3 \
+ --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}
@@ -76,4 +84,6 @@ do_stage() {
do_install_append() {
install -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/dbus-1.init ${D}${sysconfdir}/init.d/dbus-1
+ # the stock install seems to install the libtool wrapper script, so we have to copy this manually :M:
+ install -m 0755 bus/.libs/dbus-daemon-launch-helper ${D}${libexecdir}/
}