[Lunar-commits] <moonbase> bluez-utils: Out of date and you should be using bluez.

Dennis `stumbles` Veatch stumbles at lunar-linux.org
Sun Apr 4 14:29:01 CEST 2010


commit 79d752cd5fb4fb163c1cb723c0db2f645dd79d04
Author: Dennis `stumbles` Veatch <stumbles at lunar-linux.org>
Date:   Sun Apr 4 08:29:01 2010 -0400

    bluez-utils: Out of date and you should be using bluez.
---
 zdeprecated/bluez-utils/BUILD           |   14 ++++++++++++++
 zdeprecated/bluez-utils/CONFLICTS       |    1 +
 zdeprecated/bluez-utils/DEPENDS         |    8 ++++++++
 zdeprecated/bluez-utils/DETAILS         |   14 ++++++++++++++
 zdeprecated/bluez-utils/init.d/btdund   |   12 ++++++++++++
 zdeprecated/bluez-utils/init.d/bthcid   |   13 +++++++++++++
 zdeprecated/bluez-utils/init.d/btrfcomm |   25 +++++++++++++++++++++++++
 zdeprecated/bluez-utils/init.d/btsdpd   |   12 ++++++++++++
 8 files changed, 99 insertions(+), 0 deletions(-)

diff --git a/zdeprecated/bluez-utils/BUILD b/zdeprecated/bluez-utils/BUILD
new file mode 100644
index 0000000..61f24cd
--- /dev/null
+++ b/zdeprecated/bluez-utils/BUILD
@@ -0,0 +1,14 @@
+(  
+
+   ./configure  --prefix=/usr           \
+                --sysconfdir=/etc       \
+                --mandir=/usr/man       \
+                --localstatedir=/var    \
+                --sbindir=/sbin         \
+                --datadir=/usr/share    \
+                --enable-all            \
+                $OPTS                  &&
+
+    default_make
+
+) > $C_FIFO 2>&1
diff --git a/zdeprecated/bluez-utils/CONFLICTS b/zdeprecated/bluez-utils/CONFLICTS
new file mode 100644
index 0000000..2cf16d0
--- /dev/null
+++ b/zdeprecated/bluez-utils/CONFLICTS
@@ -0,0 +1 @@
+conflicts bluez
diff --git a/zdeprecated/bluez-utils/DEPENDS b/zdeprecated/bluez-utils/DEPENDS
new file mode 100644
index 0000000..59c76d6
--- /dev/null
+++ b/zdeprecated/bluez-utils/DEPENDS
@@ -0,0 +1,8 @@
+depends bluez-libs
+
+optional_depends "hal"          "--enable-hal"       "" "to enable hal support"
+optional_depends "alsa-lib"     "--enable-alsa"      "" "to enable alsa sound support"
+optional_depends "gstreamer-10" "--enable-gstreamer" "" "to enable gstreamer sound support"
+optional_depends "cups"         "--enable-cups"      "" "to enable cups printing support"
+optional_depends "pcmcia-cs"    "--enable-pcmcia"    "" "to enable pcmcia support, 2.4 kernels"
+optional_depends "pcmciautils"  "--enable-pcmcia"    "" "to enable pcmcia support, 2.6 kernels"
diff --git a/zdeprecated/bluez-utils/DETAILS b/zdeprecated/bluez-utils/DETAILS
new file mode 100644
index 0000000..059681a
--- /dev/null
+++ b/zdeprecated/bluez-utils/DETAILS
@@ -0,0 +1,14 @@
+          MODULE=bluez-utils
+         VERSION=3.36
+          SOURCE=$MODULE-$VERSION.tar.gz
+      SOURCE_URL=http://bluez.sf.net/download/
+      SOURCE_VFY=sha1:f53ba1d17829df2c5933fe062d7f8fb1ab8c8e60
+        WEB_SITE=http://www.bluez.org
+         ENTERED=20030927
+         UPDATED=20080812
+           SHORT="support for core Bluetooth layers and protocols"
+           PSAFE=no
+cat << EOF
+BlueZ provides support for core Bluetooth layers and protocols. It is
+flexible, efficient and modular implementation.
+EOF
diff --git a/zdeprecated/bluez-utils/init.d/btdund b/zdeprecated/bluez-utils/init.d/btdund
new file mode 100755
index 0000000..82254ed
--- /dev/null
+++ b/zdeprecated/bluez-utils/init.d/btdund
@@ -0,0 +1,12 @@
+#!/bin/bash
+#
+# btdund Bluetooth DUND daemon
+#
+# chkconfig: 345 80 20
+# description: SDP Bluetooth Daemon
+# processname: dund
+
+ARGS="--listen -s --channel 1"
+
+. /lib/lsb/init-functions
+
diff --git a/zdeprecated/bluez-utils/init.d/bthcid b/zdeprecated/bluez-utils/init.d/bthcid
new file mode 100755
index 0000000..363d861
--- /dev/null
+++ b/zdeprecated/bluez-utils/init.d/bthcid
@@ -0,0 +1,13 @@
+#!/bin/bash
+#
+# bthcid Bluetooth HCI Daemon
+#
+# chkconfig: 345 80 20
+# description: HCI Bluetooth Daemon
+# processname: hcid
+# config:      /etc/bluetooth/hcid.conf
+
+ARGS="-f /etc/bluetooth/hcid.conf"
+
+. /lib/lsb/init-functions
+
diff --git a/zdeprecated/bluez-utils/init.d/btrfcomm b/zdeprecated/bluez-utils/init.d/btrfcomm
new file mode 100755
index 0000000..8248547
--- /dev/null
+++ b/zdeprecated/bluez-utils/init.d/btrfcomm
@@ -0,0 +1,25 @@
+#!/bin/bash
+#
+# bind bt rfcomm devices
+#
+# chkconfig: 345 80 20
+# description: bind rfcomm devices
+# processname: rfcomm
+# config:      /etc/bluetooth/rfcomm.conf
+
+ARGS="-f /etc/bluetooth/rfcomm.conf"
+
+. /lib/lsb/init-functions
+
+case "$1" in
+    start)
+    /usr/bin/rfcomm -f /etc/bluetooth/rfcomm.conf bind all
+    ;;
+    stop)
+    /usr/bin/rfcomm release all > /dev/null 2>&1
+    ;;
+    *)
+    echo "Usage: $0 {start|stop}"
+    exit 1
+    ;;
+esac
diff --git a/zdeprecated/bluez-utils/init.d/btsdpd b/zdeprecated/bluez-utils/init.d/btsdpd
new file mode 100755
index 0000000..3aaa417
--- /dev/null
+++ b/zdeprecated/bluez-utils/init.d/btsdpd
@@ -0,0 +1,12 @@
+#!/bin/bash
+#
+# btsdpd Bluetooth SDP Daemon
+#
+# chkconfig: 345 80 20
+# description: SDP Bluetooth Daemon
+# processname: sdpd
+
+ARGS=""
+
+. /lib/lsb/init-functions
+


More information about the Lunar-commits mailing list