blob: a5130510bf3665d74bab4c9cba9b754a4c4b4878 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/aircrack-ng/aircrack-ng-0.4.ebuild,v 1.1 2006/04/18 22:55:44 vanquirius Exp $
inherit toolchain-funcs eutils
DESCRIPTION="WLAN tool for breaking 802.11 WEP keys"
HOMEPAGE="http://www.aircrack-ng.org"
SRC_URI="http://download.aircrack-ng.org/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="net-libs/libpcap"
src_compile() {
emake -e CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
make prefix=/usr docdir="/usr/share/doc/${PF}" destdir="${D}" install \
|| die "make install failed"
}
|