blob: b8f1a8810977c929ba6f5054bf44f9077aba6ba9 (
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
|
# 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-0.0_p534.ebuild,v 1.4 2012/07/28 09:30:45 zerochaos Exp $
EAPI="4"
inherit eutils multilib
DESCRIPTION="Provides basic bluetooth support in kismet"
HOMEPAGE="http://ubertooth.sourceforge.net/"
if [[ ${PV} == "9999" ]] ; then
ESVN_REPO_URI="https://ubertooth.svn.sourceforge.net/svnroot/ubertooth/trunk/host"
SRC_URI=""
inherit subversion
KEYWORDS=""
else
MY_PV="${PV/p/r}"
MY_PV="${MY_PV/0.0_/}"
SRC_URI="mirror://sourceforge/ubertooth/ubertooth-${MY_PV}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
S="${WORKDIR}/ubertooth-${MY_PV}/host/"
fi
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=">=net-wireless/kismet-2011.03.2-r1 \
>=net-libs/libbtbb-0.8 \
virtual/libusb:1"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${P}-respect-cflags.patch
}
src_compile() {
if has_version =net-wireless/kismet-9999; then
cd "${S}/kismet/plugin-ubertooth-phyneutral" || die
else
cd "${S}/kismet/plugin-ubertooth" || die
fi
emake KIS_SRC_DIR="/usr/include/kismet/"
}
src_install() {
if has_version =net-wireless/kismet-9999; then
cd "${S}/kismet/plugin-ubertooth-phyneutral" || die
else
cd "${S}/kismet/plugin-ubertooth" || die
fi
emake DESTDIR="${ED}" LIBDIR="/usr/$(get_libdir)" KIS_SRC_DIR="/usr/include/kismet/" KIS_DEST_DIR="${D}/usr/" install
}
pkg_postinst() {
ewarn "This package must be rebuilt every time kismet is rebuilt. Or else."
}
|