diff options
| author | nibbles 2bits | 2012-05-09 23:22:02 -0700 |
|---|---|---|
| committer | Jack Nagel | 2012-05-10 18:51:33 -0500 |
| commit | dfa890e1cf31c8a54da1cb35002af8060306e5b3 (patch) | |
| tree | dd1e4959e4ff2c41fccec785298cc34cb0a672de /Library | |
| parent | ec0c55be78df1f089e2acca960fb1cbd6c089cee (diff) | |
| download | homebrew-dfa890e1cf31c8a54da1cb35002af8060306e5b3.tar.bz2 | |
gtkwave 3.3.36
Upgrage gtkwave to version 3.3.36 and remove the `--mandir` flag
because it uses the right directory now. It apparently cannot
build its tcl support against the Lion tcl-8.5. But if the user
has a newer tcl installed it could; therefore, the tcl code is
not explicitly disabled in this commit, even though it gives a
warning that it won't work:
checking for Tcl_CreateInterp in -ltcl8.5... no
configure: WARNING:
Tcl support not enabled.
There are no self tests, but the `gtkwave` binary runs and brings
up its gui when compiled with clang and llvm from XCode-4.3.2.
Closes #12175.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gtkwave.rb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Formula/gtkwave.rb b/Library/Formula/gtkwave.rb index 0ffbb95fc..304b6c1f1 100644 --- a/Library/Formula/gtkwave.rb +++ b/Library/Formula/gtkwave.rb @@ -2,16 +2,14 @@ require 'formula' class Gtkwave < Formula homepage 'http://gtkwave.sourceforge.net/' - url 'http://gtkwave.sourceforge.net/gtkwave-3.3.31.tar.gz' - md5 'bbe65da9010a0037f9b5d0dd9da63e30' + url 'http://gtkwave.sourceforge.net/gtkwave-3.3.36.tar.gz' + sha1 'b6e7c17c97f33f332a326494659e947198189b7c' depends_on 'gtk+' depends_on 'xz' def install - system "./configure", "--disable-debug", "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--mandir=#{man}" + system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking' system 'make install' end end |
