diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-11-18 16:53:04 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-11-18 16:53:04 +0000 |
commit | 84cbf978c7f14fa3bd81c0a64a6dadcd02c0e1c1 (patch) | |
tree | 6be895edbf5ffc9118c8df815763f1657d398ae3 | |
parent | b975b9a0cb2849f5bda6c6cc4bba0e99a5240431 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages-devel
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages
2004/11/18 17:51:02+01:00 uni-frankfurt.de!mickeyl
make bluez-utils-[no]dbus RPROVIDE bluez-utils
BKrev: 419cd370rla8LaXngFjGXScUMT2sYw
-rw-r--r-- | bluez-utils/bluez-utils-common_2.11.inc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/bluez-utils/bluez-utils-common_2.11.inc b/bluez-utils/bluez-utils-common_2.11.inc index e69de29bb2..0490757bb7 100644 --- a/bluez-utils/bluez-utils-common_2.11.inc +++ b/bluez-utils/bluez-utils-common_2.11.inc @@ -0,0 +1,28 @@ +DESCRIPTION = "Linux Bluetooth Stack Userland Utilities." +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "bluez-libs pcmcia-cs" +RPROVIDES = "bluez-pan bluez-sdp bluez-utils" +LICENSE = "GPL" + +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" + |