aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/plplot.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-23 13:10:45 -0800
committerAdam Vandenberg2013-11-23 13:10:45 -0800
commitfb333e0d368daf019f3afaded1849537f59d990b (patch)
tree3305c124c3a0cb96f8537345ba254a8402c1f749 /Library/Formula/plplot.rb
parent1b529dc2011399d45d1ee8ac21559088892a4b07 (diff)
downloadhomebrew-fb333e0d368daf019f3afaded1849537f59d990b.tar.bz2
plplot: disable wxwidgets by default
They could be re-added as an explicit option.
Diffstat (limited to 'Library/Formula/plplot.rb')
-rw-r--r--Library/Formula/plplot.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/plplot.rb b/Library/Formula/plplot.rb
index c56e136b7..1382491f5 100644
--- a/Library/Formula/plplot.rb
+++ b/Library/Formula/plplot.rb
@@ -5,8 +5,6 @@ class Plplot < Formula
url 'http://downloads.sourceforge.net/project/plplot/plplot/5.9.10%20Source/plplot-5.9.10.tar.gz'
sha1 '10dbdfe41d71a9f51e4396729c001ed2baea22fe'
- # failing wxWidget includes on snow leopard
- depends_on :macos => :lion
depends_on 'cmake' => :build
depends_on 'pkg-config' => :build
depends_on 'pango'
@@ -15,6 +13,7 @@ class Plplot < Formula
def install
args = std_cmake_args
+ args << '-DPLD_wxwidgets=OFF' << '-DENABLE_wxwidgets=OFF'
args << '-DENABLE_java=OFF' unless build.with? 'java'
mkdir "plplot-build" do
system "cmake", "..", *args