blob: 7b5209d13c5db023eabe26856c0b425273bcd642 (
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
|
# 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.7.ebuild,v 1.7 2002/12/15 11:58:45 bjb Exp $
IUSE="ssl"
S=${WORKDIR}/${P}
DESCRIPTION="Ettercap is a multipurpose sniffer/interceptor/logger for switched LAN."
SRC_URI="http://ettercap.sourceforge.net/download/${P}.tar.gz"
HOMEPAGE="http://ettercap.sourceforge.net"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc alpha"
DEPEND="sys-libs/ncurses
ssl? ( dev-libs/openssl )"
src_compile() {
local myconf
use ssl && myconf="${myconf} --enable-https"
./configure --host=${CHOST} --prefix=/usr --enable-ncurses --enable-plugins ${myconf}
assert
make CFLAG="${CFLAGS} -funroll-loops -fomit-frame-pointer -Wall" || die
make CFLAG="${CFLAGS} -funroll-loops -fomit-frame-pointer -Wall" plug-ins || die
}
src_install() {
make prefix=${D}/usr MANDIR=${D}/usr/share/man complete_install || die
rm ${D}/usr/share/doc/${P}/ettercap.fr.8.in.gz
gzip ${D}/usr/share/doc/${P}/*
}
|