mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/wine: Updated to include DIB engine patches.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
parent
3e72daa343
commit
4aae3654de
3 changed files with 19 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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" \
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue