aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/dsniff.rb
diff options
context:
space:
mode:
authorJack Nagel2014-03-31 12:57:21 -0500
committerJack Nagel2014-03-31 12:57:31 -0500
commitce11361006b2a382c5b5e0d704013b5a646adb99 (patch)
tree20e884df58b1671a9d8a46df381052d5f72bdc77 /Library/Formula/dsniff.rb
parent3fa932331e5ee2d03b151f721b37468ad378120f (diff)
downloadhomebrew-ce11361006b2a382c5b5e0d704013b5a646adb99.tar.bz2
Move dnsiff to the boneyard
Closes #27642.
Diffstat (limited to 'Library/Formula/dsniff.rb')
-rw-r--r--Library/Formula/dsniff.rb58
1 files changed, 0 insertions, 58 deletions
diff --git a/Library/Formula/dsniff.rb b/Library/Formula/dsniff.rb
deleted file mode 100644
index 791b9ded9..000000000
--- a/Library/Formula/dsniff.rb
+++ /dev/null
@@ -1,58 +0,0 @@
-require 'formula'
-
-class NoBdb5 < Requirement
- satisfy(:build_env => false) { !Formula["berkeley-db"].installed? }
-
- def message; <<-EOS.undent
- This software can fail to compile when Berkeley-DB 5.x is installed.
- You may need to try:
- brew unlink berkeley-db
- brew install dsniff
- brew link berkeley-db
- EOS
- end
-end
-
-class Dsniff < Formula
- homepage 'http://monkey.org/~dugsong/dsniff/'
- url 'http://monkey.org/~dugsong/dsniff/beta/dsniff-2.4b1.tar.gz'
- sha1 '25cfea26e9bbe016451180758a49d4d5bc9317d3'
-
- depends_on NoBdb5
- depends_on 'libnet'
- depends_on 'libnids'
-
- def patches
- {:p0 => [
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-arpspoof.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-dnsspoof.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-filesnarf.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-macof.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-pcaputil.c",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-record.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-sshcrypto.c",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-sshmitm.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-sshow.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-tcp_raw.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-tcp_raw.h.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-tcpkill.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-tcpnice.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-trigger.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-trigger.h.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-urlsnarf.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-webmitm.c.diff",
- "https://trac.macports.org/export/90933/trunk/dports/net/dsniff-devel/files/patch-webspy.c.diff"
- ]}
- end
-
- def install
- ENV.append 'CFLAGS', "-DBIND_8_COMPAT"
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--mandir=#{man}",
- "--with-libnet=#{HOMEBREW_PREFIX}",
- "--with-libnids=#{HOMEBREW_PREFIX}"
- system "make"
- system "make install"
- end
-end