Remove special cases in build-time dep audit

Closes Homebrew/homebrew#23931.
This commit is contained in:
Jack Nagel 2013-11-04 12:00:06 -06:00
parent 8f20049229
commit 35280bb142
7 changed files with 8 additions and 8 deletions

View file

@ -13,7 +13,7 @@ class Automake < Formula
end
# Always needs a newer autoconf, even on Snow Leopard.
depends_on 'autoconf'
depends_on 'autoconf' => :run
if MacOS::Xcode.provides_autotools? or File.file? "/usr/bin/automake"
keg_only "Xcode (up to and including 4.2) provides (a rather old) Automake."

View file

@ -12,7 +12,7 @@ class Graphicsmagick < Formula
option 'without-magick-plus-plus', 'disable build/install of Magick++'
option 'without-svg', 'Compile without svg support'
depends_on :libltdl
depends_on :libtool => :run
depends_on 'pkg-config' => :build

View file

@ -24,7 +24,7 @@ class Imagemagick < Formula
option 'with-perl', 'enable build/install of PerlMagick'
option 'without-magick-plus-plus', 'disable build/install of Magick++'
depends_on :libltdl
depends_on :libtool => :run
depends_on 'pkg-config' => :build

View file

@ -7,7 +7,7 @@ class Libextractor < Formula
sha1 '244eb3e16dadedea9dc827fb91cb309e2baa8637'
depends_on 'pkg-config' => :build
depends_on :libltdl
depends_on :libtool => :run
def install
ENV.deparallelize

View file

@ -8,7 +8,7 @@ class Libgphoto2 < Formula
option :universal
depends_on 'pkg-config' => :build
depends_on :libltdl # Configure script uses this
depends_on :libtool => :run
depends_on 'libusb-compat'
depends_on 'gd'
depends_on 'libexif' => :optional

View file

@ -11,7 +11,7 @@ class Libp11 < Formula
end
depends_on 'pkg-config' => :build
depends_on :libltdl
depends_on :libtool => :run
def install
system "./bootstrap" if build.head?

View file

@ -7,8 +7,8 @@ class RubyBuild < Formula
head 'https://github.com/sstephenson/ruby-build.git'
depends_on 'autoconf' => :recommended
depends_on 'pkg-config' => :recommended
depends_on 'autoconf' => [:recommended, :run]
depends_on 'pkg-config' => [:recommended, :run]
depends_on 'libyaml' => :recommended
depends_on 'openssl' => :optional