SHA256
1
0
forked from pool/wine
OBS User unknown 2008-02-25 16:48:50 +00:00 committed by Git OBS Bridge
parent 6e415507b8
commit d637ce7376
5 changed files with 55 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e789ea1fc1e243a0f60340992a7dbe7855f82fcc72444513233711a3153518ad
size 13107628

3
wine-0.9.56.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dd66d7e5234090c381bececddf40a65b36b8ca1ea6c7a1a90c2f0b9f13898162
size 13172197

View File

@ -1,3 +1,16 @@
-------------------------------------------------------------------
Fri Feb 22 23:26:07 CET 2008 - meissner@suse.de
- Upgraded to upstream 0.9.56
- Proper handling of OpenGL/Direct3D windows with menu bars.
- Stubs for all the d3dx9_xx dlls.
- Several graphics optimizations.
- Many installer fixes.
- Improved MIME message support.
- Lots of bug fixes.
- winetricks 20080222
- colorprofile downloader added
-------------------------------------------------------------------
Mon Feb 11 11:05:56 CET 2008 - meissner@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package wine (Version 0.9.55)
# spec file for package wine (Version 0.9.56)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -16,7 +16,7 @@ BuildRequires: alsa-devel audiofile bison capi4linux-devel cups-devel desktop-f
License: LGPL v2.1 or later
Group: System/Emulators/PC
AutoReqProv: on
Version: 0.9.55
Version: 0.9.56
Release: 1
Summary: An MS Windows Emulator
Url: http://www.winehq.com
@ -119,6 +119,16 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/aclocal/wine.m4
%changelog
* Sat Feb 23 2008 meissner@suse.de
- Upgraded to upstream 0.9.56
- Proper handling of OpenGL/Direct3D windows with menu bars.
- Stubs for all the d3dx9_xx dlls.
- Several graphics optimizations.
- Many installer fixes.
- Improved MIME message support.
- Lots of bug fixes.
- winetricks 20080222
- colorprofile downloader added
* Mon Feb 11 2008 meissner@suse.de
- Upgraded to upstream 0.9.55
- Direct3D improvements, including driver version emulation.

View File

@ -14,8 +14,17 @@ WINEPREFIX=${WINEPREFIX:-$HOME/.wine}
# Internal variables; these locations are not too important
WINETRICKS_CACHE=$HOME/winetrickscache
# Default to hiding the directory, by popular demand
test -d $WINETRICKS_CACHE || WINETRICKS_CACHE=$HOME/.winetrickscache
WINETRICKS_TMP=$WINEPREFIX/drive_c/winetrickstmp
case "$1" in
-V|--version)
echo "Winetricks version 20080222. (C) Dan Kegel. LGPL."
exit 0
;;
esac
which "$WINE" > /dev/null
if test "$?" -ne "0"
then
@ -42,10 +51,12 @@ usage() {
echo ""
echo "Options:"
echo " -q quiet. You must have already agreed to the EULAs."
echo " -v Verbose"
echo " -v verbose"
echo " -V display Version"
echo "Packages:"
echo " art2kmin Access 2000 runtime. License required!"
echo " cc580 Install native common controls 5.80, override comctl32"
echo " colorprofile Install standard RGB color profile"
echo " corefonts Install MS Times, Arial fonts"
echo " dcom98 Install native DCOM, override the Wine implementation"
echo " gdiplus Install gdiplus.dll from pp viewer (got a better idea?)"
@ -277,6 +288,11 @@ REGEDIT4
_EOF_
while test "$1" != ""
do
case "$1" in
comctl32)
rm -rf $WINEPREFIX/drive_c/windows/winsxs/manifests/x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef.manifest
;;
esac
echo "\"$1\"=\"native,builtin\"" >> $WINETRICKS_TMP/override-dll.reg
shift
done
@ -311,6 +327,15 @@ load_cc580() {
#----------------------------------------------------------------
load_colorprofile() {
download . http://download.microsoft.com/download/whistler/hwdev1/1.0/wxp/en-us/ColorProfile.exe 6b72836b32b343c82d0760dff5cb51c2f47170eb
unzip -d $WINETRICKS_TMP $WINETRICKS_CACHE/ColorProfile.exe
mkdir -p $WINEPREFIX/drive_c/windows/system32/spool/drivers/color
cp -f "$WINETRICKS_TMP/sRGB Color Space Profile.icm" $WINEPREFIX/drive_c/windows/system32/spool/drivers/color
}
#----------------------------------------------------------------
load_corefonts() {
# See http://corefonts.sf.net
# TODO: let user pick mirror, check md5;
@ -840,6 +865,7 @@ do
-v) set -x;;
art2kmin) load_art2kmin;;
cc580) load_cc580;;
colorprofile) load_colorprofile;;
corefonts) load_corefonts;;
dcom98) load_dcom98;;
ffdshow) load_ffdshow;;