aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-06 17:46:43 -0700
committerAdam Vandenberg2014-05-06 20:54:28 -0700
commit9414af689010548a8fff8d068eeea4707f2ce229 (patch)
tree80146d6c30f8ae43559d2e8536df83ee6f52d90c /Library
parent7dd3de388bba32ba4f46838611409ce90f073e60 (diff)
downloadhomebrew-9414af689010548a8fff8d068eeea4707f2ce229.tar.bz2
gnuplot: add missing dependencies
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gnuplot.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/gnuplot.rb b/Library/Formula/gnuplot.rb
index efc9a340b..63d30bcb5 100644
--- a/Library/Formula/gnuplot.rb
+++ b/Library/Formula/gnuplot.rb
@@ -3,7 +3,6 @@ require 'formula'
class LuaRequirement < Requirement
fatal true
default_formula 'lua'
-
satisfy { which 'lua' }
end
@@ -35,6 +34,10 @@ class Gnuplot < Formula
depends_on 'pkg-config' => :build
depends_on LuaRequirement unless build.include? 'nolua'
depends_on 'readline'
+ depends_on "libpng"
+ depends_on "jpeg"
+ depends_on "libtiff"
+ depends_on "fontconfig"
depends_on 'pango' if build.include? 'cairo' or build.include? 'wx'
depends_on :x11 if build.with? "x"
depends_on 'pdflib-lite' if build.include? 'pdf'