summaryrefslogtreecommitdiff
blob: ec70c58247f6c6eff4f7ad43bbf098ad5e83edc5 (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
# Copyright 1999-2004 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.6 2004/02/15 12:51:34 dholm 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 ~ppc"
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() {
	econf
	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
}