SHA256
1
0
forked from pool/wine
OBS User unknown 2008-11-28 11:19:21 +00:00 committed by Git OBS Bridge
parent bc97d47d90
commit 94fcf4bf14
5 changed files with 86 additions and 33 deletions

View File

@ -1,11 +1,10 @@
Violation of existing windows:
------------------------------
Wine can corrupt MS Windows installation.
It is recommended to copy whole of windows to another destination
and to configure wine for this copy.
Start wine:
-----------
Check whether wine runs by entering (e.g.) 'wine sol.exe' or
'wine progman'.
General Notes:
--------------
1. All configuration data is in the registry, and can be accessed
directly by editing system.reg or user.reg, "wine regedit.exe" or
with the graphical configuration frontend "winecfg".
@ -16,22 +15,41 @@ and to configure wine for this copy.
if it is different than ~/.wine.
4. Running "wineprefixcreate" will update or create such a wine base
directory.
directory. This is done automatically in current Wines.
There usually is no need for additionaly configuring wine.
If no ~/.wine is present, it will setup a fake windows
If no ~/.wine is present, Wine will setup a fake windows
environment in ~/.wine by itself, including all necessary config
file and registry settings by running "wineprefixcreate".
Start wine:
-----------
Check whether wine runs by entering (e.g.) 'wine sol.exe' or
'wine progman'.
Windows DLLs not supported by Wine:
--------------------------------------
A shell script called "winetricks" is included in this RPM which
can be used to quickly install missing DLLs from public redistributable
archives.
winetricks help shows all installation possibilities
winetricks gecko Installs the Mozilla Gecko rendering engine, which
provides generic HTML rendering support to Wine.
winetricks mfc40 installs the MFC40.DLL
winetricks mfc42 installs the MFC42.DLL (Applications might need it)
Violation of existing windows:
------------------------------
Wine can corrupt MS Windows installation.
It is not recommended to point Wine to an existing Windows
installation. Also it should no longer be necessary to copy
stuff from Windows installations.
Error and warning messages:
---------------------------
Wine is intensively developed but always isn't complete.
Therefore things might not work and wine prints lots of error and
Wine is intensively developed but is not always complete.
Therefore things might not work and wine might print error and
warning messages.

View File

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

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

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

View File

