2010-05-17 23:20:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class SbclBootstrapBinaries < Formula
|
2012-01-16 10:55:40 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.55/sbcl-1.0.55-x86-darwin-binary.tar.bz2'
|
|
|
|
md5 '941351112392a77dd62bdcb9fb62e4e4'
|
|
|
|
version "1.0.55"
|
2011-01-18 18:07:05 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sbcl < Formula
|
2010-05-17 23:20:10 +00:00
|
|
|
homepage 'http://www.sbcl.org/'
|
2012-08-10 09:36:10 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.58/sbcl-1.0.58-source.tar.bz2'
|
|
|
|
md5 '341952949dc90af6f83a89f685da5dde'
|
2012-08-23 04:43:33 +00:00
|
|
|
|
2011-06-07 20:09:19 +00:00
|
|
|
head 'git://sbcl.git.sourceforge.net/gitroot/sbcl/sbcl.git'
|
2011-01-18 18:07:05 +00:00
|
|
|
|
2012-01-29 20:07:06 +00:00
|
|
|
bottle do
|
|
|
|
url 'https://downloads.sf.net/project/machomebrew/Bottles/sbcl-1.0.55-bottle.tar.gz'
|
|
|
|
sha1 '3c13225c8fe3eabf54e9d368e6b74318a5546430'
|
|
|
|
end
|
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2334
|
|
|
|
cause "Compilation fails with LLVM."
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2010-05-17 23:20:10 +00:00
|
|
|
skip_clean 'bin'
|
2010-05-19 11:46:58 +00:00
|
|
|
skip_clean 'lib'
|
2010-05-17 23:20:10 +00:00
|
|
|
|
2012-08-23 04:43:33 +00:00
|
|
|
option "32-bit"
|
|
|
|
option "without-threads", "Build SBCL without support for native threads"
|
|
|
|
option "with-ldb", "Include low-level debugger in the build"
|
|
|
|
option "with-internal-xref", "Include XREF information for SBCL internals (increases core size by 5-6MB)"
|
2011-01-24 06:09:38 +00:00
|
|
|
|
2011-03-29 18:18:58 +00:00
|
|
|
def patches
|
2011-11-27 20:09:49 +00:00
|
|
|
{ :p0 => [
|
2012-01-16 10:55:40 +00:00
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-base-target-features.diff",
|
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-make-doc.diff",
|
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-posix-tests.diff",
|
|
|
|
"https://trac.macports.org/export/88830/trunk/dports/lang/sbcl/files/patch-use-mach-exception-handler.diff"
|
2011-11-27 20:09:49 +00:00
|
|
|
]}
|
2011-03-29 18:18:58 +00:00
|
|
|
end
|
|
|
|
|
2011-01-24 06:09:38 +00:00
|
|
|
def write_features
|
|
|
|
features = []
|
2012-08-23 04:43:33 +00:00
|
|
|
features << ":sb-thread" unless build.include? "without-threads"
|
|
|
|
features << ":sb-ldb" if build.include? "with-ldb"
|
|
|
|
features << ":sb-xref-for-internals" if build.include? "with-internal-xref"
|
2011-01-24 06:09:38 +00:00
|
|
|
|
|
|
|
File.open("customize-target-features.lisp", "w") do |file|
|
|
|
|
file.puts "(lambda (list)"
|
|
|
|
features.each do |f|
|
|
|
|
file.puts " (pushnew #{f} list)"
|
|
|
|
end
|
|
|
|
file.puts " list)"
|
|
|
|
end
|
2011-01-28 17:03:17 +00:00
|
|
|
end
|
|
|
|
|
2010-05-17 23:20:10 +00:00
|
|
|
def install
|
2011-01-24 06:09:38 +00:00
|
|
|
write_features
|
|
|
|
|
2011-04-04 02:55:04 +00:00
|
|
|
# Remove non-ASCII values from environment as they cause build failures
|
2011-04-03 15:21:29 +00:00
|
|
|
# More information: http://bugs.gentoo.org/show_bug.cgi?id=174702
|
|
|
|
ENV.delete_if do |key, value|
|
2011-07-06 22:43:17 +00:00
|
|
|
value =~ /[\x80-\xff]/
|
2011-04-03 15:21:29 +00:00
|
|
|
end
|
|
|
|
|
2012-05-15 18:31:21 +00:00
|
|
|
SbclBootstrapBinaries.new.brew do
|
2011-01-24 06:09:38 +00:00
|
|
|
# We only need the binaries for bootstrapping, so don't install anything:
|
2011-01-18 18:07:05 +00:00
|
|
|
command = Dir.pwd + "/src/runtime/sbcl"
|
|
|
|
core = Dir.pwd + "/output/sbcl.core"
|
|
|
|
xc_cmdline = "#{command} --core #{core} --disable-debugger --no-userinit --no-sysinit"
|
|
|
|
|
2012-02-24 20:50:21 +00:00
|
|
|
cd buildpath do
|
2012-08-23 04:43:33 +00:00
|
|
|
ENV['SBCL_ARCH'] = 'x86' if build.build_32_bit?
|
2012-05-15 18:31:21 +00:00
|
|
|
system "./make.sh", "--prefix=#{prefix}", "--xc-host=#{xc_cmdline}"
|
2011-09-05 01:49:16 +00:00
|
|
|
end
|
2012-05-15 18:31:21 +00:00
|
|
|
end
|
2011-01-24 06:09:38 +00:00
|
|
|
|
2010-05-17 23:20:10 +00:00
|
|
|
ENV['INSTALL_ROOT'] = prefix
|
|
|
|
system "sh install.sh"
|
|
|
|
end
|
|
|
|
end
|