blob: 6994c2d29c0ab5877d0067285c229ff7e3815251 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# 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-utils/bluez-utils-2.3-r1.ebuild,v 1.7 2004/01/16 10:54:44 liquidx Exp $
DESCRIPTION="bluetooth utilities"
HOMEPAGE="http://bluez.sourceforge.net/"
SRC_URI="http://bluez.sourceforge.net/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="gtk"
RDEPEND=">=net-wireless/bluez-libs-2.4
gtk? ( >=dev-python/pygtk-0.6.11 )"
DEPEND="sys-devel/bison
sys-devel/flex
>=sys-apps/sed-4
${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
# patch to fix bluepin to use pygtk1
epatch ${FILESDIR}/${P}-bluepin.patch
epatch ${FILESDIR}/${P}-rfcomm_fflush.patch
# Fix some installation locations
for dir in rfcomm tools; do
mv -f $dir/Makefile.in ${T}/Makefile.in
sed -e "s:\$(prefix)/usr/share/man:\@mandir\@:" \
${T}/Makefile.in > $dir/Makefile.in;
done
mv -f hcid/Makefile.in ${T}/Makefile.in
sed -e "s:\$(prefix)/etc/bluetooth:/etc/bluetooth:" \
${T}/Makefile.in > hcid/Makefile.in
if [ ! `use gtk` ]; then
mv -f scripts/Makefile.in ${T}/Makefile.in
sed -e "s:= bluepin:= :" \
${T}/Makefile.in > scripts/Makefile.in
fi
}
src_compile() {
econf
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc README
sed -e "s:\(pin_helper \).*:\1/etc/bluetooth/pin;:" \
-e "s:security auto;:security user;:" \
-i ${D}/etc/bluetooth/hcid.conf
exeinto /etc/init.d
newexe ${FILESDIR}/bluetooth.rc bluetooth
exeinto /etc/bluetooth
newexe ${FILESDIR}/pin.sample pin
fperms 0700 /etc/bluetooth/pin
}
pkg_postinst() {
einfo ""
einfo "A startup script has been installed in /etc/init.d/bluetooth."
einfo "RFComm devices are found in /dev/bluetooh/rfcomm/* instead of /dev/rfcomm*"
einfo "If you need to set a PIN, edit /etc/bluetooth/pin"
einfo ""
}
|