blob: 3ea823924245b27c7e7ed41aa0454b0e7d821b4e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wepattack/wepattack-0.1.3-r1.ebuild,v 1.2 2004/06/25 00:47:36 agriffis Exp $
inherit eutils
MY_P="WepAttack-${PV}"
DESCRIPTION="WLAN tool for breaking 802.11 WEP keys"
HOMEPAGE="http://wepattack.sourceforge.net/"
SRC_URI="mirror://sourceforge/wepattack/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="sys-libs/zlib
net-libs/libpcap
dev-libs/openssl"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PV}-filter-mac-address.patch
cd src
chmod +x wlan
sed -i \
-e "/^CFLAGS=/s:=:=${CFLAGS} :" \
-e 's:-fno-for-scope::g' \
Makefile
}
src_compile() {
cd src
emake || die
}
src_install() {
dobin src/wepattack run/wepattack_{inc,word} || die
insinto /etc
doins conf/wepattack.conf
dodoc README
}
|