homebrew-core/Formula/valgrind.rb
nibbles 2bits 793255ddf4 valgrind 3.8.1
- Upgrade to 3.8.1
- Remove the __bzero patch because it works now.
- Move the existing patch into a gist
- Add a patch supplied in the issue below to fix compiling on Lion.
- Patch reported upstream and noted in comments
- Add a `--disable-dependency-tracking`
- Remove the `--mandir` because it installs correctly.
- Remove the `AR=ar` from the make command. It uses `/usr/bin/ar`
- Works with superenv
- passes `brew test -v valgrind` on Lion & ML using XCode-4.5

Fixes Homebrew/homebrew#14986 Homebrew/homebrew#14706

Closes Homebrew/homebrew#15122.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-25 19:49:20 -07:00

56 lines
1.5 KiB
Ruby

require 'formula'
class Valgrind < Formula
homepage 'http://www.valgrind.org/'
# Valgrind 3.7.0 drops support for OS X 10.5
if MacOS.version >= 10.6
url 'http://valgrind.org/downloads/valgrind-3.8.1.tar.bz2'
sha1 'aa7a3b0b9903f59a11ae518874852e8ccb12751c'
else
url "http://valgrind.org/downloads/valgrind-3.6.1.tar.bz2"
md5 "2c3aa122498baecc9d69194057ca88f5"
end
head 'svn://svn.valgrind.org/valgrind/trunk'
if build.head?
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
skip_clean 'lib'
def patches
# 1: For Xcode-only systems, we have to patch hard-coded paths, use xcrun &
# add missing CFLAGS. See: https://bugs.kde.org/show_bug.cgi?id=295084
# 2: Fix for 10.7.4 w/XCode-4.5, duplicate symbols. Reported upstream in
# https://bugs.kde.org/show_bug.cgi?id=307415
p = []
p << 'https://gist.github.com/raw/3784836/f046191e72445a2fc8491cb6aeeabe84517687d9/patch1.diff' unless MacOS::CLT.installed?
p << 'https://gist.github.com/raw/3784930/dc8473c0ac5274f6b7d2eb23ce53d16bd0e2993a/patch2.diff' if MacOS.version == :lion
return p.empty? ? nil : p
end
def install
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
]
if MacOS.prefer_64_bit?
args << "--enable-only64bit" << "--build=amd64-darwin"
else
args << "--enable-only32bit"
end
system "./autogen.sh" if build.head?
system "./configure", *args
system 'make'
system "make install"
end
def test
system "#{bin}/valgrind", "ls", "-l"
end
end