blob: bbbd47d4df5467de781f2a7691247e9cbc3cb203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/bluez-kernel/bluez-kernel-2.3.ebuild,v 1.3 2003/07/13 20:56:55 aliz Exp $
DESCRIPTION="bluetooth kernel drivers"
HOMEPAGE="http://bluez.sourceforge.net/"
SRC_URI="http://bluez.sourceforge.net/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND=""
S="${WORKDIR}/${P}"
src_unpack() {
unpack ${A} || die "unpack failed"
cd ${S} || die
# don't let the install target try to run depmod
# and 'bnep' fails to compile
mv Makefile.in Makefile.in.orig
sed -e '25d' \
-e 's|bnep\s*||' \
Makefile.in.orig > Makefile.in
}
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--infodir=/usr/share/info \
--mandir=/usr/share/man || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
pkg_setup() {
# bluez shouldn't be used with the std linux bluetooth usb driver
if [ -f /usr/src/linux/.config ]; then
if [[ `grep ^CONFIG_USB_BLUETOOTH=y /usr/src/linux/.config` ]]; then
einfo "You must disable the USB bluetooth driver in the linux kernel"
einfo "before running bluez"
die "Bad kernel config"
elif [[ `grep ^CONFIG_USB_BLUETOOTH=m /usr/src/linux/.config` ]]; then
einfo "Warning: bluez should not be used with the USB bluetooth driver"
einfo "Warning: in the linux kernel"
fi
fi
}
pkg_postinst() {
if [ "${ROOT}" = / ]
then
[ -x /usr/sbin/update-modules ] && /usr/sbin/update-modules
fi
}
|