aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-03-16 13:49:56 -0500
committerJack Nagel2012-03-16 16:19:07 -0500
commit97f620090bc30638d40089aa0f0a312910ebf0b9 (patch)
tree645ac2484feec8e2c5ef882266f0c30b2b0a31ec /Library
parent17cc521f63c93405ad20935037b12864472f999b (diff)
downloadhomebrew-97f620090bc30638d40089aa0f0a312910ebf0b9.tar.bz2
Depend on bsdmake where necessary
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bsdiff.rb4
-rw-r--r--Library/Formula/httpry.rb4
-rw-r--r--Library/Formula/proctools.rb4
-rw-r--r--Library/Formula/spiped.rb2
4 files changed, 11 insertions, 3 deletions
diff --git a/Library/Formula/bsdiff.rb b/Library/Formula/bsdiff.rb
index 7e7352917..7f9e03982 100644
--- a/Library/Formula/bsdiff.rb
+++ b/Library/Formula/bsdiff.rb
@@ -5,12 +5,14 @@ class Bsdiff < Formula
homepage 'http://www.daemonology.net/bsdiff'
md5 'e6d812394f0e0ecc8d5df255aa1db22a'
+ depends_on 'bsdmake' if MacOS.xcode_version.to_f >= 4.3
+
def patches
DATA
end
def install
- system "/usr/bin/bsdmake"
+ system "bsdmake"
bin.install "bsdiff"
man1.install "bsdiff.1"
end
diff --git a/Library/Formula/httpry.rb b/Library/Formula/httpry.rb
index ac7feff14..6bcd100d2 100644
--- a/Library/Formula/httpry.rb
+++ b/Library/Formula/httpry.rb
@@ -5,8 +5,10 @@ class Httpry < Formula
homepage 'http://dumpsterventures.com/jason/httpry/'
md5 '7fbba29eaeec1fd6b25e6fa3a12be25d'
+ depends_on 'bsdmake' if MacOS.xcode_version.to_f >= 4.3
+
def install
- system "/usr/bin/bsdmake"
+ system "bsdmake"
bin.install 'httpry'
man1.install 'httpry.1'
end
diff --git a/Library/Formula/proctools.rb b/Library/Formula/proctools.rb
index 11369f5c0..94d9a0ec4 100644
--- a/Library/Formula/proctools.rb
+++ b/Library/Formula/proctools.rb
@@ -6,6 +6,8 @@ class Proctools < Formula
version '0.4pre1'
md5 '714e4350749c680a7806635632d524b1'
+ depends_on 'bsdmake' if MacOS.xcode_version.to_f >= 4.3
+
def patches
base = "https://trac.macports.org/export/89276/trunk/dports/sysutils/proctools/files"
{ :p0 => ["patch-pfind-Makefile.diff",
@@ -20,7 +22,7 @@ class Proctools < Formula
end
def install
- system "/usr/bin/bsdmake"
+ system "bsdmake"
["pgrep/pgrep", "pkill/pkill", "pfind/pfind"].each do |prog|
bin.install prog
diff --git a/Library/Formula/spiped.rb b/Library/Formula/spiped.rb
index 6d3350679..af8bbcde1 100644
--- a/Library/Formula/spiped.rb
+++ b/Library/Formula/spiped.rb
@@ -5,6 +5,8 @@ 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
+
def install
system "bsdmake", "LDADD=-lcrypto", "BINDIR_DEFAULT=#{bin}", "install"
end