blob: a9e657ea156a0306de4cb9ba6e9d78aff3ea3ce9 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ettercap/ettercap-0.6.5.ebuild,v 1.2 2002/07/11 06:30:42 drobbins Exp $
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"
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}/*
}
|