blob: 6aff518ee19030ca1925f333c36d4fbb2c00d367 (
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
|
# 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.9.ebuild,v 1.1 2003/02/28 16:49:23 mholzer Exp $
inherit flag-o-matic
IUSE="ssl ncurses"
DESCRIPTION="Ettercap is a multipurpose sniffer/interceptor/logger for switched LAN."
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://ettercap.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~sparc ~alpha ~ppc"
DEPEND="virtual/glibc
>=sys-apps/sed-4.0.5
>=sys-apps/portage-2.0.45-r3
ncurses? ( sys-libs/ncurses )
ssl? ( dev-libs/openssl )"
RDEPEND="virtual/glibc
ncurses? ( sys-libs/ncurses )
ssl? ( dev-libs/openssl )"
src_compile() {
# NOTE: gtk support is still experimental code and has _NOT_ been included here
econf `use_enable ncurses` \
`use_with ssl openssl` \
--enable-https \
--enable-plugins \
--disable-debug
sed -i "s:/usr/share/ettercap/:/etc/ettercap/:; \
s:/usr/doc/${P}/:/usr/share/doc/${PF}/:" ettercap.8
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_preinst() {
prepalldocs
dosym /etc/ettercap /usr/share/ettercap
}
pkg_postrm() {
rm /usr/share/ettercap
}
|