diff options
| author | Richard Purdie <richard@openedhand.com> | 2005-09-22 22:02:48 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2005-09-22 22:02:48 +0000 |
| commit | 26a96fc12fb2df9e965087589da2ed6a3e39b5e4 (patch) | |
| tree | aa162fa89439bae50782e2528b02ed2a407c3131 /openembedded/packages/dbus/dbus-0.50 | |
| parent | d18457f094de8532eb8921991303032cdb345fe9 (diff) | |
| download | poky-26a96fc12fb2df9e965087589da2ed6a3e39b5e4.tar.gz | |
Updates against mainline OE to fix various issues and make builds work again as a couple of poky changes got lost
git-svn-id: https://svn.o-hand.com/repos/poky@29 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/dbus/dbus-0.50')
| -rw-r--r-- | openembedded/packages/dbus/dbus-0.50/dbus-1.init | 86 | ||||
| -rw-r--r-- | openembedded/packages/dbus/dbus-0.50/no-bindings.patch | 12 | ||||
| -rw-r--r-- | openembedded/packages/dbus/dbus-0.50/no-introspect.patch | 14 |
3 files changed, 112 insertions, 0 deletions
diff --git a/openembedded/packages/dbus/dbus-0.50/dbus-1.init b/openembedded/packages/dbus/dbus-0.50/dbus-1.init new file mode 100644 index 0000000000..60440b7223 --- /dev/null +++ b/openembedded/packages/dbus/dbus-0.50/dbus-1.init | |||
| @@ -0,0 +1,86 @@ | |||
| 1 | #! /bin/sh | ||
| 2 | # -*- coding: utf-8 -*- | ||
| 3 | # Debian init.d script for D-BUS | ||
| 4 | # Copyright © 2003 Colin Walters <walters@debian.org> | ||
| 5 | |||
| 6 | set -e | ||
| 7 | |||
| 8 | DAEMON=/usr/bin/dbus-daemon | ||
| 9 | NAME=dbus-1 | ||
| 10 | DAEMONUSER=messagebus | ||
| 11 | PIDDIR=/var/run/dbus | ||
| 12 | PIDFILE=$PIDDIR/pid | ||
| 13 | DESC="system message bus" | ||
| 14 | EVENTDIR=/etc/dbus-1/event.d | ||
| 15 | |||
| 16 | test -x $DAEMON || exit 0 | ||
| 17 | |||
| 18 | # Source defaults file; edit that file to configure this script. | ||
| 19 | ENABLED=1 | ||
| 20 | PARAMS="" | ||
| 21 | if [ -e /etc/default/dbus-1 ]; then | ||
| 22 | . /etc/default/dbus-1 | ||
| 23 | fi | ||
| 24 | |||
| 25 | test "$ENABLED" != "0" || exit 0 | ||
| 26 | |||
| 27 | start_it_up() | ||
| 28 | { | ||
| 29 | if [ ! -d $PIDDIR ]; then | ||
| 30 | mkdir -p $PIDDIR | ||
| 31 | chown $DAEMONUSER $PIDDIR | ||
| 32 | chgrp $DAEMONUSER $PIDDIR | ||
| 33 | fi | ||
| 34 | if [ -e $PIDFILE ]; then | ||
| 35 | PIDDIR=/proc/$(cat $PIDFILE) | ||
| 36 | if [ -d ${PIDDIR} -a "$(readlink -f ${PIDDIR}/exe)" = "${DAEMON}" ]; then | ||
| 37 | echo "$DESC already started; not starting." | ||
| 38 | else | ||
| 39 | echo "Removing stale PID file $PIDFILE." | ||
| 40 | rm -f $PIDFILE | ||
| 41 | fi | ||
| 42 | fi | ||
| 43 | echo -n "Starting $DESC: " | ||
| 44 | start-stop-daemon --start --quiet --pidfile $PIDFILE \ | ||
| 45 | --user $DAEMONUSER --exec $DAEMON -- --system $PARAMS | ||
| 46 | echo "$NAME." | ||
| 47 | if [ -d $EVENTDIR ]; then | ||
| 48 | run-parts --arg=start $EVENTDIR | ||
| 49 | fi | ||
| 50 | } | ||
| 51 | |||
| 52 | shut_it_down() | ||
| 53 | { | ||
| 54 | if [ -d $EVENTDIR ]; then | ||
| 55 | run-parts --reverse --arg=stop $EVENTDIR | ||
| 56 | fi | ||
| 57 | echo -n "Stopping $DESC: " | ||
| 58 | start-stop-daemon --stop --quiet --pidfile $PIDFILE \ | ||
| 59 | --user $DAEMONUSER | ||
| 60 | # We no longer include these arguments so that start-stop-daemon | ||
| 61 | # can do its job even given that we may have been upgraded. | ||
| 62 | # We rely on the pidfile being sanely managed | ||
| 63 | # --exec $DAEMON -- --system $PARAMS | ||
| 64 | echo "$NAME." | ||
| 65 | rm -f $PIDFILE | ||
| 66 | } | ||
| 67 | |||
| 68 | case "$1" in | ||
| 69 | start) | ||
| 70 | start_it_up | ||
| 71 | ;; | ||
| 72 | stop) | ||
| 73 | shut_it_down | ||
| 74 | ;; | ||
| 75 | restart|force-reload) | ||
| 76 | shut_it_down | ||
| 77 | sleep 1 | ||
| 78 | start_it_up | ||
| 79 | ;; | ||
| 80 | *) | ||
| 81 | echo "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}" >&2 | ||
| 82 | exit 1 | ||
| 83 | ;; | ||
| 84 | esac | ||
| 85 | |||
| 86 | exit 0 | ||
diff --git a/openembedded/packages/dbus/dbus-0.50/no-bindings.patch b/openembedded/packages/dbus/dbus-0.50/no-bindings.patch new file mode 100644 index 0000000000..ccfc3f88b2 --- /dev/null +++ b/openembedded/packages/dbus/dbus-0.50/no-bindings.patch | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | --- dbus-0.50/tools/Makefile.am.orig 2005-09-07 10:05:38 +0200 | ||
| 2 | +++ dbus-0.50/tools/Makefile.am 2005-09-07 10:06:30 +0200 | ||
| 3 | @@ -6,9 +6,6 @@ | ||
| 4 | nodist_libdbus_glib_HEADERS = dbus-glib-bindings.h | ||
| 5 | libdbus_glibdir = $(includedir)/dbus-1.0/dbus | ||
| 6 | |||
| 7 | -dbus-glib-bindings.h: dbus-bus-introspect.xml $(top_builddir)/glib/dbus-binding-tool$(EXEEXT) | ||
| 8 | - $(top_builddir)/glib/dbus-binding-tool --mode=glib-client --output=dbus-glib-bindings.h dbus-bus-introspect.xml | ||
| 9 | - | ||
| 10 | BUILT_SOURCES = dbus-glib-bindings.h dbus-bus-introspect.xml | ||
| 11 | |||
| 12 | else | ||
diff --git a/openembedded/packages/dbus/dbus-0.50/no-introspect.patch b/openembedded/packages/dbus/dbus-0.50/no-introspect.patch new file mode 100644 index 0000000000..1e43dd121b --- /dev/null +++ b/openembedded/packages/dbus/dbus-0.50/no-introspect.patch | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | --- dbus-0.50/tools/Makefile.am.orig 2005-09-07 10:03:49 +0200 | ||
| 2 | +++ dbus-0.50/tools/Makefile.am 2005-09-07 10:04:28 +0200 | ||
| 3 | @@ -21,11 +21,6 @@ | ||
| 4 | GTK_TOOLS= | ||
| 5 | endif | ||
| 6 | |||
| 7 | -if HAVE_GLIB | ||
| 8 | -dbus-bus-introspect.xml: $(top_builddir)/bus/dbus-daemon$(EXEEXT) dbus-launch$(EXEEXT) dbus-send$(EXEEXT) $(top_builddir)/bus/dbus-daemon$(EXEEXT) Makefile | ||
| 9 | - DBUS_TOP_BUILDDIR=$(top_builddir) $(srcdir)/run-with-tmp-session-bus.sh ./dbus-send --print-reply=literal --dest=org.freedesktop.DBus /org/freedesktop/DBus org.freedesktop.DBus.Introspectable.Introspect > dbus-bus-introspect.xml.tmp && mv dbus-bus-introspect.xml.tmp dbus-bus-introspect.xml | ||
| 10 | -endif | ||
| 11 | - | ||
| 12 | bin_PROGRAMS=dbus-send $(GLIB_TOOLS) dbus-launch dbus-cleanup-sockets $(GTK_TOOLS) | ||
| 13 | |||
| 14 | dbus_send_SOURCES= \ | ||
