2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
class Boost <Formula
|
2010-01-30 14:35:48 +00:00
|
|
|
homepage 'http://www.boost.org'
|
2010-11-20 23:42:47 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/boost/boost/1.45.0/boost_1_45_0.tar.bz2'
|
|
|
|
md5 'd405c606354789d0426bc07bea617e58'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2010-10-27 18:06:00 +00:00
|
|
|
def options
|
2011-01-21 17:42:44 +00:00
|
|
|
[
|
|
|
|
['--with-mpi', "Enables MPI support"],
|
|
|
|
["--universal", "Build universal binaries."]
|
|
|
|
]
|
2011-01-16 23:42:48 +00:00
|
|
|
end
|
|
|
|
|
2009-06-04 18:21:19 +00:00
|
|
|
def install
|
2010-09-26 18:14:59 +00:00
|
|
|
fails_with_llvm "LLVM-GCC causes errors with dropped arguments to "+
|
|
|
|
"functions when linking with boost"
|
2010-01-30 14:35:48 +00:00
|
|
|
|
|
|
|
# Adjust the name the libs are installed under to include the path to the
|
2010-09-26 18:14:59 +00:00
|
|
|
# Homebrew lib directory so executables will work when installed to a
|
|
|
|
# non-/usr/local location.
|
2010-01-30 14:35:48 +00:00
|
|
|
#
|
|
|
|
# otool -L `which mkvmerge`
|
2010-07-09 23:36:52 +00:00
|
|
|
# /usr/local/bin/mkvmerge:
|
2010-01-30 14:35:48 +00:00
|
|
|
# libboost_regex-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
|
|
|
|
# libboost_filesystem-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
|
|
|
|
# libboost_system-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
|
|
|
|
#
|
2010-07-09 23:36:52 +00:00
|
|
|
# becomes:
|
2010-01-30 14:35:48 +00:00
|
|
|
#
|
2010-07-09 23:36:52 +00:00
|
|
|
# /usr/local/bin/mkvmerge:
|
|
|
|
# /usr/local/lib/libboost_regex-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
|
|
|
|
# /usr/local/lib/libboost_filesystem-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
|
|
|
|
# /usr/local/libboost_system-mt.dylib (compatibility version 0.0.0, current version 0.0.0)
|
|
|
|
inreplace 'tools/build/v2/tools/darwin.jam', '-install_name "', "-install_name \"#{HOMEBREW_PREFIX}/lib/"
|
2010-01-30 14:35:48 +00:00
|
|
|
|
|
|
|
# Force boost to compile using the GCC 4.2 compiler
|
|
|
|
open("user-config.jam", "a") do |file|
|
|
|
|
file.write "using darwin : : #{ENV['CXX']} ;\n"
|
2010-10-27 18:06:00 +00:00
|
|
|
file.write "using mpi ;\n" if ARGV.include? '--with-mpi'
|
2010-01-30 14:35:48 +00:00
|
|
|
end
|
|
|
|
|
2011-01-16 23:42:48 +00:00
|
|
|
additional_jam_args = []
|
|
|
|
additional_jam_args << "address-model=32_64" << "pch=off" if ARGV.include? "--universal"
|
|
|
|
|
2009-06-04 18:21:19 +00:00
|
|
|
# we specify libdir too because the script is apparently broken
|
2010-07-09 23:36:52 +00:00
|
|
|
system "./bootstrap.sh", "--prefix=#{prefix}", "--libdir=#{lib}"
|
|
|
|
system "./bjam", "--prefix=#{prefix}",
|
|
|
|
"--libdir=#{lib}",
|
|
|
|
"-j#{Hardware.processor_count}",
|
|
|
|
"--layout=tagged",
|
|
|
|
"--user-config=user-config.jam",
|
|
|
|
"threading=multi",
|
2011-01-16 23:42:48 +00:00
|
|
|
"install",
|
|
|
|
*additional_jam_args
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
2009-12-01 15:54:11 +00:00
|
|
|
end
|