diff options
| author | Jack Nagel | 2013-07-20 18:46:27 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-07-20 18:46:27 -0500 |
| commit | 2752221693c49576bcdf5f482c1c3e6204899e2d (patch) | |
| tree | aed2f5e26c26c2dad3edffb4cc0d6ccc0688b23d /Library/Formula | |
| parent | ccdb72728167e0e8f8e164f8be59b73bae4102a8 (diff) | |
| download | homebrew-2752221693c49576bcdf5f482c1c3e6204899e2d.tar.bz2 | |
wine: simplify caveats
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/wine.rb | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/Library/Formula/wine.rb b/Library/Formula/wine.rb index 0d5b6b2bb..177729e8a 100644 --- a/Library/Formula/wine.rb +++ b/Library/Formula/wine.rb @@ -121,24 +121,22 @@ class Wine < Formula (bin/'wine').write(wine_wrapper) end - def caveats - s = <<-EOS.undent - You may want to get winetricks: - brew install winetricks - - By default Wine uses a native Mac driver. To switch to the X11 driver, use - regedit to set the "graphics" key under "HKCU\Software\Wine\Drivers" to - "x11" (or use winetricks). - - For best results with X11, install the latest version of XQuartz: - http://xquartz.macosforge.org/ - - The current version of Wine contains a partial implementation of dwrite.dll - which may cause text rendering issues in applications such as Steam. - We recommend that you run winecfg, add an override for dwrite in the - Libraries tab, and edit the override mode to "disable". + def caveats; <<-EOS.undent + You may want to get winetricks: + brew install winetricks + + By default Wine uses a native Mac driver. To switch to the X11 driver, use + regedit to set the "graphics" key under "HKCU\Software\Wine\Drivers" to + "x11" (or use winetricks). + + For best results with X11, install the latest version of XQuartz: + http://xquartz.macosforge.org/ + + The current version of Wine contains a partial implementation of dwrite.dll + which may cause text rendering issues in applications such as Steam. + We recommend that you run winecfg, add an override for dwrite in the + Libraries tab, and edit the override mode to "disable". See: + http://bugs.winehq.org/show_bug.cgi?id=31374 EOS - # see http://bugs.winehq.org/show_bug.cgi?id=31374 - return s end end |
