From a75f8626607f91c28c2f26870fb491b25dffe27b Mon Sep 17 00:00:00 2001 From: Thomas Dunton Date: Fri, 14 Sep 2012 13:11:49 +0100 Subject: [PATCH] gromacs depends on x11 Gromacs depends on libraries from X11. The build breaks when linking to libSM.dylib if the X11 dependency is not set. Closes Homebrew/homebrew#14935. Signed-off-by: Adam Vandenberg --- Formula/gromacs.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Formula/gromacs.rb b/Formula/gromacs.rb index 6a00020ed4..80aca30996 100644 --- a/Formula/gromacs.rb +++ b/Formula/gromacs.rb @@ -7,13 +7,16 @@ class Gromacs < Formula option 'enable-mpi', "Enables MPI support" option 'enable-double',"Enables double precision" + option 'without-x', "Disable the X11 visualizer" + depends_on :x11 unless build.include? 'without-x' depends_on 'fftw' def install args = ["--prefix=#{prefix}"] args << "--enable-mpi" if build.include? 'enable-mpi' args << "--enable-double" if build.include? 'enable-double' + args << "--without-x" if build.include? 'without-x' system "./configure", *args system "make"