blob: 6346d57963a72677937e1697a7b3ba3b36039cff (
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
46
47
48
49
50
51
52
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.7.4.ebuild,v 1.1 2011/12/06 09:09:58 radhermit Exp $
EAPI=4
inherit eutils autotools
DESCRIPTION="A suite for man in the middle attacks and network mapping"
HOMEPAGE="http://ettercap.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug gtk ncurses pcre ssl"
# libtool is needed because it provides libltdl (needed for plugins)
RDEPEND=">=net-libs/libnet-1.1.2.1-r1
net-libs/libpcap
sys-devel/libtool
sys-libs/zlib
gtk? (
>=dev-libs/glib-2.2.2:2
>=x11-libs/gtk+-2.2.2:2
)
ncurses? ( sys-libs/ncurses )
pcre? ( dev-libs/libpcre )
ssl? ( dev-libs/openssl )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/flex
virtual/yacc"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.7.3-as-needed.patch
epatch "${FILESDIR}"/${P}-autotools.patch
epatch "${FILESDIR}"/${P}-flags.patch
eautoreconf
}
src_configure() {
econf \
$(use_enable debug) \
$(use_enable gtk) \
$(use_with ncurses libncurses "${EPREFIX}"/usr) \
$(use_with pcre libpcre "${EPREFIX}"/usr) \
$(use_with ssl openssl "${EPREFIX}"/usr)
}
|