blob: e2c176d780a4f9edf433f95e43655352d4ac8689 (
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
|
# Copyright 1999-2002 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.7.ebuild,v 1.3 2002/08/14 12:11:49 murphy 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"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc sparc64"
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}/*
}
|