6f6b551f07
Changes: 0.6.b 20030710 + Plugins now works with GTK+ interface + Updated the passive OS fingerprint database (1279 records) !! Fixed internal refreshing (for huge traffic loads) !! Fixed wifi-dump support !! Fixed doppleganger re-arp !! Fixed a problem with signed char under mac G3 !! Fixed some possible buffer overflows 0.6.a 20030507 + Buffered Data Connections (only for ncurses) + New Sniffing method (Port Stealing) + Updated the passive OS fingerprint database (1189 records) + enhanced smb dissector + enhanced troll plugin against request caching + NEW PLUGIN: Confusion,Hunter, SMB suite + partial wifi-dump support (experimental) !! Fixed demonization problem !! Fixed StateMachine problem !! a bouch of bug fix
40 lines
1 KiB
Makefile
40 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2003/12/18 03:01:38 xtraeme Exp $
|
|
|
|
DISTNAME= ettercap-0.6.b
|
|
CATEGORIES= security net
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ettercap/} \
|
|
http://ettercap.sourceforge.net/download/
|
|
|
|
MAINTAINER= nk@bsdirc.net
|
|
HOMEPAGE= http://ettercap.sourceforge.net/
|
|
COMMENT= Multipurpose sniffer/interceptor/logger for switched LAN
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-plugins \
|
|
--enable-https \
|
|
--disable-gtk
|
|
|
|
USE_BUILDLINK2= yes
|
|
|
|
USE_NCURSES= # newpad(), MAX_FORM_COMMAND
|
|
PTHREAD_OPTS+= require
|
|
MAKE_ENV+= MACHINE_ARCH=${MACHINE_ARCH}
|
|
LIBS+= -ldes
|
|
|
|
BUILD_DIRS= ${WRKSRC} ${WRKSRC}/plugins
|
|
INSTALL_DIRS= ${WRKSRC} ${WRKSRC}/plugins
|
|
|
|
.if ${MACHINE_ARCH} == "alpha"
|
|
GCC_REQD= 3.0
|
|
.endif
|
|
|
|
post-buildlink:
|
|
if [ ! -f /usr/include/des.h ]; then \
|
|
${LN} -s ${BUILDLINK_DIR}/include/openssl/des.h \
|
|
${BUILDLINK_DIR}/include; \
|
|
fi
|
|
|
|
.include "../../devel/ncurses/buildlink2.mk"
|
|
.include "../../security/openssl/buildlink2.mk"
|
|
.include "../../mk/pthread.buildlink2.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|