mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 11:00:48 +02:00
* Compiles fine with bluez-4
This commit is contained in:
parent
e463d69405
commit
1daba8439a
2 changed files with 32 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
DIST btscanner-2.1.tar.bz2 442492 RMD160 ada5323aae528a017215c38ea5dd08ddeddc1b55 SHA1 9396bc977ea9b33ebf4f699628f0cdd66688529d SHA256 7fc6e81dc64bdfe8bbca23aea9cd74d7be5a29210ef9620704c180b1a0f929d0
|
||||
EBUILD btscanner-2.1-r2.ebuild 990 RMD160 b9507d7f18c0f2f0593c775885255c154a600491 SHA1 c6f361941d1543c5c8b50a8d35b84d5cf8599cf1 SHA256 784b14c84f28cbe9522081c94c1a3fde4232218b226bc43d85e326bb78358150
|
||||
EBUILD btscanner-2.1-r3.ebuild 1030 RMD160 9dd26457f8bd0ddc2b12e467684675191377883e SHA1 fd9e568866913485585dc6afaef1a88ade6c962d SHA256 1dba2f1cacd83c15be94d4c0acefd0f8a113ffb9732c8e4f21c09234a87007f8
|
||||
|
|
|
|||
31
net-wireless/btscanner/btscanner-2.1-r3.ebuild
Normal file
31
net-wireless/btscanner/btscanner-2.1-r3.ebuild
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Copyright 1999-2005 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /root/portage/net-wireless/btscanner/btscanner-2.1.ebuild,v 1.1.1.1 2006/03/09 22:54:57 grimmlin Exp $
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="A utility for bluetooth scanning and discovery"
|
||||
HOMEPAGE="http://www.pentest.co.uk/cgi-bin/viewcat.cgi?cat=downloads"
|
||||
SRC_URI="http://www.pentest.co.uk/src/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=" || ( net-wireless/bluez
|
||||
( >=net-wireless/bluez-utils-2.15
|
||||
>=net-wireless/bluez-libs-2.15 ) )
|
||||
>=dev-libs/libxml2-2.6
|
||||
>sys-libs/ncurses-5.4"
|
||||
|
||||
src_compile() {
|
||||
sed -i -e 's/-Wimplicit-function-dec //g' configure*
|
||||
sed -i -e '/dtd/ s:/usr/local/:/:' -e '/oui/ s:local/share:share/btscanner:' btscanner.xml
|
||||
econf --datadir="/usr/share/btscanner" || die "econf failed"
|
||||
emake || die "emake failed"
|
||||
}
|
||||
src_install() {
|
||||
einstall datadir="${D}/usr/share/btscanner" || die "install failed"
|
||||
dodoc AUTHORS ChangeLog README NEWS TODO USAGE
|
||||
}
|
||||
Loading…
Reference in a new issue