mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Copyright 1999-2023 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="A utility for bluetooth scanning and discovery"
|
|
HOMEPAGE="https://www.pentest.co.uk/downloads.html"
|
|
#SRC_URI="https://www.pentest.co.uk/src/${P}.tar.bz2"
|
|
SRC_URI="https://dev.pentoo.ch/~blshkv/distfiles/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="net-wireless/bluez:=
|
|
>=dev-libs/libxml2-2.6
|
|
>sys-libs/ncurses-5.4:=[tinfo]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
sed -i -e 's/-Wimplicit-function-dec //g' configure.in
|
|
sed -i 's#-std=c99#-std=gnu99#g' configure.in
|
|
eapply "${FILESDIR}/fix-buffer-overflow.patch"
|
|
eapply "${FILESDIR}/fix-typo-config.patch"
|
|
eapply_user
|
|
mv configure.in configure.ac
|
|
eautoreconf
|
|
sed -i -e '/dtd/ s:/usr/local/:/:' -e '/oui/ s:local/share:share/btscanner:' btscanner.xml
|
|
}
|
|
src_configure() {
|
|
econf --datadir="/usr/share/btscanner"
|
|
sed -i 's/-lncurses/-lncursesw -ltinfo/' Makefile
|
|
}
|
|
src_install() {
|
|
DESTDIR="${ED}" emake install
|
|
dodoc AUTHORS ChangeLog README NEWS TODO USAGE
|
|
}
|