aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-08-21 08:50:35 -0700
committerAdam Vandenberg2012-08-21 08:50:35 -0700
commitbe059dcb0db304e231449c15548482a34e56084c (patch)
tree0cdfe6c2770a1f42a527a56c60be56e2d13ee315 /Library
parentdfd6c5cab147c36824fde93c747db5dd5e76c7fa (diff)
downloadhomebrew-be059dcb0db304e231449c15548482a34e56084c.tar.bz2
ettercap 0.7.4.1
Also marking as fails with clang. Fixes #14347.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ettercap.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Formula/ettercap.rb b/Library/Formula/ettercap.rb
index 6dcb83a8b..93904729c 100644
--- a/Library/Formula/ettercap.rb
+++ b/Library/Formula/ettercap.rb
@@ -1,16 +1,22 @@
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'
+ url 'http://downloads.sourceforge.net/project/ettercap/ettercap/0.7.4-Lazarus/ettercap-0.7.4.1.tar.gz'
+ sha1 'f4263230a6065af96b33093f39ed9a387453e3b2'
+ depends_on 'pkg-config' => :build
depends_on 'pcre'
depends_on 'libnet'
# Stripping breaks plugin support
skip_clean 'bin'
+ fails_with :clang do
+ build '421'
+ cause 'Multiple "converts between pointers to integer types with different sign" warnings.'
+ end
+
# 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