2010-05-17 23:20:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class SbclBootstrapBinaries < Formula
|
2011-07-17 19:05:42 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.49/sbcl-1.0.49-x86-darwin-binary.tar.bz2'
|
|
|
|
md5 '6ffae170cfa0f1858efb37aa7544aba6'
|
|
|
|
version "1.0.49"
|
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/'
|
2011-11-09 02:56:24 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/sbcl/sbcl/1.0.53/sbcl-1.0.53-source.tar.bz2'
|
|
|
|
md5 '28bdb8d65b240bcc45370f19b781f9b8'
|
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
|
|
|
|
2011-10-05 23:02:34 +00:00
|
|
|
fails_with_llvm "Compilation fails with LLVM.", :build => 2334
|
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
|
|
|
|
2011-01-24 06:09:38 +00:00
|
|
|
def options
|
|
|
|
[
|
|
|
|
["--without-threads", "Build SBCL without support for native threads"],
|
|
|
|
["--with-ldb", "Include low-level debugger in the build"],
|
|
|
|
["--with-internal-xref", "Include XREF information for SBCL internals (increases core size by 5-6MB)"]
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2011-03-29 18:18:58 +00:00
|
|
|
def patches
|
|
|
|
base = "http://svn.macports.org/repository/macports/trunk/dports/lang/sbcl/files"
|
|
|
|
{ :p0 => ["patch-base-target-features.diff",
|
|
|
|
"patch-make-doc.diff",
|
|
|
|
"patch-posix-tests.diff",
|
|
|
|
"patch-use-mach-exception-handler.diff"].map { |file_name| "#{base}/#{file_name}" }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2011-01-24 06:09:38 +00:00
|
|
|
def write_features
|
|
|
|
features = []
|
|
|
|
features << ":sb-thread" unless ARGV.include? "--without-threads"
|
|
|
|
features << ":sb-ldb" if ARGV.include? "--with-ldb"
|
|
|
|
features << ":sb-xref-for-internals" if ARGV.include? "--with-internal-xref"
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2011-01-18 18:07:05 +00:00
|
|
|
build_directory = Dir.pwd
|
|
|
|
SbclBootstrapBinaries.new.brew {
|
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"
|
|
|
|
|
|
|
|
Dir.chdir(build_directory)
|
|
|
|
system "./make.sh --prefix='#{prefix}' --xc-host='#{xc_cmdline}'"
|
|
|
|
}
|
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
|