diff options
| author | Jack Nagel | 2014-11-15 21:28:09 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-11-15 21:28:09 -0600 |
| commit | b8964e01f8454d9b845bbc933d2d0315770b3a43 (patch) | |
| tree | 1bf4296ddfe36009e0d39e4e881d4b1ffb06d985 /Library | |
| parent | a54a914c177d7c02d73656441349c9d1d1d85438 (diff) | |
| download | homebrew-b8964e01f8454d9b845bbc933d2d0315770b3a43.tar.bz2 | |
graphviz: update pango option
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/graphviz.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/graphviz.rb b/Library/Formula/graphviz.rb index 6f88275af..b726f37b1 100644 --- a/Library/Formula/graphviz.rb +++ b/Library/Formula/graphviz.rb @@ -17,16 +17,17 @@ class Graphviz < Formula option :universal option "with-bindings", "Build Perl/Python/Ruby/etc. bindings" - option "with-pangocairo", "Build with Pango/Cairo for alternate PDF output" + option "with-pango", "Build with Pango/Cairo for alternate PDF output" option "with-app", "Build GraphViz.app (requires full XCode install)" option "with-gts", "Build with GNU GTS support (required by prism)" deprecated_option "with-x" => "with-x11" + deprecated_option "with-pangocairo" => "with-pango" depends_on "libpng" depends_on "pkg-config" => :build - depends_on "pango" if build.with? "pangocairo" + depends_on "pango" => :optional depends_on "swig" if build.with? "bindings" depends_on :python if build.with? "bindings" depends_on "gts" => :optional @@ -53,7 +54,7 @@ class Graphviz < Formula "--with-quartz"] args << "--with-gts" if build.with? "gts" args << "--disable-swig" if build.without? "bindings" - args << "--without-pangocairo" if build.without? "pangocairo" + args << "--without-pangocairo" if build.without? "pango" args << "--without-freetype2" if build.without? "freetype" args << "--without-x" if build.without? "x11" args << "--without-rsvg" if build.without? "librsvg" |
