2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/ettercap
16 PKG_MD5SUM:=28fb15cd024162c55249888fe1b97820
22 include $(INCLUDE_DIR)/package.mk
23 include $(INCLUDE_DIR)/nls.mk
25 define Package/ettercap
28 DEPENDS:=+libpcap +libnet1 +libopenssl +libpcre +libncurses +libltdl +libpthread +zlib
29 TITLE:=Ettercap is a suite for man in the middle attacks on LAN.
30 URL:=http://ettercap.sourceforge.net
33 define Package/ettercap/description
34 It features sniffing of live connections, content filtering on the fly
35 and many other interesting tricks.
36 It supports active and passive dissection of many protocols (even
37 ciphered ones) and includes many feature for network and host analysis.
40 define Package/ettercap/conffiles
45 $(call Build/Prepare/Default)
46 # remove default optimization flags set by configure
47 $(SED) 's,DEBUG_FLAGS=.*,DEBUG_FLAGS=,g' $(PKG_BUILD_DIR)/configure
51 --with-libpcap="$(STAGING_DIR)/usr" \
52 --with-libnet="$(STAGING_DIR)/usr/lib/libnet-1.1.x" \
53 --with-openssl="$(STAGING_DIR)/usr" \
54 --with-libpcre="$(STAGING_DIR)/usr" \
55 --with-iconv="$(ICONV_PREFIX)" \
56 --with-libncurses="$(STAGING_DIR)/usr" \
62 DESTDIR="$(PKG_INSTALL_DIR)"
64 define Package/ettercap/install
65 $(INSTALL_DIR) $(1)/etc
66 $(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/etter.conf $(1)/etc/
67 $(INSTALL_DIR) $(1)/usr/bin
68 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/etter{cap,filter,log} $(1)/usr/bin/
69 $(INSTALL_DIR) $(1)/usr/lib/ettercap
70 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/ettercap/*.so $(1)/usr/lib/ettercap/
71 $(INSTALL_DIR) $(1)/usr/share/ettercap
72 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/ettercap/* $(1)/usr/share/ettercap/
75 $(eval $(call BuildPackage,ettercap))