This commit is contained in:
parent
6e415507b8
commit
d637ce7376
@ -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
3
wine-0.9.56.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dd66d7e5234090c381bececddf40a65b36b8ca1ea6c7a1a90c2f0b9f13898162
|
||||||
|
size 13172197
|
13
wine.changes
13
wine.changes
@ -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
|
Mon Feb 11 11:05:56 CET 2008 - meissner@suse.de
|
||||||
|
|
||||||
|
14
wine.spec
14
wine.spec
@ -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.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# 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
|
License: LGPL v2.1 or later
|
||||||
Group: System/Emulators/PC
|
Group: System/Emulators/PC
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 0.9.55
|
Version: 0.9.56
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: An MS Windows Emulator
|
Summary: An MS Windows Emulator
|
||||||
Url: http://www.winehq.com
|
Url: http://www.winehq.com
|
||||||
@ -119,6 +119,16 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
/usr/share/aclocal/wine.m4
|
/usr/share/aclocal/wine.m4
|
||||||
|
|
||||||
%changelog
|
%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
|
* Mon Feb 11 2008 meissner@suse.de
|
||||||
- Upgraded to upstream 0.9.55
|
- Upgraded to upstream 0.9.55
|
||||||
- Direct3D improvements, including driver version emulation.
|
- Direct3D improvements, including driver version emulation.
|
||||||
|
28
winetricks
28
winetricks
@ -14,8 +14,17 @@ WINEPREFIX=${WINEPREFIX:-$HOME/.wine}
|
|||||||
|
|
||||||
# Internal variables; these locations are not too important
|
# Internal variables; these locations are not too important
|
||||||
WINETRICKS_CACHE=$HOME/winetrickscache
|
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
|
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
|
which "$WINE" > /dev/null
|
||||||
if test "$?" -ne "0"
|
if test "$?" -ne "0"
|
||||||
then
|
then
|
||||||
@ -42,10 +51,12 @@ usage() {
|
|||||||
echo ""
|
echo ""
|
||||||
echo "Options:"
|
echo "Options:"
|
||||||
echo " -q quiet. You must have already agreed to the EULAs."
|
echo " -q quiet. You must have already agreed to the EULAs."
|
||||||
echo " -v Verbose"
|
echo " -v verbose"
|
||||||
|
echo " -V display Version"
|
||||||
echo "Packages:"
|
echo "Packages:"
|
||||||
echo " art2kmin Access 2000 runtime. License required!"
|
echo " art2kmin Access 2000 runtime. License required!"
|
||||||
echo " cc580 Install native common controls 5.80, override comctl32"
|
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 " corefonts Install MS Times, Arial fonts"
|
||||||
echo " dcom98 Install native DCOM, override the Wine implementation"
|
echo " dcom98 Install native DCOM, override the Wine implementation"
|
||||||
echo " gdiplus Install gdiplus.dll from pp viewer (got a better idea?)"
|
echo " gdiplus Install gdiplus.dll from pp viewer (got a better idea?)"
|
||||||
@ -277,6 +288,11 @@ REGEDIT4
|
|||||||
_EOF_
|
_EOF_
|
||||||
while test "$1" != ""
|
while test "$1" != ""
|
||||||
do
|
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
|
echo "\"$1\"=\"native,builtin\"" >> $WINETRICKS_TMP/override-dll.reg
|
||||||
shift
|
shift
|
||||||
done
|
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() {
|
load_corefonts() {
|
||||||
# See http://corefonts.sf.net
|
# See http://corefonts.sf.net
|
||||||
# TODO: let user pick mirror, check md5;
|
# TODO: let user pick mirror, check md5;
|
||||||
@ -840,6 +865,7 @@ do
|
|||||||
-v) set -x;;
|
-v) set -x;;
|
||||||
art2kmin) load_art2kmin;;
|
art2kmin) load_art2kmin;;
|
||||||
cc580) load_cc580;;
|
cc580) load_cc580;;
|
||||||
|
colorprofile) load_colorprofile;;
|
||||||
corefonts) load_corefonts;;
|
corefonts) load_corefonts;;
|
||||||
dcom98) load_dcom98;;
|
dcom98) load_dcom98;;
|
||||||
ffdshow) load_ffdshow;;
|
ffdshow) load_ffdshow;;
|
||||||
|
Loading…
Reference in New Issue
Block a user