rpms/openmw/F-20 openmw-datapath.patch, 1.5, 1.6 .cvsignore, 1.9, 1.10 openmw.spec, 1.10, 1.11 sources, 1.9, 1.10

Alexandre Moine nobrakal at rpmfusion.org
Tue Jan 13 17:01:53 CET 2015


Author: nobrakal

Update of /cvs/free/rpms/openmw/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18452

Modified Files:
	.cvsignore openmw.spec sources 
Added Files:
	openmw-datapath.patch 
Log Message:
* Wed Dec 31 2014 Alexandre Moine <nobrakal at fedoraproject.org> 0.31.0-5
- Add cmake arguments for the location of ressources and data directory.


openmw-datapath.patch:
 linuxpath.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: openmw-datapath.patch
===================================================================
RCS file: openmw-datapath.patch
diff -N openmw-datapath.patch
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ openmw-datapath.patch	13 Jan 2015 16:01:53 -0000	1.6
@@ -0,0 +1,11 @@
+--- openmw-openmw-0.29.0.or/components/files/linuxpath.cpp	2014-03-04 08:52:48.000000000 +0100
++++ openmw-openmw-0.29.0/components/files/linuxpath.cpp	2014-03-13 19:31:40.400005365 +0100
+@@ -80,7 +80,7 @@
+ 
+ boost::filesystem::path LinuxPath::getGlobalDataPath() const
+ {
+-    boost::filesystem::path globalDataPath("/usr/share/games/");
++    boost::filesystem::path globalDataPath("/usr/share/");
+     return globalDataPath / mName;
+ }
+ 


Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/openmw/F-20/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore	10 Jan 2015 11:03:37 -0000	1.9
+++ .cvsignore	13 Jan 2015 16:01:53 -0000	1.10
@@ -1 +1 @@
-openmw-0.34.0.tar.gz
+openmw-0.31.0.tar.gz


Index: openmw.spec
===================================================================
RCS file: /cvs/free/rpms/openmw/F-20/openmw.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- openmw.spec	10 Jan 2015 11:03:37 -0000	1.10
+++ openmw.spec	13 Jan 2015 16:01:53 -0000	1.11
@@ -1,15 +1,15 @@
 Name:           openmw
-Version:        0.34.0
-Release:        1%{?dist}
+Version:        0.31.0
+Release:        5%{?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-%%{version}.tar.gz) into openmw-openmw-%%{version}.tar.gz. So, If you want the sources, use for example wget.
+# 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.
 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,8 +19,7 @@
 BuildRequires:  libmpg123-devel
 BuildRequires:  libsndfile-devel
 BuildRequires:  libXt-devel
-# Recent version of MyGui required in 0.34.0
-BuildRequires:  mygui-devel >= 3.2.1
+BuildRequires:  mygui-devel
 BuildRequires:  ogre-devel
 BuildRequires:  openal-soft-devel
 BuildRequires:  openexr-devel
@@ -48,7 +47,8 @@
 
 
 %prep
-%setup -qn %{name}-%{name}-%{version} 
+%setup -qn %{name}-%{name}-%{version}
+%patch0 -p1 
 
 # Remove bundled tinyxml files
 rm -f extern/oics/tiny*.*
@@ -57,19 +57,15 @@
 %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
@@ -93,9 +89,6 @@
 %{_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}/
@@ -105,11 +98,14 @@
 
 
 %changelog
-* Wed Dec 31 2014 Alexandre Moine <nobrakal at 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
+* Wed Dec 31 2014 Alexandre Moine <nobrakal at fedoraproject.org> 0.31.0-5
+- Add cmake arguments for the location of ressources and data directory.
+
+* Mon Oct 20 2014 Sérgio Basto <sergio at serjux.com> - 0.31.0-4
+- Rebuilt for FFmpeg 2.4.3
+
+* Fri Sep 26 2014 Nicolas Chauvet <kwizart at gmail.com> - 0.31.0-3
+- Rebuilt for FFmpeg 2.4.x
 
 * Thu Aug 07 2014 Sérgio Basto <sergio at serjux.com> - 0.31.0-2
 - Rebuilt for ffmpeg-2.3


Index: sources
===================================================================
RCS file: /cvs/free/rpms/openmw/F-20/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources	10 Jan 2015 11:03:37 -0000	1.9
+++ sources	13 Jan 2015 16:01:53 -0000	1.10
@@ -1 +1 @@
-687ab871962cee9e8f701716d4d06561  openmw-0.34.0.tar.gz
+0a5c0df54b5eafc37743dd33429fd5f0  openmw-0.31.0.tar.gz


More information about the rpmfusion-commits mailing list