diff options
author | Phil Blundell <philb@gnu.org> | 2004-10-19 21:45:56 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-10-19 21:45:56 +0000 |
commit | 83459291350a9ea7330e4c64968f298a2ea8fb06 (patch) | |
tree | 82c27acb58bff2473ba59b36f9b9720f4194f78a /bluez-utils | |
parent | ca4a817ae8bc9d807b7475f97d1fc98ad5e237c0 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into stealth.nexus.co.uk:/home/pb/oe/oe-packages
2004/10/19 22:40:32+01:00 nexus.co.uk!pb
add -lxf86drm to via final link
2004/10/19 22:21:51+01:00 nexus.co.uk!pb
enable initscripts
2004/10/19 22:21:14+01:00 nexus.co.uk!pb
correct icon name
BKrev: 41758b14kapIf9odK4fNTo44aTa0pQ
Diffstat (limited to 'bluez-utils')
-rw-r--r-- | bluez-utils/bluez-utils_2.10.oe | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bluez-utils/bluez-utils_2.10.oe b/bluez-utils/bluez-utils_2.10.oe index e69de29bb2..ef6bf41d14 100644 --- a/bluez-utils/bluez-utils_2.10.oe +++ b/bluez-utils/bluez-utils_2.10.oe @@ -0,0 +1,25 @@ +DESCRIPTION = "Linux Bluetooth Stack Userland Utilities." +SECTION = "libs" +PRIORITY = "optional" +DEPENDS = "bluez-libs pcmcia-cs" +RPROVIDES = "bluez-pan bluez-sdp" +PR = "r1" + +SRC_URI = "http://bluez.sourceforge.net/download/bluez-utils-${PV}.tar.gz" + +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 +} + +inherit autotools update-rc.d + +INITSCRIPT_NAME = "bluetooth" +INITSCRIPT_PARAMS = "defaults" + |