aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-11-04 12:00:06 -0600
committerJack Nagel2013-11-04 12:10:26 -0600
commit14a1fa8ab91933d82ca05ca7fba998ddc01f7895 (patch)
tree48be3c2c05e9869d77de0252f3557ce76af27ff9 /Library/Formula
parentd7f5d6cdc13bb6fff8e42b9c13512f683be22d0c (diff)
downloadhomebrew-14a1fa8ab91933d82ca05ca7fba998ddc01f7895.tar.bz2
Remove special cases in build-time dep audit
Closes #23931.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/automake.rb2
-rw-r--r--Library/Formula/graphicsmagick.rb2
-rw-r--r--Library/Formula/imagemagick.rb2
-rw-r--r--Library/Formula/libextractor.rb2
-rw-r--r--Library/Formula/libgphoto2.rb2
-rw-r--r--Library/Formula/libp11.rb2
-rw-r--r--Library/Formula/ruby-build.rb4
7 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/automake.rb b/Library/Formula/automake.rb
index 95598db9f..ee9b125cf 100644
--- a/Library/Formula/automake.rb
+++ b/Library/Formula/automake.rb
@@ -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."
diff --git a/Library/Formula/graphicsmagick.rb b/Library/Formula/graphicsmagick.rb
index 69c03abd1..09058c87b 100644
--- a/Library/Formula/graphicsmagick.rb
+++ b/Library/Formula/graphicsmagick.rb
@@ -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
diff --git a/Library/Formula/imagemagick.rb b/Library/Formula/imagemagick.rb
index 2e8f74efb..22e09a49e 100644
--- a/Library/Formula/imagemagick.rb
+++ b/Library/Formula/imagemagick.rb
@@ -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
diff --git a/Library/Formula/libextractor.rb b/Library/Formula/libextractor.rb
index 69c4058e9..bd6869429 100644
--- a/Library/Formula/libextractor.rb
+++ b/Library/Formula/libextractor.rb
@@ -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
diff --git a/Library/Formula/libgphoto2.rb b/Library/Formula/libgphoto2.rb
index 3beb1ec07..3c4f06738 100644
--- a/Library/Formula/libgphoto2.rb
+++ b/Library/Formula/libgphoto2.rb
@@ -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
diff --git a/Library/Formula/libp11.rb b/Library/Formula/libp11.rb
index b50277c68..1b2a4786a 100644
--- a/Library/Formula/libp11.rb
+++ b/Library/Formula/libp11.rb
@@ -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?
diff --git a/Library/Formula/ruby-build.rb b/Library/Formula/ruby-build.rb
index 5e74750b9..3bc701ff5 100644
--- a/Library/Formula/ruby-build.rb
+++ b/Library/Formula/ruby-build.rb
@@ -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