blob: cfd7ad1a8fa9ffb1ac8a63a7e660c348a8999701 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.6.11.ebuild,v 1.9 2004/06/24 22:01:14 agriffis Exp $
MY_PV=0.6.b
MY_P=${PN}-${MY_PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="multipurpose sniffer/interceptor/logger for switched LAN"
HOMEPAGE="http://ettercap.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha arm hppa ~amd64"
IUSE="ssl ncurses debug"
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_enable debug debug` \
`use_with ssl openssl` \
`use_enable ssl https` \
--enable-plugins \
--datadir=/etc \
--disable-debug \
--disable-gtk \
|| die
sed -i "s:/usr/share/ettercap/:/etc/ettercap/:; \
s:/usr/doc/${P}/:/usr/share/doc/${PF}/:" ettercap.8
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."
}
|