diff options
| author | Jack Nagel | 2014-05-30 14:58:04 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-05-30 15:33:11 -0500 | 
| commit | 95a7e28e47589fb44f6f3483c8333b529aef187f (patch) | |
| tree | c66543073fb640a85c0b45404cef14db4886d015 | |
| parent | b899e0af2dc62d74a35a8ff16d4511313e4e88e3 (diff) | |
| download | homebrew-95a7e28e47589fb44f6f3483c8333b529aef187f.tar.bz2 | |
Explicitly mark ant deps as build-time deps
| -rw-r--r-- | Library/Formula/closure-compiler.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/gitbucket.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/henplus.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/monetdb.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/sleuthkit.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/voldemort.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/voltdb.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/yeti.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/zookeeper.rb | 2 | 
9 files changed, 9 insertions, 9 deletions
| diff --git a/Library/Formula/closure-compiler.rb b/Library/Formula/closure-compiler.rb index 1233d298c..6be5fd2a7 100644 --- a/Library/Formula/closure-compiler.rb +++ b/Library/Formula/closure-compiler.rb @@ -7,7 +7,7 @@ class ClosureCompiler < Formula    head 'https://github.com/google/closure-compiler.git' -  depends_on :ant +  depends_on :ant => :build    def install      system "ant", "clean" diff --git a/Library/Formula/gitbucket.rb b/Library/Formula/gitbucket.rb index a848ff2eb..9ca92ea03 100644 --- a/Library/Formula/gitbucket.rb +++ b/Library/Formula/gitbucket.rb @@ -7,7 +7,7 @@ class Gitbucket < Formula    head do      url 'https://github.com/takezoe/gitbucket.git' -    depends_on 'ant' => :build +    depends_on :ant => :build    end    def install diff --git a/Library/Formula/henplus.rb b/Library/Formula/henplus.rb index a1c295b44..f86371068 100644 --- a/Library/Formula/henplus.rb +++ b/Library/Formula/henplus.rb @@ -5,7 +5,7 @@ class Henplus < Formula    url 'https://github.com/downloads/neurolabs/henplus/henplus-0.9.8.tar.gz'    sha1 'ab1fc3a2ec5a6c8f434d2965d9bbe2121030ffd1' -  depends_on :ant +  depends_on :ant => :build    depends_on 'libreadline-java'    def install diff --git a/Library/Formula/monetdb.rb b/Library/Formula/monetdb.rb index 73cd00052..f624069a5 100644 --- a/Library/Formula/monetdb.rb +++ b/Library/Formula/monetdb.rb @@ -10,7 +10,7 @@ class Monetdb < Formula    option 'with-java'    depends_on 'pkg-config' => :build -  depends_on :ant +  depends_on :ant => :build    depends_on 'pcre'    depends_on 'readline' # Compilation fails with libedit. diff --git a/Library/Formula/sleuthkit.rb b/Library/Formula/sleuthkit.rb index e0f25bac4..3cd16516d 100644 --- a/Library/Formula/sleuthkit.rb +++ b/Library/Formula/sleuthkit.rb @@ -17,7 +17,7 @@ class Sleuthkit < Formula    option 'with-jni', "Build Sleuthkit with JNI bindings" -  depends_on :ant +  depends_on :ant => :build    depends_on 'afflib' => :optional    depends_on 'libewf' => :optional diff --git a/Library/Formula/voldemort.rb b/Library/Formula/voldemort.rb index 9fc7d0caf..ef7d5818c 100644 --- a/Library/Formula/voldemort.rb +++ b/Library/Formula/voldemort.rb @@ -5,7 +5,7 @@ class Voldemort < Formula    url 'https://github.com/voldemort/voldemort/archive/v1.4.0.tar.gz'    sha1 'f07b552d494b9b68d9c4e3561384bc932e7e7bd8' -  depends_on :ant +  depends_on :ant => :build    skip_clean 'libexec/config' diff --git a/Library/Formula/voltdb.rb b/Library/Formula/voltdb.rb index 012127e88..376d6acf9 100644 --- a/Library/Formula/voltdb.rb +++ b/Library/Formula/voltdb.rb @@ -6,7 +6,7 @@ class Voltdb < Formula    url 'https://github.com/VoltDB/voltdb/archive/voltdb-3.7.tar.gz'    sha1 'f6a8cf8652b7247ea39bfa2f6fa410a15ffc6ab5' -  depends_on :ant +  depends_on :ant => :build    def install      system 'ant' diff --git a/Library/Formula/yeti.rb b/Library/Formula/yeti.rb index 8a9d527b8..eb4e89372 100644 --- a/Library/Formula/yeti.rb +++ b/Library/Formula/yeti.rb @@ -7,7 +7,7 @@ class Yeti < Formula    head 'https://github.com/mth/yeti.git' -  depends_on :ant +  depends_on :ant => :build    def install      system "ant jar" diff --git a/Library/Formula/zookeeper.rb b/Library/Formula/zookeeper.rb index 6bf16e64e..cf67bd26b 100644 --- a/Library/Formula/zookeeper.rb +++ b/Library/Formula/zookeeper.rb @@ -22,7 +22,7 @@ class Zookeeper < Formula    option "c", "Build C bindings"    option "perl", "Build Perl bindings" -  depends_on :ant +  depends_on :ant => :build    depends_on :python => :optional    def shim_script target | 
