aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ettercap.rb
blob: 6dcb83a8b7243e61a6d4e87f1c125228c74d2be3 (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
38
39
40
41
42
43
44
45
46
require 'formula'

class Ettercap < Formula
  url 'http://downloads.sourceforge.net/project/ettercap/ettercap/0.7.4-Lazarus/ettercap-0.7.4.1.tar.gz'
  homepage 'http://ettercap.sourceforge.net'
  md5 '8e13ff5504b5bb4f1fc6a465d57ce7ea'

  depends_on 'pcre'
  depends_on 'libnet'

  # Stripping breaks plugin support
  skip_clean 'bin'

  # The below DATA patch fixes an issue where the linker doesn't get passed the ettercap-built
  # 'libwdg' archive which is used for the ncurses interface, thus causing a build failure.
  # See https://github.com/mxcl/homebrew/pull/9540
  def patches; DATA; end

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--infodir=#{info}",
                          "--disable-gtk",
                          "--enable-plugins",
                          "--with-openssl=/usr",
                          "--with-libpcap=/usr",
                          "--with-libncurses=/usr",
                          "--with-libpcre=#{HOMEBREW_PREFIX}",
                          "--with-libnet=#{HOMEBREW_PREFIX}"
    system "make install"
  end
end

__END__
--- a/src/Makefile.in	2009-12-20 14:09:50.000000000 -0500
+++ b/src/Makefile.in	2009-12-20 14:10:42.000000000 -0500
@@ -47,7 +47,7 @@
 bin_PROGRAMS = ettercap$(EXEEXT)
 @HAVE_DN_EXPAND_TRUE@am__append_1 = dissectors/ec_dns.c
 @OPENSSL_TRUE@am__append_2 = dissectors/ec_ssh.c
-@NCURSES_TRUE@am__append_3 = interfaces/curses/libec_curses.a 
+@NCURSES_TRUE@am__append_3 = interfaces/curses/libec_curses.a interfaces/curses/widgets/libwdg.a
 @GTK_TRUE@am__append_4 = interfaces/gtk/libec_gtk.a
 subdir = src
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4