Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 149907 - net-wireless/bluez-utils-2.25-r1 misses a bunch of binaries
Summary: net-wireless/bluez-utils-2.25-r1 misses a bunch of binaries
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Mobile Herd (OBSOLETE)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-02 17:57 UTC by Jakub Moc (RETIRED)
Modified: 2007-05-09 20:20 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jakub Moc (RETIRED) gentoo-dev 2006-10-02 17:57:09 UTC
<snip>
make[1]: Leaving directory `/var/tmp/portage/bluez-utils-2.25-r1/work/bluez-utils-2.25'
!!! dosbin: bccmd does not exist
!!! dosbin: pskey does not exist
>>> Completed installing bluez-utils-2.25-r1 into /var/tmp/portage/bluez-utils-2.25-r1/image/
</snip>

[ebuild   R   ] net-wireless/bluez-utils-2.25-r1  USE="alsa cups dbus -gtk -pcmcia udev" 0 kB
Comment 1 Jakub Moc (RETIRED) gentoo-dev 2007-03-02 17:24:34 UTC
liquidx@gentoo.org
Comment 2 Werner Meisner 2007-04-03 20:07:59 UTC
the compilation of bccmd must be enabled with configure --enable-bccmd

the function of program pskey is now part of the bccmd command

here is a patch that fixes the ebuild for the new situation

--- bluez-utils-2.25-r1.ebuild  2007-02-13 14:06:19.000000000 +0100
+++ bluez-utils-2.25-r2.ebuild  2007-04-03 13:30:05.000000000 +0200
@@ -66,6 +66,7 @@
                --enable-dfutool \
                --enable-hid2hci \
                --enable-obex \
+                --enable-bccmd \
                --disable-initscripts \
                --localstatedir=/var \
                || die "econf failed"
@@ -80,7 +81,7 @@
 
        # optional bluetooth utils
        cd ${S}/tools
-       dosbin bccmd hcisecfilter ppporc pskey
+       dosbin bccmd hcisecfilter ppporc
 
        exeinto /etc/bluetooth
        newexe ${FILESDIR}/${PN}-2.24-pin-helper.sh pin-helper

Comment 3 Petteri Räty (RETIRED) gentoo-dev 2007-04-04 09:51:41 UTC
(In reply to comment #2)
> 
> here is a patch that fixes the ebuild for the new situation
> 

In the future, please attach patches as attachments instead of in lining.
Comment 4 Stefan Schweizer (RETIRED) gentoo-dev 2007-05-09 20:20:21 UTC
thanks, fixed