2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-05 22:38:23 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ErlangManuals < Formula
|
2013-03-19 19:11:19 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_man_R15B03-1.tar.gz'
|
|
|
|
sha1 'c8674767cd0c1f98946f6a08c7ae318c3f026988'
|
2009-09-02 15:11:46 +00:00
|
|
|
end
|
|
|
|
|
2011-03-26 14:06:08 +00:00
|
|
|
class ErlangHtmls < Formula
|
2013-03-19 19:11:19 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_html_R15B03-1.tar.gz'
|
|
|
|
sha1 '49d761d8554a83be00e18f681b32b94572f9c050'
|
2011-03-26 14:06:08 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ErlangHeadManuals < Formula
|
2013-03-19 19:11:19 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_man_R15B03-1.tar.gz'
|
|
|
|
sha1 'c8674767cd0c1f98946f6a08c7ae318c3f026988'
|
2010-08-21 22:56:39 +00:00
|
|
|
end
|
|
|
|
|
2011-03-26 14:06:08 +00:00
|
|
|
class ErlangHeadHtmls < Formula
|
2013-03-19 19:11:19 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_html_R15B03-1.tar.gz'
|
|
|
|
sha1 '49d761d8554a83be00e18f681b32b94572f9c050'
|
2011-03-26 14:06:08 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Erlang < Formula
|
2010-08-21 22:56:39 +00:00
|
|
|
homepage 'http://www.erlang.org'
|
2011-06-16 14:33:16 +00:00
|
|
|
# Download tarball from GitHub; it is served faster than the official tarball.
|
2013-03-19 19:12:02 +00:00
|
|
|
url 'https://github.com/erlang/otp/archive/OTP_R15B03-1.tar.gz'
|
|
|
|
sha1 '7843070f5d325f95ef13022fc416b22b6b14120d'
|
2012-09-18 18:02:44 +00:00
|
|
|
|
2013-06-05 01:06:38 +00:00
|
|
|
head 'https://github.com/erlang/otp.git', :branch => 'master'
|
2010-08-21 22:56:39 +00:00
|
|
|
|
2012-12-01 13:18:34 +00:00
|
|
|
bottle do
|
2013-05-25 14:52:36 +00:00
|
|
|
revision 1
|
|
|
|
sha1 '87d2acd2d27a9b774886a2fb7be0f8f919fca060' => :mountain_lion
|
|
|
|
sha1 '79ec42e6340a32032c39715d4e0a5e1909918af5' => :lion
|
|
|
|
sha1 'afafe2a4b51272eb6ed0f6bfdc4cbdfae0cdc19c' => :snow_leopard
|
2012-12-01 13:18:34 +00:00
|
|
|
end
|
|
|
|
|
2012-07-07 18:08:22 +00:00
|
|
|
# remove the autoreconf if possible
|
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
2012-03-18 20:33:24 +00:00
|
|
|
|
|
|
|
fails_with :llvm do
|
|
|
|
build 2334
|
|
|
|
end
|
|
|
|
|
2012-08-28 04:42:05 +00:00
|
|
|
option 'disable-hipe', "Disable building hipe; fails on various OS X systems"
|
|
|
|
option 'halfword', 'Enable halfword emulator (64-bit builds only)'
|
|
|
|
option 'time', '`brew test --time` to include a time-consuming test'
|
|
|
|
option 'no-docs', 'Do not install documentation'
|
2010-08-09 17:00:12 +00:00
|
|
|
|
2009-06-05 22:38:23 +00:00
|
|
|
def install
|
2012-03-20 23:56:19 +00:00
|
|
|
ohai "Compilation takes a long time; use `brew install -v erlang` to see progress" unless ARGV.verbose?
|
|
|
|
|
2011-10-25 17:27:53 +00:00
|
|
|
if ENV.compiler == :llvm
|
|
|
|
# Don't use optimizations. Fixes build on Lion/Xcode 4.2
|
|
|
|
ENV.remove_from_cflags /-O./
|
|
|
|
ENV.append_to_cflags '-O0'
|
|
|
|
end
|
2009-11-09 17:56:16 +00:00
|
|
|
|
2011-06-16 14:33:16 +00:00
|
|
|
# Do this if building from a checkout to generate configure
|
2010-04-19 19:20:13 +00:00
|
|
|
system "./otp_build autoconf" if File.exist? "otp_build"
|
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
args = ["--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-kernel-poll",
|
|
|
|
"--enable-threads",
|
|
|
|
"--enable-dynamic-ssl-lib",
|
2011-10-25 17:27:53 +00:00
|
|
|
"--enable-shared-zlib",
|
2012-09-02 00:04:10 +00:00
|
|
|
"--enable-smp-support"]
|
|
|
|
|
2013-07-10 02:30:15 +00:00
|
|
|
args << "--with-dynamic-trace=dtrace" unless MacOS.version <= :leopard or not MacOS::CLT.installed?
|
2009-11-09 17:56:16 +00:00
|
|
|
|
2012-08-28 04:42:05 +00:00
|
|
|
unless build.include? 'disable-hipe'
|
2009-11-09 17:56:16 +00:00
|
|
|
# HIPE doesn't strike me as that reliable on OS X
|
|
|
|
# http://syntatic.wordpress.com/2008/06/12/macports-erlang-bus-error-due-to-mac-os-x-1053-update/
|
|
|
|
# http://www.erlang.org/pipermail/erlang-patches/2008-September/000293.html
|
2010-08-08 04:04:37 +00:00
|
|
|
args << '--enable-hipe'
|
2009-11-09 17:56:16 +00:00
|
|
|
end
|
2009-09-05 22:24:57 +00:00
|
|
|
|
2011-10-25 17:27:53 +00:00
|
|
|
if MacOS.prefer_64_bit?
|
|
|
|
args << "--enable-darwin-64bit"
|
2012-08-28 04:42:05 +00:00
|
|
|
args << "--enable-halfword-emulator" if build.include? 'halfword' # Does not work with HIPE yet. Added for testing only
|
2011-10-25 17:27:53 +00:00
|
|
|
end
|
2009-09-02 15:11:46 +00:00
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
system "./configure", *args
|
2013-03-19 19:11:19 +00:00
|
|
|
touch 'lib/wx/SKIP' if MacOS.version >= :snow_leopard
|
2009-06-05 22:38:23 +00:00
|
|
|
system "make"
|
2013-05-14 18:14:45 +00:00
|
|
|
ENV.j1 # Install is not thread-safe; can try to create folder twice and fail
|
2009-06-05 22:38:23 +00:00
|
|
|
system "make install"
|
2009-09-02 15:11:46 +00:00
|
|
|
|
2012-08-28 04:42:05 +00:00
|
|
|
unless build.include? 'no-docs'
|
|
|
|
manuals = build.head? ? ErlangHeadManuals : ErlangManuals
|
2013-05-14 10:11:46 +00:00
|
|
|
manuals.new.brew {
|
|
|
|
man.install Dir['man/*']
|
|
|
|
# erl -man expects man pages in lib/erlang/man
|
|
|
|
(lib+'erlang').install_symlink man
|
|
|
|
}
|
2011-03-26 14:06:08 +00:00
|
|
|
|
2012-08-28 04:42:05 +00:00
|
|
|
htmls = build.head? ? ErlangHeadHtmls : ErlangHtmls
|
2011-05-27 17:02:11 +00:00
|
|
|
htmls.new.brew { doc.install Dir['*'] }
|
|
|
|
end
|
2009-06-05 22:38:23 +00:00
|
|
|
end
|
2009-12-06 15:30:23 +00:00
|
|
|
|
|
|
|
def test
|
2011-09-01 20:00:28 +00:00
|
|
|
`#{bin}/erl -noshell -eval 'crypto:start().' -s init stop`
|
2010-09-20 18:55:49 +00:00
|
|
|
|
|
|
|
# This test takes some time to run, but per bug #120 should finish in
|
|
|
|
# "less than 20 minutes". It takes a few minutes on a Mac Pro (2009).
|
2012-08-28 04:42:05 +00:00
|
|
|
if build.include? "time"
|
2011-12-14 19:36:37 +00:00
|
|
|
`#{bin}/dialyzer --build_plt -r #{lib}/erlang/lib/kernel-2.15/ebin/`
|
2010-09-20 18:55:49 +00:00
|
|
|
end
|
2009-12-06 15:30:23 +00:00
|
|
|
end
|
2009-09-05 22:24:57 +00:00
|
|
|
end
|