diff options
| author | Samuel Cochran | 2011-05-30 10:48:10 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2011-05-30 18:13:38 -0700 |
| commit | c893c3aec9cc12127ede7f24b63282473de68113 (patch) | |
| tree | 6e0f765b54961c176d780fa8f0e57a3649351dca | |
| parent | 1439d5ec2739d533866ce614ff677fae14c6b346 (diff) | |
| download | brew-c893c3aec9cc12127ede7f24b63282473de68113.tar.bz2 | |
Better explanation of libxml2 and libxslt in blacklists.
Bundling explanation of X11 and libxslt is a bit odd and confusing, bundle libxml2 and libxslt instead extracted from X11 and /usr/lib requirements.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Homebrew/blacklist.rb | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb index 726a1343c..4b219d1fe 100644 --- a/Library/Homebrew/blacklist.rb +++ b/Library/Homebrew/blacklist.rb @@ -3,13 +3,18 @@ def blacklisted? name when 'vim', 'screen', /^rubygems?$/ then <<-EOS.undent Apple distributes #{name} with OS X, you can find it in /usr/bin. EOS - when 'libxml', 'libarchive', 'libpcap' then <<-EOS.undent + when 'libarchive', 'libpcap' then <<-EOS.undent Apple distributes #{name} with OS X, you can find it in /usr/lib. EOS - when 'libxlst', 'freetype', 'libpng' then <<-EOS.undent + when 'libxml', 'libxlst' then <<-EOS.undent + Apple distributes #{name} with OS X, you can find it in /usr/lib. + However not all build scripts look for these hard enough, so you may need + to call ENV.libxml2 in your formula's install function. + EOS + when 'freetype', 'libpng' then <<-EOS.undent Apple distributes #{name} with OS X, you can find it in /usr/X11/lib. - However not all build scripts look here, so you may need to call ENV.x11 or - ENV.libxml2 in your formula's install function. + However not all build scripts look here, so you may need to call ENV.x11 + in your formula's install function. EOS when 'wxwidgets' then <<-EOS.undent An old version of wxWidgets can be found in /usr/X11/lib. However, Homebrew |
