95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
33 lines
1.3 KiB
Ruby
33 lines
1.3 KiB
Ruby
class Fragroute < Formula
|
|
desc "Intercepts, modifies, and rewrites egress traffic for a specified host"
|
|
homepage "http://www.monkey.org/~dugsong/fragroute/"
|
|
url "http://www.monkey.org/~dugsong/fragroute/fragroute-1.2.tar.gz"
|
|
sha256 "6899a61ecacba3bb400a65b51b3c0f76d4e591dbf976fba0389434a29efc2003"
|
|
|
|
depends_on "libdnet"
|
|
depends_on "libevent"
|
|
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/105753/trunk/dports/net/fragroute/files/configure.patch"
|
|
sha256 "215e21d92304e47239697945963c61445f961762aea38afec202e4dce4487557"
|
|
end
|
|
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/105753/trunk/dports/net/fragroute/files/fragroute.c.patch"
|
|
sha256 "f4475dbe396ab873dcd78e3697db9d29315dcc4147fdbb22acb6391c0de011eb"
|
|
end
|
|
|
|
patch :p0 do
|
|
url "https://trac.macports.org/export/105753/trunk/dports/net/fragroute/files/pcaputil.c.patch"
|
|
sha256 "c1036f61736289d3e9b9328fcb723dbe609453e5f2aab4875768068faade0391"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--with-libevent=#{Formula["libevent"].opt_prefix}",
|
|
"--with-libdnet=#{Formula["libdnet"].opt_prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|