Updated gfortran to install for XCode 3.2.3 without force
Most of the action in XCode 3.2.3 focused on changes to LLVM and Clang. As a result, the build of Gfortran provided for XCode 3.2.2 passes the fortran testsuite when installed alongside XCode 3.2.3. The gfortran brew has been updated to install gfortran-3.2.2 for XCode 3.2.3 without the use of the --force argument. The brew has also been modified to facilitate the inclusion of binaries compiled against XCode 3.2.3 once they appear. Signed-off-by: Adam Vandenberg <flangy@gmail.com>master
parent
86ec6ac87c
commit
81ab3ee618
|
@ -23,9 +23,18 @@ class Gfortran <Formula
|
||||||
version "4.2.4-5577"
|
version "4.2.4-5577"
|
||||||
else
|
else
|
||||||
# Snow Leopard
|
# Snow Leopard
|
||||||
url 'http://r.research.att.com/gfortran-42-5659.pkg'
|
case gcc_42_build
|
||||||
md5 '71bd546baa45c9c0fb4943cdd72ee274'
|
when 5659
|
||||||
version "4.2.4-5659"
|
url 'http://r.research.att.com/gfortran-42-5659.pkg'
|
||||||
|
md5 '71bd546baa45c9c0fb4943cdd72ee274'
|
||||||
|
version "4.2.4-5659"
|
||||||
|
else
|
||||||
|
# These links should be updated to point to gfortran
|
||||||
|
# binaries for XCode build 5664 when they appear.
|
||||||
|
url 'http://r.research.att.com/gfortran-42-5659.pkg'
|
||||||
|
md5 '71bd546baa45c9c0fb4943cdd72ee274'
|
||||||
|
version "4.2.4-5659"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
homepage 'http://r.research.att.com/tools/'
|
homepage 'http://r.research.att.com/tools/'
|
||||||
|
@ -54,20 +63,14 @@ class Gfortran <Formula
|
||||||
safe_system "pax --insecure -rz -f Payload.gz -s ',./usr,#{prefix},'"
|
safe_system "pax --insecure -rz -f Payload.gz -s ',./usr,#{prefix},'"
|
||||||
safe_system "ln -sf #{man1}/gfortran-4.2.1 #{man1}/gfortran.1"
|
safe_system "ln -sf #{man1}/gfortran-4.2.1 #{man1}/gfortran.1"
|
||||||
when 5664
|
when 5664
|
||||||
if ARGV.force?
|
# This section should be updated when binaries for 5664 appear.
|
||||||
opoo "XCode 3.2.3 detected, but using gfortran 4.2.4 for XCode 3.2.2"
|
ohai "Installing gfortran 4.2.4 for XCode 3.2.2 (build 5659)"
|
||||||
ohai "Installing gfortran 4.2.4 for XCode 3.2.2 (build 5659)"
|
safe_system "pax --insecure -rz -f Payload.gz -s ',./usr,#{prefix},'"
|
||||||
safe_system "pax --insecure -rz -f Payload.gz -s ',./usr,#{prefix},'"
|
safe_system "ln -sf #{man1}/gfortran-4.2.1 #{man1}/gfortran.1"
|
||||||
safe_system "ln -sf #{man1}/gfortran-4.2.1 #{man1}/gfortran.1"
|
|
||||||
else
|
|
||||||
onoe "XCode 3.2.3 detected, but not supported"
|
|
||||||
puts "To force installation on XCode 3.2.3 use:"
|
|
||||||
puts "\tbrew install --force gfortran"
|
|
||||||
end
|
|
||||||
else
|
else
|
||||||
onoe <<-EOS.undent
|
onoe <<-EOS.undent
|
||||||
Currently the gfortran compiler provided by this brew is only supported
|
Currently the gfortran compiler provided by this brew is only supported
|
||||||
for XCode 3.1.4 on OS X 10.5.x and XCode 3.2.2 on OS X 10.6.x
|
for XCode 3.1.4 on OS X 10.5.x and XCode 3.2.2/3.2.3 on OS X 10.6.x
|
||||||
EOS
|
EOS
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue