aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorNibbles 2bits2012-03-11 11:08:16 -0700
committerAdam Vandenberg2012-03-11 12:09:49 -0700
commit1a6d51dc38ecf8dd08c0e2e85c6d218ab5552e04 (patch)
tree38681bb6cfded2faef7be37223155ad1e184d5db /Library
parentdf5dedc4d1f03a189a503e06c739c9c45b7dbe47 (diff)
downloadhomebrew-1a6d51dc38ecf8dd08c0e2e85c6d218ab5552e04.tar.bz2
libzzip 0.13.61
Remove upstreamed patch. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libzzip.rb36
1 files changed, 2 insertions, 34 deletions
diff --git a/Library/Formula/libzzip.rb b/Library/Formula/libzzip.rb
index 2d98fb6b8..f960f5d1d 100644
--- a/Library/Formula/libzzip.rb
+++ b/Library/Formula/libzzip.rb
@@ -1,20 +1,12 @@
require 'formula'
class Libzzip < Formula
- url 'http://downloads.sourceforge.net/project/zziplib/zziplib13/0.13.60/zziplib-0.13.60.tar.bz2'
+ url 'http://downloads.sourceforge.net/project/zziplib/zziplib13/0.13.61/zziplib-0.13.61.tar.bz2'
homepage 'http://sourceforge.net/projects/zziplib/'
- sha1 '821ff9a7984ddccb6734e4a753e401e93c7d47ee'
+ sha1 'c7e526165e674962303d62798963d89524636813'
depends_on 'pkg-config' => :build
- def patches
- # Darwin links with libtool, and when the compiler is clang or gcc-4.6, link fails:
- # clang: error: unsupported option '--export-dynamic'
- # Reported upstream and patch submitted.
- # https://sourceforge.net/tracker/?func=detail&aid=3496704&group_id=6389&atid=306389
- DATA
- end
-
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
@@ -22,27 +14,3 @@ class Libzzip < Formula
system "make check" # runing this after install bypasses DYLD issues.
end
end
-
-__END__
---- a/configure 2010-12-29 08:07:16.000000000 -0800
-+++ b/configure 2012-03-03 20:28:28.000000000 -0800
-@@ -13715,10 +13715,17 @@
- ZZIPLIB_LDFLAGS=""
- test ".$can_build_shared" != ".no" && ZZIPLIB_LDFLAGS="--export-dynamic"
- RESOLVES=" # "
--case "$host_os" in mingw*)
-+case "$host_os" in
-+ mingw*)
- ZZIPLIB_LDFLAGS="-no-undefined -export-all-symbols -mconsole"
- RESOLVES=' '
--;; esac
-+ ;;
-+ # Darwin links with libtool, and when the compiler is clang or gcc-4.6,
-+ # clang: error: unsupported option '--export-dynamic'
-+ darwin*)
-+ ZZIPLIB_LDFLAGS="-export-dynamic"
-+ ;;
-+esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ZZIPLIB_LDFLAGS $RESOLVES" >&5
- $as_echo "$ZZIPLIB_LDFLAGS $RESOLVES" >&6; }
-