diff options
| author | Camillo Lugaresi | 2010-12-29 05:57:07 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2011-02-12 16:35:48 +0000 |
| commit | aee551b7eee89ac9515670e9969ed61d5eb0b526 (patch) | |
| tree | 9898e7ccfd9591f40674e2955e483fe890f82eb5 /Library/Formula/wine.rb | |
| parent | 4ae069124b010c5d8e50e945f803df60546b7af9 (diff) | |
| download | homebrew-aee551b7eee89ac9515670e9969ed61d5eb0b526.tar.bz2 | |
updated wine to 1.3.13
include support for secure connections using gnutls
allow runtime loading of homebrew-built libraries
Closes #3732.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/wine.rb')
| -rw-r--r-- | Library/Formula/wine.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb index 8c207eb0d..4b91144a5 100644 --- a/Library/Formula/wine.rb +++ b/Library/Formula/wine.rb @@ -2,8 +2,8 @@ require 'formula' class Wine <Formula if ARGV.flag? '--devel' - url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.3.9.tar.bz2' - sha1 '68f2172b3cd7674e0f7bb746eae065a7b542db9f' + url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.3.13.tar.bz2' + sha1 'f7e7aa2dbefc0f3fd48703f8640d13bcdb7312e4' else url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.2.2.tar.bz2' sha1 '8b37c8e0230dd6a665d310054f4e36dcbdab7330' @@ -13,13 +13,15 @@ class Wine <Formula depends_on 'jpeg' depends_on 'libicns' + depends_on 'gnutls' # the following libraries are currently not specified as dependencies, or not built as 32-bit: - # configure: libgnutls, libsane, libv4l, libgphoto2, liblcms, gstreamer-0.10, libcapi20, libgsm, libtiff + # configure: libsane, libv4l, libgphoto2, liblcms, gstreamer-0.10, libcapi20, libgsm, libtiff - # This is required for using 3D applications. + # Wine loads many libraries lazily using dlopen calls, so it needs these paths + # to be searched by dyld. def wine_wrapper; <<-EOS #!/bin/sh -DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib" "#{bin}/wine.bin" "$@" +DYLD_FALLBACK_LIBRARY_PATH="/usr/X11/lib:#{HOMEBREW_PREFIX+'lib'}" "#{bin}/wine.bin" "$@" EOS end |
