aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2010-06-17 21:33:14 -0700
committerAdam Vandenberg2010-06-17 21:33:14 -0700
commit9dc15bc563092a470dec5ca917ad2e37c111a23d (patch)
tree55e7a1a14a28558c9fc12b19d0a4de7f0e1d9a9f /Library/Homebrew
parent8c24aca1889b5f15ce9d60ce7671730cf50f3ba3 (diff)
downloadhomebrew-9dc15bc563092a470dec5ca917ad2e37c111a23d.tar.bz2
Remove buggy, unsupported TeX-live brew, and suggest MacTex.
The TeX-live 2008 formula was out of date (there's a 2009), buggy, and doesn't build 64-bit. The MacTeX package works and is supported, with a 2010 version in the works. Let's recommend that instead. Fixes #1087
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/brew.h.rb22
1 files changed, 10 insertions, 12 deletions
diff --git a/Library/Homebrew/brew.h.rb b/Library/Homebrew/brew.h.rb
index b12786863..9e25bfb93 100644
--- a/Library/Homebrew/brew.h.rb
+++ b/Library/Homebrew/brew.h.rb
@@ -6,19 +6,17 @@ def check_for_blacklisted_formula names
names.each do |name|
case name
- # bazaar don't maintain their PyPi entry properly yet
- # when they do we'll remove our formula and use that
-# when 'bazaar', 'bzr' then abort <<-EOS
-#Bazaar can be installed thusly:
-#
-# brew install pip && pip install bzr==2.0.1
-#
-# EOS
- when 'mercurial', 'hg' then abort <<-EOS
-Mercurial can be install thusly:
-
- brew install pip && pip install mercurial
+ when 'tex', 'tex-live', 'texlive' then abort <<-EOS.undent
+ Installing TeX from source is weird and gross, requires a lot of patches,
+ and only builds 32-bit (and thus can't use Homebrew deps on Snow Leopard.)
+ We recommend using a MacTeX distribution:
+ http://www.tug.org/mactex/
+ EOS
+
+ when 'mercurial', 'hg' then abort <<-EOS.undent
+ Mercurial can be install thusly:
+ brew install pip && pip install mercurial
EOS
end
end