@ -1,3 +1,25 @@
-------------------------------------------------------------------
Mon Nov 24 12:20:58 CET 2008 - meissner@suse.de
- Updated to upstream 1.1.9
- A large number of regression test fixes.
- Performance improvements in memory management.
- Improved POP3 support in inetcomm.
- Initial implementation of the XInput DLL.
- Various bug fixes.
- hardrequire all the funny 32bit libraries against we link
- run suse_update_desktop_file bnc#445736
-------------------------------------------------------------------
Fri Nov 7 19:34:04 CET 2008 - meissner@suse.de
- Updated to upstream 1.1.8
- Substantial parts of inetcomm implemented (for Outlook).
- Still better crypt32 support.
- Memory management improvements.
- Theming support for buttons.
- Various bug fixes.
-------------------------------------------------------------------
Fri Oct 24 21:27:45 CEST 2008 - meissner@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package wine (Version 1.1.7)
# spec file for package wine (Version 1.1.9)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -23,7 +23,7 @@ BuildRequires: alsa-devel bison capi4linux-devel cups-devel desktop-file-utils
License: LGPL v2.1 or later
Group: System/Emulators/PC
AutoReqProv: on
Version: 1.1.7
Version: 1.1.9
Release: 1
Summary: An MS Windows Emulator
Url: http://www.winehq.com
@ -32,6 +32,7 @@ Source1: http://kegel.com/wine/winetricks
Source3: README.SuSE
Source4: wine.desktop
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: libX11.so.6 libXext.so.6 libXcursor.so.1 libXi.so.6 libXxf86vm.so.1 libXrender.so.1 libXrandr.so.2 libXinerama.so.1 libXcomposite.so.1 libGL.so.1 libGLU.so.1 libxslt.so.1 libhal.so.1 libncurses.so.5 libfreetype.so.6 libodbc.so.1 libpng12.so.0 libjpeg.so.62 libcrypto.so.0.9.8 libssl.so.0.9.8 libfontconfig.so.1 libcups.so.2
ExclusiveArch: %ix86
%description
@ -76,7 +77,6 @@ rm -f ./config.cache
autoconf
CFLAGS="$RPM_OPT_FLAGS" \
./configure --prefix=/usr --verbose
make %{?jobs:-j%jobs} depend
make %{?jobs:-j%jobs} all
%install
@ -91,14 +91,11 @@ cp ANNOUNCE AUTHORS LICENSE LICENSE.OLD README* \
#
find $RPM_BUILD_ROOT/%{_defaultdocdir}/%{name}/ -type d|xargs chmod ogu+rx
find $RPM_BUILD_ROOT/%{_defaultdocdir}/%{name}/ -type f|xargs chmod ogu+r
install -d $RPM_BUILD_ROOT/usr/share/applications/
install -m 0644 %SOURCE4 $RPM_BUILD_ROOT/usr/share/applications/
install -m 0755 %SOURCE1 $RPM_BUILD_ROOT/usr/bin/
mv $RPM_BUILD_ROOT/%{_mandir}/de.UTF-8 $RPM_BUILD_ROOT/%{_mandir}/de
mv $RPM_BUILD_ROOT/%{_mandir}/fr.UTF-8 $RPM_BUILD_ROOT/%{_mandir}/fr
%suse_update_desktop_file %{SOURCE4} Emulator
%fdupes -s $RPM_BUILD_ROOT
objcopy -R .note.gnu.build-id $RPM_BUILD_ROOT/usr/bin/wine-pthread
objcopy -R .note.gnu.build-id $RPM_BUILD_ROOT/usr/bin/wine-kthread
%clean
rm -rf $RPM_BUILD_ROOT
@ -128,6 +125,22 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/aclocal/wine.m4
%changelog
* Mon Nov 24 2008 meissner@suse.de
- Updated to upstream 1.1.9
- A large number of regression test fixes.
- Performance improvements in memory management.
- Improved POP3 support in inetcomm.
- Initial implementation of the XInput DLL.
- Various bug fixes.
- hardrequire all the funny 32bit libraries against we link
- run suse_update_desktop_file bnc#445736
* Fri Nov 07 2008 meissner@suse.de
- Updated to upstream 1.1.8
- Substantial parts of inetcomm implemented (for Outlook).
- Still better crypt32 support.
- Memory management improvements.
- Theming support for buttons.
- Various bug fixes.
* Fri Oct 24 2008 meissner@suse.de
- Updated to upstream 1.1.7
- Improved device management for DOS drives.
@ -181,7 +194,7 @@ rm -rf $RPM_BUILD_ROOT
- Updated winetricks to current version
* Fri Aug 15 2008 ro@suse.de
- add exclusivearch to specfile
* Sat Jul 12 2008 meissner@suse.de
* Fri Jul 11 2008 meissner@suse.de
- Updated to upstream 1.1.1 - development release
- Fixes for Photoshop CS3 and Office 2007 installers.
- More progress on gdiplus.
@ -306,7 +319,7 @@ rm -rf $RPM_BUILD_ROOT
- MS dotnet 1.1 downloader added
- added intel codec downloader
- renamed allvcodecs -> allcodecs
* Sat Feb 23 2008 meissner@suse.de
* Fri Feb 22 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.
@ -351,7 +364,7 @@ rm -rf $RPM_BUILD_ROOT
- Fixes for some longstanding screen depth issues.
- Implementation of "My Network Places" shell folder.
- Lots of bug fixes.
* Sat Dec 15 2007 meissner@suse.de
* Fri Dec 14 2007 meissner@suse.de
- Upgraded to upstream 0.9.51
- A bunch of WinHelp improvements.
- Better Japanese font support.
@ -415,7 +428,7 @@ rm -rf $RPM_BUILD_ROOT
- Note a few downloads are no longer available (replacements, anyone?)
- Note mono11 is deprecated
- Add Mikolaj's nifty fakeie changes
* Sat Aug 11 2007 meissner@suse.de
* Fri Aug 10 2007 meissner@suse.de
- Upgraded to upstream 0.9.43:
- Direct3D support on top of WGL instead of GLX for better portability.
- Many DirectSound fixes.
@ -462,7 +475,7 @@ rm -rf $RPM_BUILD_ROOT
- A number of OLE fixes.
- Lots of bug fixes.
- Added "winetricks" script from Dan Kegel.
* Sat May 12 2007 meissner@suse.de
* Fri May 11 2007 meissner@suse.de
- Upgraded to upstream 0.9.37:
- MSI automation with JScript/VBScript support.
- Various MSHTML improvements.
@ -569,7 +582,7 @@ rm -rf $RPM_BUILD_ROOT
- Dynamic drive support on MacOSX.
- Still more MSI fixes and improvements.
- Lots of bug fixes.
* Fri Sep 29 2006 meissner@suse.de
* Thu Sep 28 2006 meissner@suse.de
- Upstream 0.9.22:
- The usual assortment of MSI improvements.
- Several bug fixes to the various common controls.
@ -650,7 +663,7 @@ rm -rf $RPM_BUILD_ROOT
- Lots of bug fixes.
- Added libgphoto2 and hal development libs to BuildRequires.
- personality hack to avoid virtual ram ulimits now seperate.
* Tue Apr 18 2006 meissner@suse.de
* Mon Apr 17 2006 meissner@suse.de
- Upstream 0.9.12:
- New Winelib Internet Explorer application (all 5 lines of it).
- Several improvements to the font support.
@ -1210,7 +1223,7 @@ rm -rf $RPM_BUILD_ROOT
instead of it was used old Makefile and old launcher
* Mon Dec 03 2001 ro@suse.de
- fixed neededforbuild <docbktls> to <docbook-toys>
* Fri Nov 02 2001 bjacke@suse.de
* Thu Nov 01 2001 bjacke@suse.de
- make sub package -devel
- add "cups-devel cups-libs libpng jpeg openssl libtiff" to
neededforbuild for CUPS support