2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-02 10:46:42 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Emacs < Formula
|
2010-07-01 19:03:04 +00:00
|
|
|
homepage 'http://www.gnu.org/software/emacs/'
|
2013-03-11 11:54:47 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/emacs/emacs-24.3.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/pub/gnu/emacs/emacs-24.3.tar.gz'
|
|
|
|
sha256 '0098ca3204813d69cd8412045ba33e8701fa2062f4bff56bedafc064979eef41'
|
2010-07-01 19:03:04 +00:00
|
|
|
|
2012-08-28 04:40:12 +00:00
|
|
|
option "cocoa", "Build a Cocoa version of emacs"
|
|
|
|
option "srgb", "Enable sRGB colors in the Cocoa version of emacs"
|
|
|
|
option "with-x", "Include X11 support"
|
|
|
|
option "use-git-head", "Use Savannah git mirror for HEAD builds"
|
2013-01-02 15:50:52 +00:00
|
|
|
option "keep-ctags", "Don't remove the ctags executable that emacs provides"
|
2012-08-28 04:40:12 +00:00
|
|
|
|
|
|
|
if build.include? "use-git-head"
|
2012-04-25 23:00:40 +00:00
|
|
|
head 'http://git.sv.gnu.org/r/emacs.git'
|
2012-03-18 20:33:24 +00:00
|
|
|
else
|
|
|
|
head 'bzr://http://bzr.savannah.gnu.org/r/emacs/trunk'
|
|
|
|
end
|
2011-09-12 17:33:28 +00:00
|
|
|
|
2013-03-11 11:54:47 +00:00
|
|
|
if build.head? or build.include? "cocoa"
|
|
|
|
depends_on :autoconf
|
|
|
|
depends_on :automake
|
|
|
|
end
|
2013-05-26 12:21:45 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-08-28 04:40:12 +00:00
|
|
|
depends_on :x11 if build.include? "with-x"
|
2013-05-26 12:21:45 +00:00
|
|
|
depends_on 'gnutls' => :optional
|
2012-06-07 01:35:12 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2334
|
|
|
|
cause "Duplicate symbol errors while linking."
|
2011-11-29 18:02:45 +00:00
|
|
|
end
|
|
|
|
|
2013-03-11 11:54:47 +00:00
|
|
|
# Follow MacPorts and don't install ctags from Emacs. This allows Vim
|
|
|
|
# and Emacs and ctags to play together without violence.
|
|
|
|
def do_not_install_ctags
|
|
|
|
unless build.include? "keep-ctags"
|
|
|
|
(bin/"ctags").unlink
|
|
|
|
(share/man/man1/"ctags.1.gz").unlink
|
2011-06-13 20:36:29 +00:00
|
|
|
end
|
2010-07-01 19:03:04 +00:00
|
|
|
end
|
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
def install
|
2012-04-20 22:09:59 +00:00
|
|
|
# HEAD builds are currently blowing up when built in parallel
|
|
|
|
# as of April 20 2012
|
2012-08-28 04:40:12 +00:00
|
|
|
ENV.j1 if build.head?
|
2012-04-20 22:09:59 +00:00
|
|
|
|
2010-10-01 02:44:40 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--without-dbus",
|
|
|
|
"--enable-locallisppath=#{HOMEBREW_PREFIX}/share/emacs/site-lisp",
|
|
|
|
"--infodir=#{info}/emacs"]
|
2013-05-26 12:21:45 +00:00
|
|
|
if build.with? 'gnutls'
|
|
|
|
args << '--with-gnutls'
|
|
|
|
else
|
|
|
|
args << '--without-gnutls'
|
|
|
|
end
|
2010-02-14 16:54:36 +00:00
|
|
|
|
2013-03-11 11:54:47 +00:00
|
|
|
# See: https://github.com/mxcl/homebrew/issues/4852
|
2012-08-28 04:40:12 +00:00
|
|
|
if build.head? and File.exists? "./autogen/copy_autogen"
|
2011-04-11 16:40:22 +00:00
|
|
|
system "autogen/copy_autogen"
|
|
|
|
end
|
|
|
|
|
2012-08-28 04:40:12 +00:00
|
|
|
if build.include? "cocoa"
|
2011-06-14 20:47:35 +00:00
|
|
|
# Patch for color issues described here:
|
|
|
|
# http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8402
|
2012-08-28 04:40:12 +00:00
|
|
|
if build.include? "srgb"
|
2011-06-14 20:47:35 +00:00
|
|
|
inreplace "src/nsterm.m",
|
|
|
|
"*col = [NSColor colorWithCalibratedRed: r green: g blue: b alpha: 1.0];",
|
|
|
|
"*col = [NSColor colorWithDeviceRed: r green: g blue: b alpha: 1.0];"
|
|
|
|
end
|
|
|
|
|
2010-09-07 12:33:23 +00:00
|
|
|
args << "--with-ns" << "--disable-ns-self-contained"
|
|
|
|
system "./configure", *args
|
2013-04-27 18:51:03 +00:00
|
|
|
system "make"
|
2010-02-14 16:54:36 +00:00
|
|
|
system "make install"
|
|
|
|
prefix.install "nextstep/Emacs.app"
|
2012-06-11 09:27:43 +00:00
|
|
|
|
2013-03-11 11:54:47 +00:00
|
|
|
# Don't cause ctags clash.
|
|
|
|
do_not_install_ctags
|
2013-01-02 15:50:52 +00:00
|
|
|
|
2012-06-11 09:27:43 +00:00
|
|
|
# Replace the symlink with one that avoids starting Cocoa.
|
|
|
|
(bin/"emacs").unlink # Kill the existing symlink
|
|
|
|
(bin/"emacs").write <<-EOS.undent
|
|
|
|
#!/bin/bash
|
|
|
|
#{prefix}/Emacs.app/Contents/MacOS/Emacs -nw "$@"
|
|
|
|
EOS
|
2009-10-13 07:03:50 +00:00
|
|
|
else
|
2012-08-28 04:40:12 +00:00
|
|
|
if build.include? "with-x"
|
2012-03-10 18:49:41 +00:00
|
|
|
# These libs are not specified in xft's .pc. See:
|
|
|
|
# https://trac.macports.org/browser/trunk/dports/editors/emacs/Portfile#L74
|
|
|
|
# https://github.com/mxcl/homebrew/issues/8156
|
|
|
|
ENV.append 'LDFLAGS', '-lfreetype -lfontconfig'
|
2010-09-07 12:33:23 +00:00
|
|
|
args << "--with-x"
|
|
|
|
args << "--with-gif=no" << "--with-tiff=no" << "--with-jpeg=no"
|
2010-07-13 14:44:01 +00:00
|
|
|
else
|
2010-09-07 12:33:23 +00:00
|
|
|
args << "--without-x"
|
2010-07-13 14:44:01 +00:00
|
|
|
end
|
2010-09-08 15:11:17 +00:00
|
|
|
|
2010-09-07 12:33:23 +00:00
|
|
|
system "./configure", *args
|
2010-02-14 16:54:36 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2013-01-02 15:50:52 +00:00
|
|
|
|
2013-03-11 11:54:47 +00:00
|
|
|
# Don't cause ctags clash.
|
|
|
|
do_not_install_ctags
|
2010-02-14 16:54:36 +00:00
|
|
|
end
|
2009-10-02 10:46:42 +00:00
|
|
|
end
|
2011-06-13 20:37:31 +00:00
|
|
|
|
|
|
|
def caveats
|
2011-11-18 05:56:01 +00:00
|
|
|
s = ""
|
2012-08-28 04:40:12 +00:00
|
|
|
if build.include? "cocoa"
|
2011-06-13 20:37:31 +00:00
|
|
|
s += <<-EOS.undent
|
|
|
|
Emacs.app was installed to:
|
|
|
|
#{prefix}
|
|
|
|
|
2011-07-29 18:05:11 +00:00
|
|
|
To link the application to a normal Mac OS X location:
|
|
|
|
brew linkapps
|
|
|
|
or:
|
|
|
|
ln -s #{prefix}/Emacs.app /Applications
|
2012-09-03 19:31:47 +00:00
|
|
|
|
2012-06-11 09:27:43 +00:00
|
|
|
A command line wrapper for the cocoa app was installed to:
|
2012-09-03 19:31:47 +00:00
|
|
|
#{bin}/emacs
|
2011-06-13 20:37:31 +00:00
|
|
|
EOS
|
|
|
|
end
|
2011-11-29 18:02:45 +00:00
|
|
|
|
|
|
|
s += <<-EOS.undent
|
|
|
|
Because the official bazaar repository might be slow, we include an option for
|
|
|
|
pulling HEAD from an unofficial Git mirror:
|
|
|
|
|
|
|
|
brew install emacs --HEAD --use-git-head
|
|
|
|
|
|
|
|
There is inevitably some lag between checkins made to the official Emacs bazaar
|
2011-12-06 01:26:29 +00:00
|
|
|
repository and their appearance on the Savannah mirror. See
|
|
|
|
http://git.savannah.gnu.org/cgit/emacs.git for the mirror's status. The Emacs
|
|
|
|
devs do not provide support for the git mirror, and they might reject bug
|
|
|
|
reports filed with git version information. Use it at your own risk.
|
2013-01-02 15:50:52 +00:00
|
|
|
|
|
|
|
Emacs creates an executable `ctags` that stomps on exuberant-ctags. In
|
|
|
|
order to prevent that, we remove `ctags` and its manpage from the emacs
|
|
|
|
build before linking. (Add the flag "--keep-ctags" to keep it.) You can
|
|
|
|
install exuberant-ctags via brew with `brew install ctags`.
|
|
|
|
(exuberant-ctags can provide both vim-style and emacs-style tags.)
|
2011-11-29 18:02:45 +00:00
|
|
|
EOS
|
|
|
|
|
2011-06-13 20:37:31 +00:00
|
|
|
return s
|
|
|
|
end
|
2009-10-02 10:46:42 +00:00
|
|
|
end
|