summaryrefslogtreecommitdiff
path: root/dbus
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
committerChris Larson <clarson@kergoth.com>2004-12-09 09:47:41 +0000
commit2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch)
treebf879bea7ef8517ba8c3d1286ef300401d3d484c /dbus
parent101e2f1623def0a355d20aacb8bd93810703e834 (diff)
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded 2004/12/09 03:39:39-06:00 kergoth.com!kergoth Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit. BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'dbus')
-rw-r--r--dbus/dbus-0.20/cross.patch15
-rw-r--r--dbus/dbus-0.21/cross.patch15
-rw-r--r--dbus/dbus-0.22/cross.patch15
-rw-r--r--dbus/dbus/dbus-1.init57
-rw-r--r--dbus/dbus_0.20.bb0
-rw-r--r--dbus/dbus_0.21.bb0
-rw-r--r--dbus/dbus_0.22.bb0
7 files changed, 0 insertions, 102 deletions
diff --git a/dbus/dbus-0.20/cross.patch b/dbus/dbus-0.20/cross.patch
deleted file mode 100644
index 6d1d9d8e7e..0000000000
--- a/dbus/dbus-0.20/cross.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- dbus-0.20/configure.in~cross
-+++ dbus-0.20/configure.in
-@@ -466,6 +466,7 @@
- exit (0);
- ]])],
- [have_abstract_sockets=yes],
-+ [have_abstract_sockets=no],
- [have_abstract_sockets=no])
- AC_LANG_POP(C)
- AC_MSG_RESULT($have_abstract_sockets)
diff --git a/dbus/dbus-0.21/cross.patch b/dbus/dbus-0.21/cross.patch
deleted file mode 100644
index 6d1d9d8e7e..0000000000
--- a/dbus/dbus-0.21/cross.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- dbus-0.20/configure.in~cross
-+++ dbus-0.20/configure.in
-@@ -466,6 +466,7 @@
- exit (0);
- ]])],
- [have_abstract_sockets=yes],
-+ [have_abstract_sockets=no],
- [have_abstract_sockets=no])
- AC_LANG_POP(C)
- AC_MSG_RESULT($have_abstract_sockets)
diff --git a/dbus/dbus-0.22/cross.patch b/dbus/dbus-0.22/cross.patch
deleted file mode 100644
index 6d1d9d8e7e..0000000000
--- a/dbus/dbus-0.22/cross.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-
-#
-# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
-#
-
---- dbus-0.20/configure.in~cross
-+++ dbus-0.20/configure.in
-@@ -466,6 +466,7 @@
- exit (0);
- ]])],
- [have_abstract_sockets=yes],
-+ [have_abstract_sockets=no],
- [have_abstract_sockets=no])
- AC_LANG_POP(C)
- AC_MSG_RESULT($have_abstract_sockets)
diff --git a/dbus/dbus/dbus-1.init b/dbus/dbus/dbus-1.init
deleted file mode 100644
index 118b801da7..0000000000
--- a/dbus/dbus/dbus-1.init
+++ /dev/null
@@ -1,57 +0,0 @@
-#! /bin/sh
-# -*- coding: iso8859-1 -*-
-# Debian init.d script for D-BUS
-# Copyright (c) 2003 Colin Walters <walters@debian.org>
-
-set -e
-
-DAEMON=/usr/bin/dbus-daemon-1
-NAME=dbus-1
-DAEMONUSER=messagebus
-PIDFILE=/var/run/dbus/pid
-DESC="system message bus"
-
-test -x $DAEMON || exit 0
-
-# Source defaults file; edit that file to configure this script.
-ENABLED=1
-PARAMS=""
-if [ -e /etc/default/dbus-1 ]; then
- . /etc/default/dbus-1
-fi
-
-test "$ENABLED" != "0" || exit 0
-
-case "$1" in
- start)
- echo -n "Starting $DESC: "
- if [ ! -d /var/run/dbus ]; then
- mkdir /var/run/dbus
- chown $DAEMONUSER:$DAEMONUSER /var/run/dbus
- fi
- start-stop-daemon -S \
- -u $DAEMONUSER -x $DAEMON -- --system $PARAMS
- echo "$NAME."
- ;;
- stop)
- echo -n "Stopping $DESC: "
- start-stop-daemon -K \
- -u $DAEMONUSER -x $DAEMON -- --system $PARAMS
- echo "$NAME."
- ;;
- restart|force-reload)
- echo -n "Restarting $DESC: "
- start-stop-daemon -K \
- -u $DAEMONUSER -x $DAEMON -- --system $PARAMS
- sleep 1
- start-stop-daemon -S \
- -u $DAEMONUSER -x $DAEMON -- --system $PARAMS
- echo "$NAME."
- ;;
- *)
- echo "Usage: /etc/init.d/$NAME {start|stop|restart|force-reload}" >&2
- exit 1
- ;;
-esac
-
-exit 0
diff --git a/dbus/dbus_0.20.bb b/dbus/dbus_0.20.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/dbus/dbus_0.20.bb
+++ /dev/null
diff --git a/dbus/dbus_0.21.bb b/dbus/dbus_0.21.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/dbus/dbus_0.21.bb
+++ /dev/null
diff --git a/dbus/dbus_0.22.bb b/dbus/dbus_0.22.bb
deleted file mode 100644
index e69de29bb2..0000000000
--- a/dbus/dbus_0.22.bb
+++ /dev/null