158 lines
4.8 KiB
Ruby
158 lines
4.8 KiB
Ruby
class Emacs < Formula
|
|
homepage "https://www.gnu.org/software/emacs/"
|
|
|
|
stable do
|
|
url "http://ftpmirror.gnu.org/emacs/emacs-24.4.tar.xz"
|
|
mirror "https://ftp.gnu.org/pub/gnu/emacs/emacs-24.4.tar.xz"
|
|
sha256 "47e391170db4ca0a3c724530c7050655f6d573a711956b4cd84693c194a9d4fd"
|
|
|
|
# Fix ns-antialias-text, broken in 24.4, from upstream:
|
|
# https://github.com/emacs-mirror/emacs/commit/604a4d21ead40691afe3efe13f0ba1000b2cd61a
|
|
# https://debbugs.gnu.org/cgi/bugreport.cgi?bug=18876
|
|
patch do
|
|
url "https://gist.githubusercontent.com/scotchi/66edaf426d7375c0f061/raw/4c5229a8a719f81fa6bd2e1e0c85d10b6f635765/emacs-fix-ns-antialias-text-mac-os.patch"
|
|
sha256 "fab5cf538ade6afa949640b0f81bdea26cb23b6d64ca714b687dee6f33ff270e"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
revision 4
|
|
sha256 "8ad572c583820fca6d09027ecad92160c3bfd56ae52244f09677ff86744d3148" => :yosemite
|
|
sha256 "b3b02b8fbb257a498ca4a163e36e40bcd0c77cd3a04001f0d1c85e661e11743c" => :mavericks
|
|
sha256 "d8fbe58416741960502f22e908c4e56356e8b09937ac47596bbf65379ef27b0d" => :mountain_lion
|
|
end
|
|
|
|
devel do
|
|
url "http://git.sv.gnu.org/r/emacs.git", :branch => "emacs-24"
|
|
version "24.4-dev"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
head do
|
|
url "http://git.sv.gnu.org/r/emacs.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
option "with-cocoa", "Build a Cocoa version of emacs"
|
|
option "with-ctags", "Don't remove the ctags executable that emacs provides"
|
|
|
|
deprecated_option "cocoa" => "with-cocoa"
|
|
deprecated_option "keep-ctags" => "with-ctags"
|
|
deprecated_option "with-x" => "with-x11"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on :x11 => :optional
|
|
depends_on "d-bus" => :optional
|
|
depends_on "gnutls" => :optional
|
|
depends_on "librsvg" => :optional
|
|
depends_on "imagemagick" => :optional
|
|
depends_on "mailutils" => :optional
|
|
depends_on "glib" => :optional
|
|
|
|
# https://github.com/Homebrew/homebrew/issues/37803
|
|
if build.with? "x11"
|
|
depends_on "freetype" => :recommended
|
|
depends_on "fontconfig" => :recommended
|
|
end
|
|
|
|
fails_with :llvm do
|
|
build 2334
|
|
cause "Duplicate symbol errors while linking."
|
|
end
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}",
|
|
"--enable-locallisppath=#{HOMEBREW_PREFIX}/share/emacs/site-lisp",
|
|
"--infodir=#{info}/emacs"]
|
|
|
|
args << "--with-file-notification=gfile" if build.with? "glib"
|
|
|
|
if build.with? "d-bus"
|
|
args << "--with-dbus"
|
|
else
|
|
args << "--without-dbus"
|
|
end
|
|
|
|
if build.with? "gnutls"
|
|
args << "--with-gnutls"
|
|
else
|
|
args << "--without-gnutls"
|
|
end
|
|
|
|
args << "--with-rsvg" if build.with? "librsvg"
|
|
args << "--with-imagemagick" if build.with? "imagemagick"
|
|
args << "--without-popmail" if build.with? "mailutils"
|
|
|
|
system "./autogen.sh" if build.head? || build.devel?
|
|
|
|
if build.with? "cocoa"
|
|
args << "--with-ns" << "--disable-ns-self-contained"
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
prefix.install "nextstep/Emacs.app"
|
|
|
|
# Replace the symlink with one that avoids starting Cocoa.
|
|
(bin/"emacs").unlink # Kill the existing symlink
|
|
(bin/"emacs").write <<-EOS.undent
|
|
#!/bin/bash
|
|
exec #{prefix}/Emacs.app/Contents/MacOS/Emacs -nw "$@"
|
|
EOS
|
|
else
|
|
if build.with? "x11"
|
|
# These libs are not specified in xft's .pc. See:
|
|
# https://trac.macports.org/browser/trunk/dports/editors/emacs/Portfile#L74
|
|
# https://github.com/Homebrew/homebrew/issues/8156
|
|
ENV.append "LDFLAGS", "-lfreetype -lfontconfig"
|
|
args << "--with-x"
|
|
args << "--with-gif=no" << "--with-tiff=no" << "--with-jpeg=no"
|
|
else
|
|
args << "--without-x"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Follow MacPorts and don't install ctags from Emacs. This allows Vim
|
|
# and Emacs and ctags to play together without violence.
|
|
if build.without? "ctags"
|
|
(bin/"ctags").unlink
|
|
(man1/"ctags.1.gz").unlink
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
if build.with? "cocoa" then <<-EOS.undent
|
|
A command line wrapper for the cocoa app was installed to:
|
|
#{bin}/emacs
|
|
EOS
|
|
end
|
|
end
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/emacs</string>
|
|
<string>--daemon</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_equal "4", shell_output("#{bin}/emacs --batch --eval=\"(print (+ 2 2))\"").strip
|
|
end
|
|
end
|