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
|
2011-03-10 13:22:35 +00:00
|
|
|
url 'http://ftp.gnu.org/pub/gnu/emacs/emacs-23.3.tar.bz2'
|
|
|
|
md5 'a673c163b4714362b94ff6096e4d784a'
|
2010-07-01 19:03:04 +00:00
|
|
|
homepage 'http://www.gnu.org/software/emacs/'
|
|
|
|
|
2010-02-28 00:44:05 +00:00
|
|
|
if ARGV.include? "--use-git-head"
|
|
|
|
head 'git://repo.or.cz/emacs.git'
|
|
|
|
else
|
|
|
|
head 'bzr://http://bzr.savannah.gnu.org/r/emacs/trunk'
|
|
|
|
end
|
2009-10-13 07:03:50 +00:00
|
|
|
|
2010-02-14 16:54:36 +00:00
|
|
|
def options
|
|
|
|
[
|
2010-05-09 04:04:29 +00:00
|
|
|
["--cocoa", "Build a Cocoa version of emacs"],
|
2011-06-14 20:47:35 +00:00
|
|
|
["--srgb", "Enable sRGB colors in the Cocoa version of emacs"],
|
2010-07-13 14:44:01 +00:00
|
|
|
["--with-x", "Include X11 support"],
|
2010-02-28 00:44:05 +00:00
|
|
|
["--use-git-head", "Use repo.or.cz git mirror for HEAD builds"],
|
2010-02-14 16:54:36 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2010-07-01 19:03:04 +00:00
|
|
|
def patches
|
2011-06-13 20:36:29 +00:00
|
|
|
p = []
|
|
|
|
|
|
|
|
# Fix for building with Xcode 4; harmless on Xcode 3.x.
|
|
|
|
unless ARGV.build_head?
|
|
|
|
p << "http://repo.or.cz/w/emacs.git/commitdiff_plain/c8bba48c5889c4773c62a10f7c3d4383881f11c1"
|
2011-03-05 15:04:40 +00:00
|
|
|
end
|
2011-06-13 20:36:29 +00:00
|
|
|
|
|
|
|
if ARGV.include? "--cocoa"
|
|
|
|
# Existing fullscreen patch does not patch cleanly against head.
|
|
|
|
unless ARGV.build_head?
|
|
|
|
p << "https://github.com/downloads/typester/emacs/feature-fullscreen.patch"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return p
|
2010-07-01 19:03:04 +00:00
|
|
|
end
|
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
fails_with_llvm "Duplicate symbol errors while linking."
|
2010-08-18 21:20:22 +00:00
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
def install
|
2010-10-01 02:44:40 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--without-dbus",
|
|
|
|
"--enable-locallisppath=#{HOMEBREW_PREFIX}/share/emacs/site-lisp",
|
|
|
|
"--infodir=#{info}/emacs"]
|
2010-02-14 16:54:36 +00:00
|
|
|
|
2011-04-11 16:40:22 +00:00
|
|
|
if ARGV.build_head? and File.exists? "./autogen/copy_autogen"
|
|
|
|
opoo "Using copy_autogen"
|
|
|
|
puts "See https://github.com/mxcl/homebrew/issues/4852"
|
|
|
|
system "autogen/copy_autogen"
|
|
|
|
end
|
|
|
|
|
2009-10-13 07:03:50 +00:00
|
|
|
if ARGV.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
|
|
|
|
if ARGV.include? "--srgb"
|
|
|
|
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
|
2010-02-14 16:54:36 +00:00
|
|
|
system "make bootstrap"
|
|
|
|
system "make install"
|
|
|
|
prefix.install "nextstep/Emacs.app"
|
2010-09-08 15:11:17 +00:00
|
|
|
|
|
|
|
bin.mkpath
|
|
|
|
ln_s prefix+'Emacs.app/Contents/MacOS/Emacs', bin+'emacs'
|
|
|
|
ln_s prefix+'Emacs.app/Contents/MacOS/bin/emacsclient', bin
|
2011-05-12 14:41:58 +00:00
|
|
|
ln_s prefix+'Emacs.app/Contents/MacOS/bin/etags', bin
|
2009-10-13 07:03:50 +00:00
|
|
|
else
|
2010-07-13 14:44:01 +00:00
|
|
|
if ARGV.include? "--with-x"
|
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"
|
|
|
|
end
|
2009-10-02 10:46:42 +00:00
|
|
|
end
|
2011-06-13 20:37:31 +00:00
|
|
|
|
|
|
|
def caveats
|
2011-06-13 20:41:09 +00:00
|
|
|
s = "For build options see:\n brew options emacs\n\n"
|
2011-06-13 20:37:31 +00:00
|
|
|
if ARGV.include? "--cocoa"
|
|
|
|
s += <<-EOS.undent
|
|
|
|
Emacs.app was installed to:
|
|
|
|
#{prefix}
|
|
|
|
|
2011-06-14 20:40:09 +00:00
|
|
|
Command-line emacs can be used by setting up an alias:
|
|
|
|
alias emacs=#{prefix}/Emacs.app/Contents/MacOS/Emacs -nw
|
|
|
|
|
2011-06-13 20:37:31 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
s += <<-EOS.undent
|
2011-06-13 20:41:09 +00:00
|
|
|
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
|
|
|
|
repository and their appearance on the repo.or.cz mirror. See
|
|
|
|
http://repo.or.cz/w/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.
|
2011-06-13 20:37:31 +00:00
|
|
|
EOS
|
|
|
|
|
|
|
|
return s
|
|
|
|
end
|
2009-10-02 10:46:42 +00:00
|
|
|
end
|