rpms/ogre/F-10 .cvsignore, 1.14, 1.15 ogre.spec, 1.36, 1.37 sources, 1.15, 1.16

Alexey Torkhov atorkhov at fedoraproject.org
Sun Nov 9 15:35:14 UTC 2008


Author: atorkhov

Update of /cvs/pkgs/rpms/ogre/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv19677

Modified Files:
	.cvsignore ogre.spec sources 
Log Message:
* Thu Nov 06 2008 Alexey Torkhov <atorkhov at gmail.com> 1.6.0-1
- New upstream release 1.6.0
- Updated samples running script
- Removed non-free quake map from samples media
- Added docs license in License tag



Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/ogre/F-10/.cvsignore,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- .cvsignore	14 Sep 2008 09:25:14 -0000	1.14
+++ .cvsignore	9 Nov 2008 15:34:43 -0000	1.15
@@ -1 +1 @@
-ogre-1.6.0rc1-clean.tar.bz2
+ogre-1.6.0-clean.tar.bz2


Index: ogre.spec
===================================================================
RCS file: /cvs/pkgs/rpms/ogre/F-10/ogre.spec,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ogre.spec	28 Sep 2008 07:35:11 -0000	1.36
+++ ogre.spec	9 Nov 2008 15:34:43 -0000	1.37
@@ -1,14 +1,16 @@
 Name:           ogre
 Version:        1.6.0
-Release:        0.1.rc1%{?dist}
+Release:        1%{?dist}
 Summary:        Object-Oriented Graphics Rendering Engine
-License:        LGPLv2+
+# CC-BY-SA is for devel docs
+License:        LGPLv2+ and CC-BY-SA
 Group:          System Environment/Libraries
 URL:            http://www.ogre3d.org/
 # This is http://downloads.sourceforge.net/ogre/ogre-v%(echo %{version} | tr . -).tar.bz2
 # With the non free licensed headers under RenderSystems/GL/include/GL removed
 # And GLEW sources updated to 1.5.0 - upstream notified http://www.ogre3d.org/phpBB2/viewtopic.php?t=44558
-Source0:        ogre-1.6.0rc1-clean.tar.bz2
+# And non-free chiropteraDM.pk3 under Samples/Media/packs removed
+Source0:        %{name}-%{version}-clean.tar.bz2
 Source1:        ogre-samples.sh
 Patch0:         ogre-1.2.1-rpath.patch
 #Patch1:         ogre-1.6.0-system-glew.patch
@@ -122,16 +124,30 @@
   OgreMain/include/OgrePlatformInformation.h \
   $RPM_BUILD_ROOT%{_includedir}/OGRE
 
+# Create config for ldconfig
+mkdir -p $RPM_BUILD_ROOT/etc/ld.so.conf.d
+echo "%{_libdir}/OGRE" > $RPM_BUILD_ROOT/etc/ld.so.conf.d/%{name}-%{_arch}.conf
+
 # Install the samples
 mkdir -p $RPM_BUILD_ROOT%{_libdir}/OGRE/Samples
 # The Sample binaries get installed into the buildroot in a subdir of
 # the cwd??
 mv $RPM_BUILD_ROOT`pwd`/Samples/Common/bin/* \
   $RPM_BUILD_ROOT%{_libdir}/OGRE/Samples
-for cfg in media.cfg quake3settings.cfg resources.cfg; do
+for cfg in plugins.cfg media.cfg quake3settings.cfg resources.cfg; do
   install -p -m 644 Samples/Common/bin/$cfg \
     $RPM_BUILD_ROOT%{_libdir}/OGRE/Samples
 done
+sed -i 's|^PluginFolder=.*$|PluginFolder=%{_libdir}/OGRE|' \
+    $RPM_BUILD_ROOT%{_libdir}/OGRE/Samples/plugins.cfg
+# Change location of pak + switch from non-free chiropteraDM map
+sed -i 's|^Pak0Location: ../../Media/.*$|Pak0Location: %{_datadir}/OGRE/Samples/Media/packs/ogretestmap.zip|' \
+    $RPM_BUILD_ROOT%{_libdir}/OGRE/Samples/quake3settings.cfg
+sed -i 's|^Map:.*$|Map: ogretestmap.bsp|' \
+    $RPM_BUILD_ROOT%{_libdir}/OGRE/Samples/quake3settings.cfg
+# Fixing bug with wrong case for media
+mv Samples/Media/PCZAppMedia/ROOM_NY.mesh Samples/Media/PCZAppMedia/room_ny.mesh
+mv Samples/Media/PCZAppMedia/ROOM_PY.mesh Samples/Media/PCZAppMedia/room_py.mesh
 install -p -m 755 %{SOURCE1} $RPM_BUILD_ROOT%{_bindir}/Ogre-Samples
 
 mkdir -p $RPM_BUILD_ROOT%{_datadir}/OGRE/Samples
@@ -149,7 +165,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS BUGS COPYING 
+%doc AUTHORS BUGS COPYING
 %doc Docs/ChangeLog.html Docs/ReadMe.html Docs/style.css Docs/ogre-logo.gif
 %{_bindir}/Ogre*
 %{_bindir}/rcapsdump
@@ -159,6 +175,7 @@
 %exclude %{_bindir}/Ogre-Samples
 %exclude %{_libdir}/OGRE/Samples
 %exclude %{_datadir}/OGRE/Samples
+/etc/ld.so.conf.d/*
 
 %files devel
 %defattr(-,root,root,-)
@@ -173,12 +190,19 @@
 
 %files samples
 %defattr(-,root,root)
+%doc Samples/ReadMe.html
 %{_bindir}/Ogre-Samples
 %{_libdir}/OGRE/Samples
 %{_datadir}/OGRE/Samples
 
 
 %changelog
+* Thu Nov 06 2008 Alexey Torkhov <atorkhov at gmail.com> 1.6.0-1
+- New upstream release 1.6.0
+- Updated samples running script
+- Removed non-free quake map from samples media
+- Added docs license in License tag
+
 * Sat Sep 21 2008 Alexey Torkhov <atorkhov at gmail.com> 1.6.0-0.1.rc1
 - New upstream release 1.6.0rc1
 - Disabling broken OpenEXR plugin, it is not updated for long time and doesn't


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/ogre/F-10/sources,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- sources	28 Sep 2008 07:35:11 -0000	1.15
+++ sources	9 Nov 2008 15:34:43 -0000	1.16
@@ -1 +1 @@
-4a3ec51765880a682f8c9846839ea901  ogre-1.6.0rc1-clean.tar.bz2
+e5d073387fd1f424caaaa3f2b5d038c9  ogre-1.6.0-clean.tar.bz2




More information about the fedora-extras-commits mailing list