Skip to content

Commit

Permalink
add libpcap to list
Browse files Browse the repository at this point in the history
  • Loading branch information
adamv committed Sep 28, 2010
1 parent ad65f24 commit df062f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Library/Homebrew/brew.h.rb
Original file line number Diff line number Diff line change
Expand Up @@ -130,21 +130,21 @@ def make url
force_text = "If you really want to make this formula use --force."

case name.downcase
when /vim/, /screen/
when 'vim', 'screen'
raise <<-EOS
#{name} is blacklisted for creation
Apple distributes this program with OS X.
#{force_text}
EOS
when /libarchive/
when 'libarchive', 'libpcap'
raise <<-EOS
#{name} is blacklisted for creation
Apple distributes this library with OS X, you can find it in /usr/lib.
#{force_text}
EOS
when /libxml/, /libxlst/, /freetype/, /libpng/
when 'libxml', 'libxlst', 'freetype', 'libpng'
raise <<-EOS
#{name} is blacklisted for creation
Apple distributes this library with OS X, you can find it in /usr/X11/lib.
Expand All @@ -153,9 +153,9 @@ def make url
#{force_text}
EOS
when /rubygem/
when 'rubygem'
raise "Sorry RubyGems comes with OS X so we don't package it.\n\n#{force_text}"
when /wxwidgets/
when 'wxwidgets'
raise <<-EOS
#{name} is blacklisted for creation
An older version of wxWidgets is provided by Apple with OS X, but
Expand Down

0 comments on commit df062f2

Please sign in to comment.