blob: e3b2444fa83882e3358c2ee602fe6c8e1dca1b83 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.6.10-r1.ebuild,v 1.1 2003/06/12 08:56:37 liquidx Exp $
inherit flag-o-matic
IUSE="ssl ncurses"
MY_PV="0.6.a"
MY_P=${PN}-${MY_PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Ettercap is a multipurpose sniffer/interceptor/logger for switched LAN."
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
HOMEPAGE="http://ettercap.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc ~alpha ~ppc"
RDEPEND="virtual/glibc
ncurses? ( sys-libs/ncurses )
ssl? ( dev-libs/openssl )"
DEPEND=">=sys-apps/sed-4.0.5
>=sys-apps/portage-2.0.45-r3
${RDEPEND}"
src_compile() {
# NOTE: gtk support is still experimental code and has _NOT_ been included here
econf \
`use_enable ncurses` \
`use_with ssl openssl` \
`use_enable ssl https` \
--enable-plugins \
--datadir=/etc \
--disable-debug \
--disable-gtk
sed -i "s:/usr/share/ettercap/:/etc/ettercap/:; \
s:/usr/doc/${P}/:/usr/share/doc/${PF}/:" ettercap.8
# not sure why someone put this in
# append-flags "-funroll-loops -fomit-frame-pointer -Wall"
emake CFLAG="${CFLAGS}" || die "failed to compile"
emake CFLAG="${CFLAGS}" plug-ins || die "failed to compile plugins"
}
src_install() {
make prefix=${D}/usr \
MANDIR=${D}/usr/share/man \
DATADIR=${D}/etc/ettercap \
DOCDIR=${D}/usr/share/doc/${PF} \
complete_install || die "make complete_install failed"
rm ${D}/usr/share/doc/${PF}/{ettercap.fr.8.in,COPYING,INSTALL} \
${D}/etc/ettercap/{AUTHORS,THANKS}
}
pkg_postinst() {
einfo "To use ARP Poisioning, you must generate your own SSL certificate"
einfo "by running:"
einfo ""
einfo " ettercap -w"
einfo ""
einfo "and then follow the instructions."
}
|