require 'formula' class Valgrind < Formula homepage 'http://www.valgrind.org/' stable do url 'http://valgrind.org/downloads/valgrind-3.9.0.tar.bz2' sha1 '9415e28933de9d6687f993c4bb797e6bd49583f1' if MacOS.version == :mavericks depends_on :autoconf depends_on :automake depends_on :libtool end end head do url 'svn://svn.valgrind.org/valgrind/trunk' depends_on :autoconf depends_on :automake depends_on :libtool end depends_on :macos => :snow_leopard # Valgrind needs vcpreload_core-*-darwin.so to have execute permissions. # See #2150 for more information. skip_clean 'lib/valgrind' # 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 patch do url "https://gist.githubusercontent.com/2bits/3784836/raw/f046191e72445a2fc8491cb6aeeabe84517687d9/patch1.diff" sha1 "a2252d977302a37873b0f2efe8aa4a4fed2eb2c2" end # Fix for 10.7.4 w/XCode-4.5, duplicate symbols. Reported upstream in # https://bugs.kde.org/show_bug.cgi?id=307415 patch do url "https://gist.githubusercontent.com/2bits/3784836/raw/f046191e72445a2fc8491cb6aeeabe84517687d9/patch1.diff" sha1 "6e57aa087fafd178b594e22fd0e00ea7c0eed438" end if MacOS.version == :lion # Fix for 10.9 Mavericks. From upstream bug: # https://bugs.kde.org/show_bug.cgi?id=326724#c12 patch :p0 do url "http://bugsfiles.kde.org/attachment.cgi?id=83590" sha1 "22819a4a02140974e6330f3521b240b68f1619d7" end if MacOS.version == :mavericks # Fix for Snow Leopard from MacPorts patch :p0 do url "https://trac.macports.org/export/118697/trunk/dports/devel/valgrind/files/patch-compat-snowleo.diff" sha1 "ca22f4d49cfc9ea87469c2138b86c71f4b6b4d4d" 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? || MacOS.version == :mavericks system "./configure", *args system "make" system "make", "install" end test do system "#{bin}/valgrind", "ls", "-l" end end