Author: nobrakal
Update of /cvs/free/rpms/openmw/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv12225
Modified Files:
.cvsignore openmw.spec sources
Removed Files:
openmw-datapath.patch
Log Message:
* Wed Dec 31 2014 Alexandre Moine <nobrakal(a)fedoraproject.org> 0.34.0-1
- Update directly to 0.34.0 due to the new mygui just released in fedora (see BGZ
#1145811)
- Remove openmw-datapath.patch, it set a variable in /components/files/linuxpath.cpp now
in cmake
- Add new executables: bsatool and openmw-wizard
- Add new libraries: Plugin_MyGUI_OpenMW_Resources.so
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/openmw/devel/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 22 Jul 2014 17:00:40 -0000 1.6
+++ .cvsignore 9 Jan 2015 18:21:38 -0000 1.7
@@ -1 +1 @@
-openmw-0.31.0.tar.gz
+openmw-0.34.0.tar.gz
Index: openmw.spec
===================================================================
RCS file: /cvs/free/rpms/openmw/devel/openmw.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- openmw.spec 31 Dec 2014 18:29:26 -0000 1.10
+++ openmw.spec 9 Jan 2015 18:21:39 -0000 1.11
@@ -1,15 +1,15 @@
Name: openmw
-Version: 0.31.0
-Release: 5%{?dist}
+Version: 0.34.0
+Release: 1%{?dist}
Summary: Unofficial open source engine re-implementation of the game Morrowind
License: GPLv3 and MIT and zlib
URL:
https://openmw.org
-# If you use a classic internet browser, Github renames the archive
(openmw-0.31.0.tar.gz) into openmw-openmw-0.31.0.tar.gz. So, If you want the sources, use
for example wget.
+# If you use a classic internet browser, Github renames the archive
(openmw-%%{version}.tar.gz) into openmw-openmw-%%{version}.tar.gz. So, If you want the
sources, use for example wget.
Source0:
https://github.com/OpenMW/openmw/archive/%{name}-%{version}.tar.gz
# Fix data path from /usr/share/games/openmw to /usr/share/openmw/data
-Patch0: openmw-datapath.patch
+# Patch0: openmw-datapath.patch
BuildRequires: cmake
BuildRequires: boost-devel
@@ -19,7 +19,8 @@
BuildRequires: libmpg123-devel
BuildRequires: libsndfile-devel
BuildRequires: libXt-devel
-BuildRequires: mygui-devel
+# Recent version of MyGui required in 0.34.0
+BuildRequires: mygui-devel >= 3.2.1
BuildRequires: ogre-devel
BuildRequires: openal-soft-devel
BuildRequires: openexr-devel
@@ -47,8 +48,7 @@
%prep
-%setup -qn %{name}-%{name}-%{version}
-%patch0 -p1
+%setup -qn %{name}-%{name}-%{version}
# Remove bundled tinyxml files
rm -f extern/oics/tiny*.*
@@ -57,15 +57,19 @@
%build
rm -rf build && mkdir build && pushd build
%cmake -DDATADIR:PATH=%{_datadir}/%{name} \
+ -DLIBDIR=%{_libdir} \
-DBINDIR=%{_bindir} \
-DDATAROOTDIR:PATH=%{_datadir} \
+ -DGLOBAL_DATA_PATH:PATH=%{_datadir} \
-DICONDIR=%{_datadir}/pixmaps \
+ -DMORROWIND_RESOURCE_FILES=%{_datadir}/%{name}/resources \
-DOPENMW_RESOURCE_FILES=%{_datadir}/%{name}/resources \
-DMORROWIND_DATA_FILES=%{_datadir}/%{name}/data \
-DUSE_SYSTEM_TINYXML=TRUE \
../
make %{?_smp_mflags}
+popd
%install
pushd build
@@ -89,6 +93,9 @@
%{_bindir}/omwlauncher
%{_bindir}/opencs
%{_bindir}/openmw
+%{_bindir}/bsatool
+%{_bindir}/openmw-wizard
+%{_libdir}/Plugin_MyGUI_OpenMW_Resources.so
%{_datadir}/applications/opencs.desktop
%{_datadir}/applications/openmw.desktop
%{_datadir}/%{name}/
@@ -98,14 +105,11 @@
%changelog
-* Wed Dec 31 2014 Alexandre Moine <nobrakal(a)fedoraproject.org> 0.31.0-1
-- Add cmake arguments for the location of ressources and data directory.
-
-* Mon Oct 20 2014 Sérgio Basto <sergio(a)serjux.com> - 0.31.0-4
-- Rebuilt for FFmpeg 2.4.3
-
-* Fri Sep 26 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 0.31.0-3
-- Rebuilt for FFmpeg 2.4.x
+* Wed Dec 31 2014 Alexandre Moine <nobrakal(a)fedoraproject.org> 0.34.0-1
+- Update directly to 0.34.0 due to the new mygui just released in fedora (see BGZ
#1145811)
+- Remove openmw-datapath.patch, it set a variable in /components/files/linuxpath.cpp now
in cmake
+- Add new executables: bsatool and openmw-wizard
+- Add new libraries: Plugin_MyGUI_OpenMW_Resources.so
* Thu Aug 07 2014 Sérgio Basto <sergio(a)serjux.com> - 0.31.0-2
- Rebuilt for ffmpeg-2.3
Index: sources
===================================================================
RCS file: /cvs/free/rpms/openmw/devel/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources 22 Jul 2014 17:00:40 -0000 1.6
+++ sources 9 Jan 2015 18:21:39 -0000 1.7
@@ -1 +1 @@
-0a5c0df54b5eafc37743dd33429fd5f0 openmw-0.31.0.tar.gz
+687ab871962cee9e8f701716d4d06561 openmw-0.34.0.tar.gz
--- openmw-datapath.patch DELETED ---