blob: 5eda487663eda92e056df70253e1a31e6a07084a (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/yersinia/yersinia-0.7.1.ebuild,v 1.2 2009/03/18 19:52:43 rbu Exp $
inherit eutils
DESCRIPTION="A layer 2 attack framework"
HOMEPAGE="http://www.yersinia.net/"
SRC_URI="http://www.yersinia.net/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk ncurses"
DEPEND="ncurses? ( >=sys-libs/ncurses-5.5 )
gtk? ( =x11-libs/gtk+-2* )
>=net-libs/libnet-1.1.2
>=net-libs/libpcap-0.9.4"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-no-ncurses.patch"
sed -e "s:^\(CFLAGS = \).*:\1${CFLAGS}:" -i src/Makefile.in
}
src_compile() {
econf \
--enable-admin \
--with-pcap-includes=/usr/include \
$(use_with ncurses) \
$(use_enable gtk)
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog FAQ README THANKS TODO || die
}
|