2012-05-19 19:57:56 -05:00
|
|
|
#!/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
|
2009-09-17 21:10:39 +01:00
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
# This script is called by formula_installer as a separate instance.
|
|
|
|
# Rationale: Formula can use __END__, Formula can change ENV
|
|
|
|
# Thrown exceptions are propogated back to the parent process over a pipe
|
2011-03-15 22:02:14 -07:00
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
require 'global'
|
2009-09-17 21:10:39 +01:00
|
|
|
|
2009-10-26 18:13:38 +00:00
|
|
|
at_exit do
|
2011-08-23 23:30:52 +01:00
|
|
|
# the whole of everything must be run in at_exit because the formula has to
|
|
|
|
# be the run script as __END__ must work for *that* formula.
|
|
|
|
|
2012-07-03 15:32:36 -07:00
|
|
|
error_pipe = nil
|
|
|
|
|
2009-10-26 18:13:38 +00:00
|
|
|
begin
|
2012-06-15 14:45:57 -05:00
|
|
|
# The main Homebrew process expects to eventually see EOF on the error
|
|
|
|
# pipe in FormulaInstaller#build. However, if any child process fails to
|
|
|
|
# terminate (i.e, fails to close the descriptor), this won't happen, and
|
|
|
|
# the installer will hang. Set close-on-exec to prevent this.
|
|
|
|
# Whether it is *wise* to launch daemons from formulae is a separate
|
|
|
|
# question altogether.
|
2012-05-08 21:40:55 -05:00
|
|
|
if ENV['HOMEBREW_ERROR_PIPE']
|
|
|
|
require 'fcntl'
|
2012-07-03 15:32:36 -07:00
|
|
|
error_pipe = IO.new(ENV['HOMEBREW_ERROR_PIPE'].to_i, 'w')
|
|
|
|
error_pipe.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
|
2012-05-08 21:40:55 -05:00
|
|
|
end
|
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
raise $! if $! # an exception was already thrown when parsing the formula
|
|
|
|
|
|
|
|
require 'hardware'
|
|
|
|
require 'keg'
|
|
|
|
|
|
|
|
# Force any future invocations of sudo to require the user's password to be
|
|
|
|
# re-entered. This is in-case any build script call sudo. Certainly this is
|
|
|
|
# can be inconvenient for the user. But we need to be safe.
|
|
|
|
system "/usr/bin/sudo -k"
|
|
|
|
|
2009-10-26 18:13:38 +00:00
|
|
|
install(Formula.factory($0))
|
|
|
|
rescue Exception => e
|
2012-07-03 15:32:36 -07:00
|
|
|
unless error_pipe.nil?
|
|
|
|
Marshal.dump(e, error_pipe)
|
|
|
|
error_pipe.close
|
2009-10-26 18:13:38 +00:00
|
|
|
exit! 1
|
|
|
|
else
|
|
|
|
onoe e
|
|
|
|
puts e.backtrace
|
|
|
|
exit! 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-09-04 15:28:18 +01:00
|
|
|
|
2009-09-21 20:22:09 +01:00
|
|
|
def install f
|
2012-08-28 13:46:29 -04:00
|
|
|
# TODO replace with Formula DSL
|
|
|
|
# Python etc. build but then pip can't build stuff.
|
|
|
|
# Scons resets ENV and then can't find superenv's build-tools.
|
|
|
|
stdenvs = %w{fontforge python python3 ruby ruby-enterprise-edition jruby}
|
|
|
|
ARGV.unshift '--env=std' if stdenvs.include?(f.name) or f.recursive_deps.detect{|d| d.name == 'scons' }
|
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
keg_only_deps = f.recursive_deps.uniq.select{|dep| dep.keg_only? }
|
2012-06-08 04:09:29 +02:00
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
require 'superenv'
|
2012-02-27 04:06:13 +00:00
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
ENV.setup_build_environment unless superenv?
|
2012-08-10 16:33:22 -04:00
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
keg_only_deps.each do |dep|
|
|
|
|
opt = HOMEBREW_PREFIX/:opt/dep.name
|
2012-08-10 16:33:22 -04:00
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
#TODO try to fix, if only one key, easy, otherwise check formula.version
|
|
|
|
raise "#{opt} not present\nReinstall #{dep}. Sorry :(" unless opt.directory?
|
2012-02-27 04:06:13 +00:00
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
if not superenv?
|
|
|
|
ENV.prepend_path 'PATH', "#{opt}/bin"
|
|
|
|
ENV.prepend_path 'PKG_CONFIG_PATH', "#{opt}/lib/pkgconfig"
|
|
|
|
ENV.prepend_path 'PKG_CONFIG_PATH', "#{opt}/share/pkgconfig"
|
|
|
|
ENV.prepend_path 'ACLOCAL_PATH', "#{opt}/share/aclocal"
|
|
|
|
ENV.prepend_path 'CMAKE_PREFIX_PATH', opt
|
|
|
|
ENV.prepend 'LDFLAGS', "-L#{opt}/lib" if (opt/:lib).directory?
|
|
|
|
ENV.prepend 'CPPFLAGS', "-I#{opt}/include" if (opt/:include).directory?
|
2009-09-21 20:22:09 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
superenv: build-environments that just work
1. A minimal build environment, we don't set CFLAGS, CPPFLAGS, LDFLAGS, etc. the rationale being, the less that is set, the less variables we are introducing that can break builds.
2. A set of scripts that replace cc, ld, etc. and inject the -I, -L, etc. flags we need into the args passed to the build-tools.
Because we now have complete control over compiler instantiations we do a variety of clean-up tasks, like removing bad flags, enforcing universal builds and ensuring makefiles don't try to change the order of library and include paths from ones that work to ones that don't.
The previous ENV-system is still available when --env=std is specified.
superenv applies to Xcode >= 4.3 only currently.
2012-08-11 12:30:51 -04:00
|
|
|
if superenv?
|
|
|
|
ENV.deps = keg_only_deps.map(&:to_s)
|
|
|
|
ENV.setup_build_environment
|
|
|
|
end
|
|
|
|
|
|
|
|
f.recursive_requirements.each { |req| req.modify_build_environment }
|
|
|
|
|
2012-03-18 13:58:13 -05:00
|
|
|
if f.fails_with? ENV.compiler
|
|
|
|
cs = CompilerSelector.new f
|
|
|
|
cs.select_compiler
|
|
|
|
cs.advise
|
|
|
|
end
|
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
f.brew do
|
2012-06-13 23:01:20 -07:00
|
|
|
if ARGV.flag? '--git'
|
|
|
|
system "git init"
|
|
|
|
system "git add -A"
|
|
|
|
end
|
2011-08-23 23:30:52 +01:00
|
|
|
if ARGV.flag? '--interactive'
|
|
|
|
ohai "Entering interactive mode"
|
|
|
|
puts "Type `exit' to return and finalize the installation"
|
|
|
|
puts "Install to this prefix: #{f.prefix}"
|
|
|
|
|
|
|
|
if ARGV.flag? '--git'
|
2011-12-10 17:14:38 -06:00
|
|
|
puts "This directory is now a git repo. Make your changes and then use:"
|
2011-08-23 23:30:52 +01:00
|
|
|
puts " git diff | pbcopy"
|
|
|
|
puts "to copy the diff to the clipboard."
|
2009-09-04 15:28:18 +01:00
|
|
|
end
|
|
|
|
|
2011-08-23 23:30:52 +01:00
|
|
|
interactive_shell f
|
|
|
|
nil
|
|
|
|
else
|
|
|
|
f.prefix.mkpath
|
|
|
|
f.install
|
|
|
|
FORMULA_META_FILES.each do |filename|
|
|
|
|
next if File.directory? filename
|
|
|
|
target_file = filename
|
|
|
|
target_file = "#{filename}.txt" if File.exists? "#{filename}.txt"
|
|
|
|
# Some software symlinks these files (see help2man.rb)
|
|
|
|
target_file = Pathname.new(target_file).resolved_path
|
|
|
|
f.prefix.install target_file => filename rescue nil
|
|
|
|
(f.prefix+file).chmod 0644 rescue nil
|
2010-08-21 14:11:55 -07:00
|
|
|
end
|
2010-08-21 12:18:17 -07:00
|
|
|
end
|
2011-07-04 09:31:29 +01:00
|
|
|
end
|
2009-09-04 15:28:18 +01:00
|
|
|
end
|