Accepting request 112724 from Emulators
I don't really know what those .def files do. But I guess they are really needed? With them lmms is building correctly in my home repo. - Include /usr/lib/wine/*.def files in wine-devel-32bit (forwarded request 112709 from RedDwarf) OBS-URL: https://build.opensuse.org/request/show/112724 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/wine?expand=0&rev=112
This commit is contained in:
commit
53993c5816
@ -1,3 +1,4 @@
|
||||
# this file is autregenerated by the .spec file.
|
||||
wine
|
||||
+^/usr/bin/wine$
|
||||
+^/usr/bin/wine-preloader$
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:99a437bb8bd350bb1499d59183635e58217e73d631379c43cfd0d6020428ee65
|
||||
size 20035856
|
3
wine-1.5.1.tar.bz2
Normal file
3
wine-1.5.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6dc578f9afb3c9a0f2b773bbe09af20578ac6fa514dd0712ecc5d05c766045e6
|
||||
size 20078739
|
26
wine.changes
26
wine.changes
@ -1,3 +1,29 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 5 13:08:08 UTC 2012 - reddwarf@opensuse.org
|
||||
|
||||
- Include /usr/lib/wine/*.def files in wine-devel-32bit
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 30 23:21:10 CEST 2012 - meissner@suse.de
|
||||
|
||||
- Updated to 1.5.1 development snapshot
|
||||
- Built-in JavaScript now preferred over Gecko in most cases.
|
||||
- Support for scalable font resources.
|
||||
- Fixes for audio and video playback.
|
||||
- Support for script decoding in JScript.
|
||||
- Various bug fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 26 17:41:16 CEST 2012 - meissner@suse.de
|
||||
|
||||
- Updated to 1.5.0 development snapshot (use Emulators:Wine:STABLE for wine 1.4)
|
||||
- New version of the Gecko engine.
|
||||
- Partial support for using the Trash on Mac OS X.
|
||||
- Support for path gradients in GdiPlus.
|
||||
- Various MSXML improvements.
|
||||
- Fixes to 64-bit exception handling.
|
||||
- Various bug fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 13 17:41:05 CET 2012 - meissner@suse.de
|
||||
|
||||
|
26
wine.spec
26
wine.spec
@ -16,9 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%bcond_with hal
|
||||
|
||||
Name: wine
|
||||
BuildRequires: Mesa-devel
|
||||
BuildRequires: alsa-devel
|
||||
BuildRequires: autoconf
|
||||
BuildRequires: bison
|
||||
@ -28,10 +27,12 @@ BuildRequires: dbus-1-devel
|
||||
BuildRequires: desktop-file-utils
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: flex
|
||||
BuildRequires: fontconfig-devel
|
||||
BuildRequires: freeglut-devel
|
||||
BuildRequires: freetype2-devel
|
||||
BuildRequires: giflib-devel
|
||||
BuildRequires: gnutls-devel
|
||||
BuildRequires: gstreamer-0_10-plugins-base-devel
|
||||
BuildRequires: libgphoto2-devel
|
||||
BuildRequires: libgsm-devel
|
||||
BuildRequires: libjpeg-devel
|
||||
@ -39,25 +40,17 @@ BuildRequires: liblcms-devel
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: libtiff-devel
|
||||
BuildRequires: libv4l-devel
|
||||
BuildRequires: libxml2-devel
|
||||
BuildRequires: libxslt-devel
|
||||
BuildRequires: ncurses-devel
|
||||
BuildRequires: openal-soft-devel
|
||||
BuildRequires: openldap2-devel
|
||||
BuildRequires: prelink
|
||||
BuildRequires: sane-backends-devel
|
||||
BuildRequires: update-desktop-files
|
||||
BuildRequires: valgrind-devel
|
||||
%if %{with hal}
|
||||
BuildRequires: hal-devel
|
||||
%endif
|
||||
%if 0%{?suse_version} > 1130
|
||||
BuildRequires: sane-backends-devel
|
||||
%else
|
||||
BuildRequires: sane-backends
|
||||
%endif
|
||||
%if 0%{?suse_version} > 1130
|
||||
BuildRequires: gstreamer-0_10-plugins-base-devel
|
||||
%endif
|
||||
Version: 1.4
|
||||
BuildRequires: xorg-x11-devel
|
||||
Version: 1.5.1
|
||||
Release: 0
|
||||
Summary: An MS Windows Emulator
|
||||
License: LGPL-2.1+
|
||||
@ -73,13 +66,13 @@ Source7: baselibs.conf
|
||||
# SUSE specific patches
|
||||
# - currently none, but add them here
|
||||
#Patch0: susepatches.patch
|
||||
Recommends: wine-gecko >= 1.4
|
||||
Recommends: wine-gecko >= 1.5
|
||||
Recommends: wine-mp3
|
||||
Recommends: dosbox
|
||||
Conflicts: wine-gecko < 1.3
|
||||
|
||||
%ifarch x86_64
|
||||
Requires: wine-32bit = %version
|
||||
Requires: %{name}-32bit = %{version}
|
||||
%endif
|
||||
# for winetricks:
|
||||
Requires: cabextract
|
||||
@ -145,6 +138,7 @@ echo " +^/usr/lib/wine/fakedlls" >> %SOURCE7
|
||||
grep SONAME_ config.log
|
||||
grep SONAME_ config.log|grep -v 'so"'|sed -e 's/^.*\(".*"\).*$/ requires \1/;'|sort -u >>%SOURCE7
|
||||
echo "%name-devel" >> %SOURCE7
|
||||
echo " +^/usr/lib/wine/*.def" >> %SOURCE7
|
||||
cat %SOURCE7
|
||||
%endif
|
||||
make %{?jobs:-j%jobs} all
|
||||
|
Loading…
Reference in New Issue
Block a user