# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="ncurses based bluetooth scanner" HOMEPAGE="http://www.pentest.co.uk/" SRC_URI="http://www.pentest.co.uk/src/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND="sys-libs/ncurses dev-libs/libxml2 net-wireless/bluez-libs" src_unpack() { unpack ${A} cd ${S} } src_compile() { econf || die "econf failed" sed -i 's/-Wimplicit-function-dec//i' Makefile sed -i 's/\/usr\/local\/etc/\/etc/i' btscanner.xml sed -i 's/\/usr\/local\/share\/oui.txt/\/usr\/share\/btscanner\/oui.txt/i' btscanner.xml emake || die "emake failed" } src_install() { insinto /usr/share/btscanner doins oui.txt insinto /etc doins btscanner.dtd btscanner.xml into /usr dobin btscanner dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README TODO USAGE }