c1ab139712
-- Changes: Now the connections are buffered, so you can view past event data. A new sniffing method (port stealing) was added as a plugin. The SMB dissector and troll plugin were enhanced. Three new plugins, confusion, hunter, and SMB suite, have been added. The demonization problem and the StateMachine timeout session handling problem were fixed. Also enable gtk support (which was experimental in the last version), adding of no_x11 FLAVOR, although with gtk enabled you also have the ncurses interface available.
43 lines
883 B
Makefile
43 lines
883 B
Makefile
# $OpenBSD: Makefile,v 1.23 2003/05/13 08:57:47 margarida Exp $
|
|
|
|
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
|
|
|
|
COMMENT= "multi-purpose sniffer/interceptor/logger"
|
|
|
|
VER= 0.6.a
|
|
DISTNAME= ettercap-${VER}
|
|
CATEGORIES= net
|
|
|
|
HOMEPAGE= http://ettercap.sourceforge.net/
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ettercap/} \
|
|
${MASTER_SITE_PACKETSTORM:=sniffers/ettercap/}
|
|
|
|
MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= gcc3
|
|
MODGCC3_ARCHES= sparc64
|
|
|
|
FLAVORS= no_x11
|
|
FLAVOR?=
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-https
|
|
|
|
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
|
|
LIB_DEPENDS= gdk-x11-2.0.0.0,gdk_pixbuf-2.0.0.0,gtk-x11-2.0.0.0::x11/gtk+2
|
|
|
|
.if ${FLAVOR:L:Mno_x11}
|
|
CONFIGURE_ARGS+= --enable-gtk=no
|
|
.endif
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|