2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Boost < Formula
|
2010-01-30 14:35:48 +00:00
|
|
|
homepage 'http://www.boost.org'
|
2011-07-27 19:02:38 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/boost/boost/1.47.0/boost_1_47_0.tar.bz2'
|
|
|
|
md5 'a2dc343f7bc7f83f8941e47ed4a18200'
|
2011-07-28 20:56:59 +00:00
|
|
|
bottle 'https://downloads.sourceforge.net/project/machomebrew/Bottles/boost-1.47.0-bottle.tar.gz'
|
|
|
|
bottle_sha1 '4f3834fb471c3fac20c649bc4081ddde991e4b3b'
|
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
|
|
|
[
|
2011-09-03 15:52:18 +00:00
|
|
|
["--with-mpi", "Enable MPI support"],
|
|
|
|
["--universal", "Build universal binaries"],
|
|
|
|
["--without-python", "Build without Python"]
|
2011-01-21 17:42:44 +00:00
|
|
|
]
|
2011-01-16 23:42:48 +00:00
|
|
|
end
|
|
|
|
|
2011-07-27 19:02:38 +00:00
|
|
|
# Both clang and llvm-gcc provided by XCode 4.1 compile Boost 1.47.0 properly.
|
|
|
|
# Moreover, Apple LLVM compiler 2.1 is now among primary test compilers.
|
|
|
|
if MacOS.xcode_version < "4.1"
|
|
|
|
fails_with_llvm "LLVM-GCC causes errors with dropped arguments to functions when linking with boost"
|
|
|
|
end
|
2010-01-30 14:35:48 +00:00
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
def install
|
2011-09-03 15:52:18 +00:00
|
|
|
if ARGV.build_universal? and not ARGV.include? "--without-python"
|
2011-04-02 00:39:55 +00:00
|
|
|
archs = archs_for_command("python")
|
|
|
|
unless archs.universal?
|
|
|
|
opoo "A universal build was requested, but Python is not a universal build"
|
|
|
|
puts "Boost compiles against the Python it finds in the path; if this Python"
|
|
|
|
puts "is not a universal build then linking will likely fail."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
2011-04-02 00:39:55 +00:00
|
|
|
# Force boost to compile using the appropriate GCC version
|
2010-01-30 14:35:48 +00:00
|
|
|
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-04-02 00:39:55 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--libdir=#{lib}",
|
|
|
|
"-j#{Hardware.processor_count}",
|
|
|
|
"--layout=tagged",
|
|
|
|
"--user-config=user-config.jam",
|
|
|
|
"threading=multi",
|
|
|
|
"install"]
|
|
|
|
|
2011-04-01 14:32:11 +00:00
|
|
|
args << "address-model=32_64" << "architecture=x86" << "pch=off" if ARGV.include? "--universal"
|
2011-09-03 15:52:18 +00:00
|
|
|
args << "--without-libraries=python" if ARGV.include? "--without-python"
|
2011-01-16 23:42:48 +00:00
|
|
|
|
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}"
|
2011-04-02 00:39:55 +00:00
|
|
|
system "./bjam", *args
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
2009-12-01 15:54:11 +00:00
|
|
|
end
|