blob: 792e99ea2da206e1d4a67b3c0f1f5acc40679585 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/kismet-ubertooth/kismet-ubertooth-2012.10.1.ebuild,v 1.3 2012/10/31 17:43:25 zerochaos Exp $
EAPI="4"
inherit multilib
MY_PV=${PV/\./-}
MY_PV=${MY_PV/./-R}
S="${WORKDIR}/ubertooth-${MY_PV}"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="git://ubertooth.git.sourceforge.net/gitroot/ubertooth/ubertooth"
SRC_URI=""
inherit git-2
KEYWORDS=""
else
SRC_URI="mirror://sourceforge/ubertooth/ubertooth-${MY_PV}.tar.xz"
KEYWORDS="~amd64 ~arm ~x86"
fi
DESCRIPTION="Provides basic bluetooth support in kismet"
HOMEPAGE="http://ubertooth.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=">=net-wireless/kismet-2011.03.2-r1 \
>=net-wireless/ubertooth-${PV} \
>=net-libs/libbtbb-${PV} \
virtual/libusb:1"
RDEPEND="${DEPEND}"
src_compile() {
if has_version =net-wireless/kismet-9999; then
cd "${S}/host/kismet/plugin-ubertooth-phyneutral" || die
else
cd "${S}/host/kismet/plugin-ubertooth" || die
fi
emake KIS_SRC_DIR="/usr/include/kismet/"
}
src_install() {
if has_version =net-wireless/kismet-9999; then
cd "${S}/host/kismet/plugin-ubertooth-phyneutral" || die
else
cd "${S}/host/kismet/plugin-ubertooth" || die
fi
emake DESTDIR="${ED}" LIBDIR="/$(get_libdir)" KIS_SRC_DIR="/usr/include/kismet/" install
}
pkg_postinst() {
ewarn "This package must be rebuilt every time kismet is rebuilt. Or else."
}
|