* Most tools compiles fine, still need a ussp-push one

This commit is contained in:
grimmlin 2009-11-02 13:23:19 +00:00
parent 57916ad012
commit e463d69405
2 changed files with 39 additions and 0 deletions

View file

@ -1,4 +1,5 @@
AUX bluemaho 50 RMD160 cebb4ff4c66cb943be41657308af2361db0ce411 SHA1 e79152cfde43f31cf7ff2c1c3a08ff359dec0219 SHA256 1623940d95c958f9dcdb0c5dd8e114dc16431baa9a4c0a1ddc8d44c52022a876
AUX btftp-libxml.patch 1065 RMD160 c2bb428225879824bb9c30e25790821664c0ec5f SHA1 16911c47c073a82d291b787a894ce3db04dfcbb4 SHA256 c8b83e3fad9952c5a0dd47daff487c896df86c3bed635da715af842322f093c5
DIST BlueMaho?action=AttachFile&do=get&target=bluemaho_v090417.tgz 916884 RMD160 57ed5b2967ef659b8e2a80bb8d3ff3908e27341b SHA1 216db6f836b20b7f70f3a56bec95ab0a607a2af5 SHA256 9b36bcf73a59d7c03a2262287c4aa37fbd308801d6fa4d3cbc86b9d15ad7ff1c
EBUILD bluemaho-090417-r1.ebuild 935 RMD160 ff0912027404216e27ee105110c8553d68d37933 SHA1 4f74c4a50d7c43fb3491929f1e32a415316d41d5 SHA256 da22da80767502e8e5b1ae57e3e7a53eb4ec8c2baea8ac8b81488e1ed5867ff9
EBUILD bluemaho-090417.ebuild 1068 RMD160 90d406d7602c33d43129503af20d34d97946a00b SHA1 fc69ae930eb5fd1e7fb0e75a24a415eb6b85109e SHA256 c79e88478379950ab5bbdc3a977949194cc1fff792fa5790b1e8412a88aaed9d

View file

@ -0,0 +1,38 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit eutils
MY_P="${PN}_v${PV}"
DESCRIPTION="BlueMaho is GUI-shell (interface) for suite of tools for testing security of bluetooth devices"
HOMEPAGE="http://wiki.thc.org/BlueMaho"
SRC_URI="http://wiki.thc.org/BlueMaho?action=AttachFile&do=get&target=${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="net-wireless/bluez[test-programs]
net-wireless/bt-audit
dev-libs/libxml2
dev-python/wxpython
dev-libs/libusb
sys-libs/readline"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P/_v/-}"
src_compile() {
epatch "${FILESDIR}/btftp-libxml.patch"
cd ${S}
sed -e 's/Eterm/xterm/' -i config/default.conf
cd config
sh build.sh || die "emake failed"
}
src_install() {
dodir /usr/lib/${PN}
cp -R "${S}"/* "${D}"/usr/lib/${PN} || die "Copy files failed"
dobin "${FILESDIR}/${PN}"
}