mldonkey: update x11 option

This commit is contained in:
Jack Nagel 2014-11-13 12:08:07 -06:00
parent 44b9e2cb92
commit 86b6684e74

View file

@ -5,14 +5,15 @@ class Mldonkey < Formula
url 'https://downloads.sourceforge.net/project/mldonkey/mldonkey/3.1.5/mldonkey-3.1.5.tar.bz2'
sha1 '7bc4f9272ecfe6403eef7062766b26bf321e3015'
option "with-x", "Build mldonkey with X11 support"
deprecated_option "with-x" => "with-x11"
depends_on 'pkg-config' => :build
depends_on 'objective-caml'
depends_on 'gd'
depends_on 'libpng'
depends_on :x11 => :optional
if build.with? "x"
if build.with? "x11"
depends_on 'librsvg'
depends_on 'lablgtk'
end
@ -22,7 +23,7 @@ class Mldonkey < Formula
ENV['OCAMLC'] = "#{HOMEBREW_PREFIX}/bin/ocamlc.opt -cc #{ENV.cc}"
args = ["--prefix=#{prefix}"]
args << "--enable-gui=newgui2" if build.with? "x"
args << "--enable-gui=newgui2" if build.with? "x11"
system "./configure", *args
system "make install"