diff --git a/README.SuSE b/README.SuSE index 2b9b966..32897d5 100644 --- a/README.SuSE +++ b/README.SuSE @@ -12,7 +12,8 @@ and to configure wine for this copy. 2. Drives are configured by symlinking in ~/.wine/dosdevices/ -3. You have to set the WINEPREFIX variable to the wine base dir. +3. You have to set the WINEPREFIX variable to the wine base dir, + if it is different than ~/.wine. 4. Running "wineprefixcreate" will update or create such a wine base directory. diff --git a/wine-0.9.60.tar.bz2 b/wine-0.9.60.tar.bz2 deleted file mode 100644 index 70fb6b2..0000000 --- a/wine-0.9.60.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2120110607a4f00f137559d34e435a6af9fffc06d085f78568e9a75b7afa1a11 -size 13765920 diff --git a/wine-0.9.61.tar.bz2 b/wine-0.9.61.tar.bz2 new file mode 100644 index 0000000..8a74614 --- /dev/null +++ b/wine-0.9.61.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bca5efdacb7aeb5594dbcec1d9da7b148c2fe89e3dc555787c330dce29653b5 +size 13870861 diff --git a/wine.changes b/wine.changes index 5995fa3..dbc241e 100644 --- a/wine.changes +++ b/wine.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Fri May 2 19:51:11 CEST 2008 - meissner@suse.de + +- Upgraded to upstream 0.9.61 + - Automatic updating of the WINEPREFIX directory. + - Winhelp now uses Richedit as display engine. + - Many RichEdit fixes. + - More improvements to IME support. + - More quartz fixes. + - Implementation for many more Gdiplus functions. + - Lots of bug fixes. +- updated winetricks to current version + - bugfixes, mono fixes + ------------------------------------------------------------------- Sat Apr 19 10:25:31 CEST 2008 - meissner@suse.de diff --git a/wine.spec b/wine.spec index ddbc02f..ce2f9a0 100644 --- a/wine.spec +++ b/wine.spec @@ -1,5 +1,5 @@ # -# spec file for package wine (Version 0.9.60) +# spec file for package wine (Version 0.9.61) # # 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.60 +Version: 0.9.61 Release: 1 Summary: An MS Windows Emulator Url: http://www.winehq.com @@ -120,6 +120,17 @@ rm -rf $RPM_BUILD_ROOT /usr/share/aclocal/wine.m4 %changelog +* Fri May 02 2008 meissner@suse.de +- Upgraded to upstream 0.9.61 + - Automatic updating of the WINEPREFIX directory. + - Winhelp now uses Richedit as display engine. + - Many RichEdit fixes. + - More improvements to IME support. + - More quartz fixes. + - Implementation for many more Gdiplus functions. + - Lots of bug fixes. +- updated winetricks to current version + - bugfixes, mono fixes * Sat Apr 19 2008 meissner@suse.de - Upgraded to upstream 0.9.60 - Better support for Windows IMEs. diff --git a/winetricks b/winetricks index f0d0d5b..50ded54 100644 --- a/winetricks +++ b/winetricks @@ -20,7 +20,7 @@ WINETRICKS_TMP=$WINEPREFIX/drive_c/winetrickstmp case "$1" in -V|--version) - echo "Winetricks version 20080418. (C) Dan Kegel. LGPL." + echo "Winetricks version 20080423. (C) Dan Kegel. LGPL." exit 0 ;; esac @@ -78,11 +78,10 @@ usage() { echo " jet40 Install Jet 4.0 Service Pack 8" echo " liberation Install Red Hat's Liberation fonts (Sans, Serif, Mono)" echo " mdac25 MDAC 2.5: Microsoft ODBC drivers, etc." - echo " mdac27 MDAC 2.7." - echo " mdac28 MDAC 2.8." + echo " mdac27 MDAC 2.7" + echo " mdac28 MDAC 2.8" echo " mfc40" - echo " mono11 mono 1.1.13-gtksharp-2.8.2 (deprecated, use 1.2)" - echo " mono12 mono mono-1.9-gtksharp-2.10.4-win32-4" + echo " mono19 mono-1.9.1-gtksharp-2.10.4-win32-2" echo " msi2 Microsoft Installer 2.0" echo " msls31 Microsoft Line Services 3.1 (needed by native riched?)" echo " msxml3 Microsoft XML version 3" @@ -308,7 +307,12 @@ download() { fi cache=$WINETRICKS_CACHE/$1 mkdir -p $cache - test -f $cache/$file || (cd $cache; $WGET "$2") + if ! test -f $cache/$file + then + cd $cache + try $WGET "$2" + cd $olddir + fi if [ "$3"x != ""x ] then verify_sha1sum $3 "$cache/$file" @@ -739,37 +743,13 @@ load_mfc40() { #---------------------------------------------------------------- -load_mono11() { - echo "Mono-1.1 is deprecated. The Mono team prefers you use Mono-1.2 instead." +load_mono19() { # Load Mono, have it handle all .net requests - download . ftp://www.go-mono.com/archive/1.1.13.8.2/windows-installer/0/mono-1.1.13.8.2-gtksharp-2.8.2-win32-0.exe e8725d03f51fcca2849d1a8f1d87ceb6f77c1d82 + download . http://ftp.novell.com/pub/mono/archive/1.9.1/windows-installer/2/mono-1.9.1-gtksharp-2.10.4-win32-2.exe 47ccc5dbba22f6f684833a4efea5119231e8e71e # Anyone know how to get it to do a silent install? - try $WINE $WINETRICKS_CACHE/mono-1.1.13.8.2-gtksharp-2.8.2-win32-0.exe + try $WINE $WINETRICKS_CACHE/mono-1.9.1-gtksharp-2.10.4-win32-2.exe - # FIXME: what are the right registry entries here? - cat > $WINETRICKS_TMP/mono.reg <<_EOF_ -REGEDIT4 - -[HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v1.1.4322] -"Install"=dword:00000001 -"SP"=dword:00000001 - -[HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\policy\v1.1] -"4322"="3706-4322" -_EOF_ - try $WINE regedit $WINETRICKS_TMP/mono.reg - rm -f $WINETRICKS_TMP/mono.reg -} - -#---------------------------------------------------------------- - -load_mono12() { - # Load Mono, have it handle all .net requests - download . http://ftp.novell.com/pub/mono/archive/1.9/windows-installer/4/mono-1.9-gtksharp-2.10.4-win32-4.exe 52c79aa8a4fcb29570ecf8e3cfcc417317852c16 - # Anyone know how to get it to do a silent install? - try $WINE $WINETRICKS_CACHE/mono-1.9-gtksharp-2.10.4-win32-4.exe - - cat > $WINETRICKS_TMP/mono_1.2.reg <<_EOF_ + cat > $WINETRICKS_TMP/mono_1.9.reg <<_EOF_ REGEDIT4 [HKEY_LOCAL_MACHINE\Software\Microsoft\NET Framework Setup\NDP\v2.0.50727] @@ -779,8 +759,8 @@ REGEDIT4 [HKEY_LOCAL_MACHINE\Software\Microsoft\.NETFramework\policy\v2.0] "4322"="3706-4322" _EOF_ - try $WINE regedit $WINETRICKS_TMP/mono_1.2.reg - rm -f $WINETRICKS_TMP/mono_1.2.reg + try $WINE regedit $WINETRICKS_TMP/mono_1.9.reg + rm -f $WINETRICKS_TMP/mono_1.9.reg } #---------------------------------------------------------------- @@ -1137,8 +1117,8 @@ load_wsh56vb() { load_xvid() { # xvid - download . "http://www.digital-digest.com/software/getdownload.php?sid=1052&did=1" c4440346a09261af3eda3aa3fe2a17e46c817515 XviD-1.1.3-28062007.exe - try $WINE $WINETRICKS_CACHE/XviD-1.1.3-28062007.exe $WINETRICKS_SILENT + download . http://download.videohelp.com/download/Xvid-1.1.3-12042008.exe 8de4950fb3c53dd3c8d486c0b9d516ede4beded6 + try $WINE $WINETRICKS_CACHE/Xvid-1.1.3-12042008.exe $WINETRICKS_SILENT } #---------------------------------------------------------------- @@ -1174,8 +1154,7 @@ do mdac27) load_mdac27;; mdac28) load_mdac28;; mfc40) load_mfc40;; - mono11) load_mono11;; - mono12) load_mono12;; + mono19) load_mono19;; msi2) load_msi2;; msls31) load_msls31;; msxml3) load_msxml3;;