summaryrefslogtreecommitdiff
blob: e3d2c458dd5ad9a9dc0c0c705b5ef0a1d0d719cd (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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils autotools

DESCRIPTION="Extract information from Bluetooth devices"
HOMEPAGE="http://www.pentest.co.uk"
SRC_URI="http://www.pentest.co.uk/src/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="net-wireless/bluez
	sys-libs/ncurses
	dev-lang/perl
	dev-libs/libxml2"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# Apply patch to strip -Wimplicit-function-dec
	epatch "${FILESDIR}"/${P}-configure.in.patch

	# Apply patch for moved DTD and oui.txt
	epatch "${FILESDIR}"/${P}-btscanner.xml.patch

	# Reconfigure
	eautoreconf
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"

	# Move DTD file
	dodir /usr/share/btscanner || die "dodir failed"
	mv "${D}"/etc/btscanner.dtd "${D}"/usr/share/btscanner
	mv "${D}"/usr/share/oui.txt "${D}"/usr/share/btscanner

	dodoc AUTHORS README USAGE || die "dodoc failed"
}