aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnuplot.rb
blob: 26c46e4b12ca0d46aa1e7e4753076b6a5d7a33f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
require 'formula'

class Gnuplot < Formula
  homepage 'http://www.gnuplot.info'
  url 'http://downloads.sourceforge.net/project/gnuplot/gnuplot/4.6.0/gnuplot-4.6.0.tar.gz'
  sha1 '9a43ae13546d97d4b174533ddac31a14e0edc9b2'

  head 'cvs://:pserver:anonymous@gnuplot.cvs.sourceforge.net:/cvsroot/gnuplot:gnuplot', :using => :cvs

  option 'pdf', 'Build with pdflib-lite support.'
  option 'wx', 'Build with wxWidgets support.'
  option 'nolua', 'Build without lua support.'
  option 'nogd', 'Build without gd support.'
  option 'with-x', 'Build with X support.'

  if build.head?
    depends_on :automake
    depends_on :libtool
  end

  depends_on 'pkg-config' => :build
  depends_on 'readline'
  depends_on 'pango' unless build.include? 'with-x' or MacOS::X11.installed?
  depends_on :x11 if build.include? 'with-x' or MacOS::X11.installed?
  depends_on 'pdflib-lite' if build.include? 'pdf'
  depends_on 'lua' unless build.include? 'nolua'
  depends_on 'gd' unless build.include? 'nogd'
  depends_on 'wxmac' if build.include? 'wx'

  def patches
    # MacPorts patch --without-aquaterm as a configuration option. Submitted
    # upstream:
    #   http://sourceforge.net/tracker/?func=detail&aid=3476165&group_id=2055&atid=302055
    {:p0 => 'https://trac.macports.org/export/96897/trunk/dports/math/gnuplot/files/patch-configure-aquaterm.diff'}
  end

  def install
    # Help configure find libraries
    readline = Formula.factory 'readline'
    pdflib = Formula.factory 'pdflib-lite'
    gd = Formula.factory 'gd'

    # Aquaterm disabled due to breakage. See:
    #   https://github.com/mxcl/homebrew/issues/14647
    args = %W[
      --disable-debug
      --disable-dependency-tracking
      --prefix=#{prefix}
      --with-readline=#{readline.prefix}
      --without-aquaterm
    ]

    args << '--disable-wxwidgets' unless build.include? 'wx'
    args << "--with-pdf=#{pdflib.prefix}" if build.include? 'pdf'
    args << '--without-lua' if build.include? 'nolua'

    if build.include? 'nogd'
      args << '--without-gd'
    else
      args << "--with-gd=#{gd.prefix}"
    end

    system 'autoreconf' if build.head?

    system "./configure", *args
    system "make install"
  end

  def test
    system "#{bin}/gnuplot", "--version"
  end
end