blob: 8a8585ee3b9e09d5cc5a29a59c9ed883336b97ba (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-wireless/aircrack-ng/aircrack-ng-1.0_rc1.ebuild,v 1.1 2009/01/05 05:27:49 rbu Exp $
EAPI=1
inherit versionator toolchain-funcs
MY_PV=$(replace_version_separator 2 '-')
DESCRIPTION="WLAN tools for breaking 802.11 WEP/WPA keys"
HOMEPAGE="http://www.aircrack-ng.org"
SRC_URI="http://download.aircrack-ng.org/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+sqlite"
DEPEND="dev-libs/openssl
sqlite? ( >=dev-db/sqlite-3.4 )"
RDEPEND="${DEPEND}
net-wireless/iw"
S="${WORKDIR}/${PN}-${MY_PV}"
have_sqlite() {
use sqlite && echo "true" || echo "false"
}
src_compile() {
emake CC="$(tc-getCC)" LD="$(tc-getLD)" sqlite=$(have_sqlite) || die "emake failed"
}
src_install() {
emake \
prefix="/usr" \
mandir="/usr/share/man/man1" \
DESTDIR="${D}" \
sqlite=$(have_sqlite) \
install \
|| die "emake install failed"
dodoc AUTHORS ChangeLog README
}
|