[Lunar-commits] <moonbase> bluez: moving to bluetooth section
Dennis 'stumbles' Veatch
stumbles at lunar-linux.org
Wed Apr 1 16:42:54 CEST 2009
commit 7e0f72b0ab6dffe7cd776ea7c9b673f4af92e6ec
Author: Dennis 'stumbles' Veatch <stumbles at lunar-linux.org>
Date: Wed Apr 1 10:42:54 2009 -0400
bluez: moving to bluetooth section
---
bluetooth/bluez/BUILD | 23 +++++++++++++++
bluetooth/bluez/CONFLICTS | 5 +++
bluetooth/bluez/DEPENDS | 23 +++++++++++++++
bluetooth/bluez/DETAILS | 13 +++++++++
bluetooth/bluez/init.d/bluetoothd | 55 +++++++++++++++++++++++++++++++++++++
zbeta/bluez/BUILD | 23 ---------------
zbeta/bluez/CONFLICTS | 5 ---
zbeta/bluez/DEPENDS | 23 ---------------
zbeta/bluez/DETAILS | 13 ---------
zbeta/bluez/init.d/bluetoothd | 55 -------------------------------------
10 files changed, 119 insertions(+), 119 deletions(-)
diff --git a/bluetooth/bluez/BUILD b/bluetooth/bluez/BUILD
new file mode 100644
index 0000000..2b536f2
--- /dev/null
+++ b/bluetooth/bluez/BUILD
@@ -0,0 +1,23 @@
+(
+
+
+ OPTS+=" --enable-tools \
+ --enable-bccmd \
+ --enable-hid2hci \
+ --enable-dfutool \
+ --enable-hidd \
+ --enable-pand \
+ --enable-dund \
+ --enable-manpages\
+ --enable-configfiles \
+ --with-telephony=dummy \
+ --enable-gstreamer \
+ $OPTS"
+
+ default_build &&
+
+ cp audio/*.conf /etc/bluetooth/ &&
+ cp network/*.conf /etc/bluetooth/ &&
+ cp input/*.conf /etc/bluetooth
+
+) > $C_FIFO 2>&1
diff --git a/bluetooth/bluez/CONFLICTS b/bluetooth/bluez/CONFLICTS
new file mode 100644
index 0000000..06a8972
--- /dev/null
+++ b/bluetooth/bluez/CONFLICTS
@@ -0,0 +1,5 @@
+conflicts bluez-libs
+conflicts bluez-utils
+conflicts bluez-hcidump
+conflicts bluez-hciemu
+conflicts bluez-firmware
diff --git a/bluetooth/bluez/DEPENDS b/bluetooth/bluez/DEPENDS
new file mode 100644
index 0000000..f532c8e
--- /dev/null
+++ b/bluetooth/bluez/DEPENDS
@@ -0,0 +1,23 @@
+depends dbus-glib
+depends hal
+depends gstreamer-10
+
+optional_depends "libnl" "--enable-netlink" \
+ "--disable-netlink" \
+ "for NETLINK support "
+
+optional_depends "libusb" "--enable-usb" \
+ "--disable-usb" \
+ "to enable usb"
+
+optional_depends "alsa-lib" "--enable-alsa" \
+ "--disable-alsa" \
+ "to enable alsa sound support"
+
+optional_depends "cups" "--enable-cups" \
+ "--disable-cups" \
+ "to enable cups printing support"
+
+optional_depends "pcmciautils" "--enable-pcmciarules" \
+ "--disable-pcmciarules" \
+ "to enable pcmcia support, 2.6 kernels"
diff --git a/bluetooth/bluez/DETAILS b/bluetooth/bluez/DETAILS
new file mode 100644
index 0000000..307f4a8
--- /dev/null
+++ b/bluetooth/bluez/DETAILS
@@ -0,0 +1,13 @@
+ MODULE=bluez
+ VERSION=4.33
+ SOURCE=$MODULE-$VERSION.tar.gz
+ SOURCE_URL=http://www.kernel.org/pub/linux/bluetooth/
+ SOURCE_VFY=sha1:9f0806ca17283bb3bce4967df4ccaf0d20371ae3
+ WEB_SITE=http://www.bluez.org
+ ENTERED=20090328
+ UPDATED=20090328
+ SHORT="support for core Bluetooth layers and protocols"
+cat << EOF
+BlueZ provides support for core Bluetooth layers and protocols. It is
+flexible, efficient and modular implementation.
+EOF
diff --git a/bluetooth/bluez/init.d/bluetoothd b/bluetooth/bluez/init.d/bluetoothd
new file mode 100644
index 0000000..b90b9cb
--- /dev/null
+++ b/bluetooth/bluez/init.d/bluetoothd
@@ -0,0 +1,55 @@
+#!/bin/sh
+#
+# Startup/shutdown script for Bluetooth daemons
+#
+# chkconfig: 345 80 20
+# description: Startup/shutdown script for the Bluetooth daemons
+# processname: /usr/sbin/bluetoothd
+#
+
+. /lib/lsb/init-functions $1
+
+set -e
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+NAME=bluetooth
+DESC="Bluetooth subsystem"
+
+DAEMON_NAME=bluetoothd
+HID2HCI_NAME=hid2hci
+
+DAEMON_EXEC="`which $DAEMON_NAME || true`"
+HID2HCI_EXEC="`which $HID2HCI_NAME || true`"
+
+DAEMON_ENABLE=true
+HID2HCI_ENABLE=true
+
+[ -e /etc/default/bluetooth ] && . /etc/default/bluetooth
+
+case "$1" in
+ start)
+ echo -n "Starting $DESC:"
+ if $DAEMON_ENABLE && [ -x "$DAEMON_EXEC" ]; then
+ $DAEMON_EXEC
+ echo -n " $DAEMON_NAME"
+ fi
+ if $HID2HCI_ENABLE && [ -x "$HID2HCI_EXEC" ] ; then
+ $HID2HCI_EXEC --tohci > /dev/null 2>&1 || true
+ echo -n " $HID2HCI_NAME"
+ fi
+ echo "."
+ ;;
+ stop)
+ echo -n "Stopping $DESC:"
+ killall $DAEMON_NAME > /dev/null 2>&1 || true
+ echo -n " $DAEMON_NAME"
+ echo "."
+ ;;
+ *)
+ N=/etc/init.d/$NAME
+ echo "Usage: $N {start|stop}" >&2
+ exit 1
+ ;;
+esac
+
+exit 0
diff --git a/zbeta/bluez/BUILD b/zbeta/bluez/BUILD
deleted file mode 100644
index 2b536f2..0000000
--- a/zbeta/bluez/BUILD
+++ /dev/null
@@ -1,23 +0,0 @@
-(
-
-
- OPTS+=" --enable-tools \
- --enable-bccmd \
- --enable-hid2hci \
- --enable-dfutool \
- --enable-hidd \
- --enable-pand \
- --enable-dund \
- --enable-manpages\
- --enable-configfiles \
- --with-telephony=dummy \
- --enable-gstreamer \
- $OPTS"
-
- default_build &&
-
- cp audio/*.conf /etc/bluetooth/ &&
- cp network/*.conf /etc/bluetooth/ &&
- cp input/*.conf /etc/bluetooth
-
-) > $C_FIFO 2>&1
diff --git a/zbeta/bluez/CONFLICTS b/zbeta/bluez/CONFLICTS
deleted file mode 100644
index 06a8972..0000000
--- a/zbeta/bluez/CONFLICTS
+++ /dev/null
@@ -1,5 +0,0 @@
-conflicts bluez-libs
-conflicts bluez-utils
-conflicts bluez-hcidump
-conflicts bluez-hciemu
-conflicts bluez-firmware
diff --git a/zbeta/bluez/DEPENDS b/zbeta/bluez/DEPENDS
deleted file mode 100644
index f532c8e..0000000
--- a/zbeta/bluez/DEPENDS
+++ /dev/null
@@ -1,23 +0,0 @@
-depends dbus-glib
-depends hal
-depends gstreamer-10
-
-optional_depends "libnl" "--enable-netlink" \
- "--disable-netlink" \
- "for NETLINK support "
-
-optional_depends "libusb" "--enable-usb" \
- "--disable-usb" \
- "to enable usb"
-
-optional_depends "alsa-lib" "--enable-alsa" \
- "--disable-alsa" \
- "to enable alsa sound support"
-
-optional_depends "cups" "--enable-cups" \
- "--disable-cups" \
- "to enable cups printing support"
-
-optional_depends "pcmciautils" "--enable-pcmciarules" \
- "--disable-pcmciarules" \
- "to enable pcmcia support, 2.6 kernels"
diff --git a/zbeta/bluez/DETAILS b/zbeta/bluez/DETAILS
deleted file mode 100644
index 307f4a8..0000000
--- a/zbeta/bluez/DETAILS
+++ /dev/null
@@ -1,13 +0,0 @@
- MODULE=bluez
- VERSION=4.33
- SOURCE=$MODULE-$VERSION.tar.gz
- SOURCE_URL=http://www.kernel.org/pub/linux/bluetooth/
- SOURCE_VFY=sha1:9f0806ca17283bb3bce4967df4ccaf0d20371ae3
- WEB_SITE=http://www.bluez.org
- ENTERED=20090328
- UPDATED=20090328
- SHORT="support for core Bluetooth layers and protocols"
-cat << EOF
-BlueZ provides support for core Bluetooth layers and protocols. It is
-flexible, efficient and modular implementation.
-EOF
diff --git a/zbeta/bluez/init.d/bluetoothd b/zbeta/bluez/init.d/bluetoothd
deleted file mode 100644
index b90b9cb..0000000
--- a/zbeta/bluez/init.d/bluetoothd
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/sh
-#
-# Startup/shutdown script for Bluetooth daemons
-#
-# chkconfig: 345 80 20
-# description: Startup/shutdown script for the Bluetooth daemons
-# processname: /usr/sbin/bluetoothd
-#
-
-. /lib/lsb/init-functions $1
-
-set -e
-
-PATH=/sbin:/bin:/usr/sbin:/usr/bin
-NAME=bluetooth
-DESC="Bluetooth subsystem"
-
-DAEMON_NAME=bluetoothd
-HID2HCI_NAME=hid2hci
-
-DAEMON_EXEC="`which $DAEMON_NAME || true`"
-HID2HCI_EXEC="`which $HID2HCI_NAME || true`"
-
-DAEMON_ENABLE=true
-HID2HCI_ENABLE=true
-
-[ -e /etc/default/bluetooth ] && . /etc/default/bluetooth
-
-case "$1" in
- start)
- echo -n "Starting $DESC:"
- if $DAEMON_ENABLE && [ -x "$DAEMON_EXEC" ]; then
- $DAEMON_EXEC
- echo -n " $DAEMON_NAME"
- fi
- if $HID2HCI_ENABLE && [ -x "$HID2HCI_EXEC" ] ; then
- $HID2HCI_EXEC --tohci > /dev/null 2>&1 || true
- echo -n " $HID2HCI_NAME"
- fi
- echo "."
- ;;
- stop)
- echo -n "Stopping $DESC:"
- killall $DAEMON_NAME > /dev/null 2>&1 || true
- echo -n " $DAEMON_NAME"
- echo "."
- ;;
- *)
- N=/etc/init.d/$NAME
- echo "Usage: $N {start|stop}" >&2
- exit 1
- ;;
-esac
-
-exit 0
More information about the Lunar-commits
mailing list