homebrew-core/Formula/nvi.rb

61 lines
2.5 KiB
Ruby

class Nvi < Formula
desc "44BSD re-implementation of vi"
homepage "https://sites.google.com/a/bostic.com/keithbostic/vi/"
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/n/nvi/nvi_1.81.6.orig.tar.gz"
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/n/nvi/nvi_1.81.6.orig.tar.gz"
sha256 "8bc348889159a34cf268f80720b26f459dbd723b5616107d36739d007e4c978d"
revision 3
bottle do
cellar :any
sha256 "a789fc3d07b258beb99140f2488a8b0ae8f16f0470a5e1f8a195314dc5b3458d" => :sierra
sha256 "858fe0fc9589a4f2bf3ab3644677805440910e107ea31a3fe7d3a579c8031113" => :el_capitan
sha256 "07aacc59e81b122e4b34444d1e47d5e102cfc7e281bbae1d75bde4b5ac3af1fc" => :yosemite
end
depends_on "xz" => :build # Homebrew bug. Shouldn't need declaring explicitly.
depends_on "berkeley-db"
# Patches per MacPorts
# The first corrects usage of BDB flags.
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/8ef45e8b/nvi/patch-common__db.h"
sha256 "d6c67a129cec0108a0c90fd649d79de65099dc627b10967a1fad51656f519800"
end
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/8ef45e8b/nvi/patch-dist__port.h.in"
sha256 "674adb27810da8f6342ffc912a54375af0ed7769bfa524dce01600165f78a63b"
end
patch :p0 do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/8ef45e8b/nvi/patch-ex_script.c.diff"
sha256 "742c4578319ddc07b0b86482b4f2b86125026f200749e07c6d2ac67976204728"
end
# Upstream have been pretty inactive for a while, so we may want to kill this
# formula at some point unless that changes. We're leaning hard on Debian now.
patch do
url "https://mirrors.ocf.berkeley.edu/debian/pool/main/n/nvi/nvi_1.81.6-13.debian.tar.xz"
mirror "https://mirrorservice.org/sites/ftp.debian.org/debian/pool/main/n/nvi/nvi_1.81.6-13.debian.tar.xz"
sha256 "306c6059d386a161b9884535f0243134c8c9b5b15648e09e595fd1b349a7b9e1"
apply "patches/03db4.patch",
"patches/19include_term_h.patch",
"patches/24fallback_to_dumb_term.patch",
"patches/26trailing_tab_segv.patch",
"patches/27support_C_locale.patch",
"patches/31regex_heap_overflow.patch"
end
def install
cd "dist" do
system "./configure", "--prefix=#{prefix}",
"--program-prefix=n",
"--disable-dependency-tracking"
system "make"
ENV.deparallelize
system "make", "install"
end
end
end