blob: c6b6b5768dc3614bfb8d0b7b00f61503bfc0ddd8 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/wepdecrypt/wepdecrypt-0.8.ebuild,v 1.6 2007/11/11 06:29:12 mr_bones_ Exp $
inherit eutils
MY_P="${P}"
DESCRIPTION="Enhanced version of WepAttack a tool for breaking 802.11 WEP keys"
HOMEPAGE="http://wepdecrypt.sourceforge.net/"
SRC_URI="mirror://sourceforge/wepdecrypt/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="X"
RDEPEND="X? ( >=x11-libs/fltk-1.1.6 )
sys-libs/zlib
net-libs/libpcap
dev-libs/openssl"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-build.patch"
}
src_compile() {
econf $(use_enable X gui) || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}"
}
|