summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author David Woodfall2010-08-30 13:05:48 +0200
committer Erik Hanson2010-08-30 14:49:51 +0200
commit4aae3654de347b30aa764eff8cf06a819519bb7f (patch)
tree3211b707de2afa116c5c67f332546c1a2d2396fb /system
parent3e72daa3433bb3d124af19b68b6c61ffb294ca90 (diff)
downloadslackbuilds-4aae3654de347b30aa764eff8cf06a819519bb7f.tar.gz
system/wine: Updated to include DIB engine patches.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r--system/wine/README4
-rw-r--r--system/wine/wine.SlackBuild14
-rw-r--r--system/wine/wine.info4
3 files changed, 19 insertions, 3 deletions
diff --git a/system/wine/README b/system/wine/README
index a8098ff542..b201b9921c 100644
--- a/system/wine/README
+++ b/system/wine/README
@@ -9,6 +9,10 @@ running IE in wine, then do this: IEFIX=YES ./wine.SlackBuild
If you want to use the fallout3 patch to fix problems with nvidia cards while
running this game, then do this: FALLOUT3=YES ./wine.SlackBuild
+If you want to apply the DIB engine patches use DIB=YES ./wine.SlackBuild.
+You will need to download the DIB patches beforehand using something like
+wget -O dibeng-max.zip http://bugs.winehq.org/attachment.cgi?id=29994
+
These options can be used together.
This requires fontforge and webcore-fonts.
diff --git a/system/wine/wine.SlackBuild b/system/wine/wine.SlackBuild
index 722fbef95b..4b29ffa0e2 100644
--- a/system/wine/wine.SlackBuild
+++ b/system/wine/wine.SlackBuild
@@ -25,7 +25,7 @@
PRGNAM=wine
VERSION=${VERSION:-1.2}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -99,6 +99,18 @@ if [ "$FALLOUT3" = "YES" ]; then
patch --verbose -p1 < $CWD/fallout3.diff
fi
+# If DIB=YES then apply DIB patches.
+if [ "$DIB" = "YES" ]; then
+ mkdir dib
+ cd dib
+ unzip $CWD/dibeng-max.zip
+ cd ..
+ for i in $(grep dib dib/series); do
+ patch -p1 < dib/$i
+ done
+ autoconf
+fi
+
# All of the libraries produced are 32bit libs anyway
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
diff --git a/system/wine/wine.info b/system/wine/wine.info
index de3ce52d8b..033ba68130 100644
--- a/system/wine/wine.info
+++ b/system/wine/wine.info
@@ -1,8 +1,8 @@
PRGNAM="wine"
VERSION="1.2"
HOMEPAGE="http://www.winehq.com/"
-DOWNLOAD="http://downloads.sourceforge.net/project/wine/Source/wine-1.2.tar.bz2"
-MD5SUM="eb4e5423b277fc1e77807b04f366f7b7"
+DOWNLOAD="http://downloads.sourceforge.net/project/wine/Source/wine-1.2.tar.bz2 http://bugs.winehq.org/attachment.cgi?id=29994"
+MD5SUM="eb4e5423b277fc1e77807b04f366f7b7 1fa91b65a5cd1af1b38623d102f1b321"
DOWNLOAD_x86_64="UNSUPPORTED"
MD5SUM_x86_64=""
MAINTAINER="David Woodfall"