blob: 2769fa2548fcb69c8bbab8e8627f1801e69f701a (
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
46
47
48
49
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
AUTOTOOLS_IN_SOURCE_BUILD="1"
inherit autotools-utils
DESCRIPTION="Brute force attack against Wifi Protected Setup"
HOMEPAGE="https://code.google.com/p/reaver-wps/"
SRC_URI="https://reaver-wps.googlecode.com/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
net-libs/libpcap
dev-db/sqlite:3
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P}/src"
PATCHES=(
"${FILESDIR}"/${P}_cflags.patch
"${FILESDIR}"/${P}_memset.patch
"${FILESDIR}"/${P}_parallel-make.patch
"${FILESDIR}"/${P}_var_db.patch
"${FILESDIR}"/${P}_wps_registrar.patch
)
src_compile() {
emake V=1
# doman accept only uncompressed files #619966
gzip -d ../docs/reaver.1.gz || die
}
src_install() {
dobin wash reaver
insinto "/var/db/reaver"
doins reaver.db
doman ../docs/reaver.1
dodoc ../docs/README ../docs/README.REAVER ../docs/README.WASH
}
|