diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-17 19:40:13 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-01-17 19:40:13 +0000 |
commit | 94d87cd53a89e085b09ca55c1bc05a7c313998e8 (patch) | |
tree | 00aee8d2947bf46d8ffad2b0582ed2d2bbc0ad70 /packages/bluez-utils/bluez-utils-common_2.13.inc | |
parent | ef90ab5ea9075ebf9dc1bf1f8e6200ed82e9501f (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/01/17 20:11:51+01:00 (none)!br1
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into null.(none):/data/mtx/closed/build/unstable/openembedded
2005/01/17 20:11:11+01:00 (none)!br1
hostap-modules: update mtx deferred irq patch for new driver versions
2005/01/17 18:44:43+00:00 cambridgebroadband.com!rjt
Merge oe-devel@oe-devel.bkbits.net:openembedded
into flotta.cambridgebroadband.com:/development/openembedded/openembedded
2005/01/17 18:22:19+00:00 cambridgebroadband.com!rjt
patch ipkg to remove c99isms to allwo compilation on gcc<3.0
2005/01/17 18:20:42+00:00 cambridgebroadband.com!rjt
update sdcontrol for new mount position
2005/01/17 18:19:32+00:00 cambridgebroadband.com!rjt
use newer gpe-package in oz-3.5.3
2005/01/14 17:57:37+00:00 cambridgebroadband.com!rjt
make bluez-utils depend on the correct version s of bluez-libs
BKrev: 41ec149dhPOtom4czqqCF84k5CsW4A
Diffstat (limited to 'packages/bluez-utils/bluez-utils-common_2.13.inc')
-rw-r--r-- | packages/bluez-utils/bluez-utils-common_2.13.inc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/bluez-utils/bluez-utils-common_2.13.inc b/packages/bluez-utils/bluez-utils-common_2.13.inc index e69de29bb2..04f127b7f5 100644 --- a/packages/bluez-utils/bluez-utils-common_2.13.inc +++ b/packages/bluez-utils/bluez-utils-common_2.13.inc @@ -0,0 +1,32 @@ +DESCRIPTION = "Linux Bluetooth Stack Userland Utilities." +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "bluez-libs-2.13 pcmcia-cs" +RPROVIDES_${PN} = "bluez-pan bluez-sdp bluez-utils" +LICENSE = "GPL" +PACKAGES =+ "${PN}-ciptool ${PN}-bluepin" + +FILES_${PN}-ciptool = "/bin/ciptool" +FILES_${PN}-bluepin = "/bin/bluepin" + +SRC_URI = "http://bluez.sourceforge.net/download/bluez-utils-${PV}.tar.gz \ + file://hcid.conf" +S = "${WORKDIR}/bluez-utils-${PV}" + +EXTRA_OECONF = "--with-bluez-libs=${STAGING_LIBDIR} --with-bluez-includes=${STAGING_INCDIR} --enable-pcmcia --enable-initscripts" + +do_install_append() { + install -d ${D}/sbin ${D}/bin/ + mv ${D}${sbindir}/* ${D}/sbin/ + mv ${D}${bindir}/* ${D}/bin/ + rmdir ${D}${bindir} ${D}${sbindir} + chmod u+s ${D}/sbin/hciattach ${D}/sbin/hciconfig + chmod 755 ${D}/etc/pcmcia/bluetooth + install -m 0644 ${WORKDIR}/hcid.conf ${D}/etc/bluetooth/ +} + +inherit autotools update-rc.d + +INITSCRIPT_NAME = "bluetooth" +INITSCRIPT_PARAMS = "defaults 23 19" + |