aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2012-03-17 11:16:10 -0500
committerJack Nagel2012-03-17 11:16:45 -0500
commit7e3287e683cb09fc138f3fe1c448adfad658ed42 (patch)
tree1426a1f109c41a5ff79a8029c2164114245ed204
parentb23fe377e1051f0b93e2b41bd596a30e06c203c0 (diff)
downloadhomebrew-7e3287e683cb09fc138f3fe1c448adfad658ed42.tar.bz2
bsdmake is a build-time dep
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/bsdiff.rb2
-rw-r--r--Library/Formula/httpry.rb2
-rw-r--r--Library/Formula/proctools.rb2
-rw-r--r--Library/Formula/spiped.rb2
-rwxr-xr-xLibrary/Homebrew/cmd/audit.rb4
5 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/bsdiff.rb b/Library/Formula/bsdiff.rb
index 7f9e03982..322f476cc 100644
--- a/Library/Formula/bsdiff.rb
+++ b/Library/Formula/bsdiff.rb
@@ -5,7 +5,7 @@ class Bsdiff < Formula
homepage 'http://www.daemonology.net/bsdiff'
md5 'e6d812394f0e0ecc8d5df255aa1db22a'
- depends_on 'bsdmake' if MacOS.xcode_version.to_f >= 4.3
+ depends_on 'bsdmake' => :build if MacOS.xcode_version.to_f >= 4.3
def patches
DATA
diff --git a/Library/Formula/httpry.rb b/Library/Formula/httpry.rb
index 6bcd100d2..3da8ebfba 100644
--- a/Library/Formula/httpry.rb
+++ b/Library/Formula/httpry.rb
@@ -5,7 +5,7 @@ class Httpry < Formula
homepage 'http://dumpsterventures.com/jason/httpry/'
md5 '7fbba29eaeec1fd6b25e6fa3a12be25d'
- depends_on 'bsdmake' if MacOS.xcode_version.to_f >= 4.3
+ depends_on 'bsdmake' => :build if MacOS.xcode_version.to_f >= 4.3
def install
system "bsdmake"
diff --git a/Library/Formula/proctools.rb b/Library/Formula/proctools.rb
index 94d9a0ec4..602ba13e4 100644
--- a/Library/Formula/proctools.rb
+++ b/Library/Formula/proctools.rb
@@ -6,7 +6,7 @@ class Proctools < Formula
version '0.4pre1'
md5 '714e4350749c680a7806635632d524b1'
- depends_on 'bsdmake' if MacOS.xcode_version.to_f >= 4.3
+ depends_on 'bsdmake' => :build if MacOS.xcode_version.to_f >= 4.3
def patches
base = "https://trac.macports.org/export/89276/trunk/dports/sysutils/proctools/files"
diff --git a/Library/Formula/spiped.rb b/Library/Formula/spiped.rb
index af8bbcde1..3f475289c 100644
--- a/Library/Formula/spiped.rb
+++ b/Library/Formula/spiped.rb
@@ -5,7 +5,7 @@ class Spiped < Formula
url 'http://www.tarsnap.com/spiped/spiped-1.1.0.tgz'
sha256 'b727b902310d217d56c07d503c4175c65387ff07c9cd50a24584903faf9f3dc3'
- depends_on 'bsdmake' if MacOS.xcode_version.to_f >= 4.3
+ depends_on 'bsdmake' => :build if MacOS.xcode_version.to_f >= 4.3
def install
system "bsdmake", "LDADD=-lcrypto", "BINDIR_DEFAULT=#{bin}", "install"
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index a7376c803..9bffe7db4 100755
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -24,8 +24,8 @@ def audit_formula_text name, text
end
# build tools should be flagged properly
- build_deps = %w{autoconf automake boost-build cmake
- imake libtool pkg-config scons smake}
+ build_deps = %w{autoconf automake boost-build bsdmake
+ cmake imake libtool pkg-config scons smake}
if text =~ /depends_on ['"](#{build_deps*'|'})['"]$/
problems << " * #{$1} dependency should be \"depends_on '#{$1}' => :build\""
end