aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ettercap.rb
diff options
context:
space:
mode:
authorCasper Thomsen2012-01-18 23:17:32 +0100
committerAdam Vandenberg2012-04-17 21:00:48 -0700
commit08a2b8b75a4b0a610ef710ed24455d6ea5befab7 (patch)
tree18961be1e5a38d3dca5cef04feb28c159636c3f8 /Library/Formula/ettercap.rb
parentc94e07696c291409323bd1c594ab48f43895ecf3 (diff)
downloadhomebrew-08a2b8b75a4b0a610ef710ed24455d6ea5befab7.tar.bz2
ettercap: Compiles with plugins
Adding --enable-plugins and skip_clean 'bin' since dyld will otherwise fail. Closes #9667. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ettercap.rb')
-rw-r--r--Library/Formula/ettercap.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/ettercap.rb b/Library/Formula/ettercap.rb
index c53239b1e..6dcb83a8b 100644
--- a/Library/Formula/ettercap.rb
+++ b/Library/Formula/ettercap.rb
@@ -8,6 +8,9 @@ class Ettercap < Formula
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
@@ -19,7 +22,7 @@ class Ettercap < Formula
"--mandir=#{man}",
"--infodir=#{info}",
"--disable-gtk",
- "--disable-plugins",
+ "--enable-plugins",
"--with-openssl=/usr",
"--with-libpcap=/usr",
"--with-libncurses=/usr",