diff options
| author | Adam Vandenberg | 2011-03-14 14:14:41 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-14 14:15:20 -0700 |
| commit | 7ebfbd3ad41939b44b154a248eb8b1df09974f52 (patch) | |
| tree | 536e1d6cb54ca66ca0d807bed94b0a32b8fba047 /Library | |
| parent | a849e93ae70b0bb3615146811be1f241f43a6076 (diff) | |
| download | homebrew-7ebfbd3ad41939b44b154a248eb8b1df09974f52.tar.bz2 | |
rrdtool: use system libraries
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/rrdtool.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/rrdtool.rb b/Library/Formula/rrdtool.rb index 41f97040a..1e0bfbc10 100644 --- a/Library/Formula/rrdtool.rb +++ b/Library/Formula/rrdtool.rb @@ -8,24 +8,24 @@ class Rrdtool < Formula depends_on 'pkg-config' => :build depends_on 'gettext' depends_on 'glib' - depends_on 'libxml2' + depends_on 'intltool' depends_on 'expat' depends_on 'pango' - depends_on 'libpng' - depends_on 'intltool' # Can use lua if it is found, but don't force users to install depends_on 'lua' => :optional if ARGV.include? "--lua" - def patches - DATA # Ha-ha, but sleeping is annoying when running configure a lot - end + # Ha-ha, but sleeping is annoying when running configure a lot + def patches; DATA; end def options [["--lua", "Compile with lua support."]] end def install + ENV.libxml2 + ENV.x11 + which_perl = `/usr/bin/which perl`.chomp which_ruby = `/usr/bin/which ruby`.chomp |
