From 4aae3654de347b30aa764eff8cf06a819519bb7f Mon Sep 17 00:00:00 2001 From: David Woodfall Date: Mon, 30 Aug 2010 06:05:48 -0500 Subject: system/wine: Updated to include DIB engine patches. Signed-off-by: Erik Hanson --- system/wine/README | 4 ++++ system/wine/wine.SlackBuild | 14 +++++++++++++- system/wine/wine.info | 4 ++-- 3 files changed, 19 insertions(+), 3 deletions(-) (limited to 'system/wine') 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" -- cgit v1.2.3-65-gdbad