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
|
2012-09-18 18:02:44 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_man_R15B02.tar.gz'
|
|
|
|
sha1 'e50cc887b36b0b2f158a87fa5b21cb2b2c6679b0'
|
2009-09-02 15:11:46 +00:00
|
|
|
end
|
|
|
|
|
2011-03-26 14:06:08 +00:00
|
|
|
class ErlangHtmls < Formula
|
2012-09-18 18:02:44 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_html_R15B02.tar.gz'
|
|
|
|
sha1 'b2ef425fe5aa9f4fff7afaa9b8204c45357eaa89'
|
2011-03-26 14:06:08 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ErlangHeadManuals < Formula
|
2012-09-18 18:02:44 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_man_R15B02.tar.gz'
|
|
|
|
sha1 'e50cc887b36b0b2f158a87fa5b21cb2b2c6679b0'
|
2010-08-21 22:56:39 +00:00
|
|
|
end
|
|
|
|
|
2011-03-26 14:06:08 +00:00
|
|
|
class ErlangHeadHtmls < Formula
|
2012-09-18 18:02:44 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_html_R15B02.tar.gz'
|
|
|
|
sha1 'b2ef425fe5aa9f4fff7afaa9b8204c45357eaa89'
|
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.
|
2012-09-18 18:02:44 +00:00
|
|
|
url 'https://github.com/erlang/otp/tarball/OTP_R15B02'
|
|
|
|
sha1 '540d0d0a006082a8bc3e1fc239f2043fee015967'
|
|
|
|
|
|
|
|
head 'https://github.com/erlang/otp.git', :branch => 'dev'
|
2010-08-21 22:56:39 +00:00
|
|
|
|
2012-01-23 04:32:15 +00:00
|
|
|
bottle do
|
2012-09-18 18:02:44 +00:00
|
|
|
sha1 '94cbe622b817e8a5bd7797b615aad5e47c5d8660' => :mountainlion
|
|
|
|
sha1 'ec5b4749668c95ad55410c0316390046ee576895' => :lion
|
|
|
|
sha1 '10b0aa609354c07938ac936578c9d1f12a4249ba' => :snowleopard
|
2012-01-23 04:32:15 +00:00
|
|
|
end
|
2011-08-31 07:53:23 +00:00
|
|
|
|
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"]
|
|
|
|
|
2012-09-05 04:04:01 +00:00
|
|
|
args << "--with-dynamic-trace=dtrace" unless MacOS.version == :leopard
|
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
|
2012-09-06 22:50:12 +00:00
|
|
|
touch 'lib/wx/SKIP' if MacOS.version >= :snow_leopard
|
2009-06-05 22:38:23 +00:00
|
|
|
system "make"
|
|
|
|
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
|
2011-05-27 17:02:11 +00:00
|
|
|
manuals.new.brew { man.install Dir['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
|