Revision: 729
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=729&view=rev
Author: mithro
Date: 2008-09-03 11:25:06 +0000 (Wed, 03 Sep 2008)
Log Message:
-----------
Added better descriptions and a "demos" package.
Modified Paths:
--------------
trunk/python-ogre/debian/control
trunk/python-ogre/debian/rules
Modified: trunk/python-ogre/debian/control
===================================================================
--- trunk/python-ogre/debian/control 2008-09-03 07:36:34 UTC (rev 728)
+++ trunk/python-ogre/debian/control 2008-09-03 11:25:06 UTC (rev 729)
@@ -24,12 +24,35 @@
Architecture: any
Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends},
XB-Python-Version: ${python:Versions}
-Description: Python Ogre.
- Python Ogre.
+Description: Python bindings for Ogre 3d engine and a number of other graphic
+ and game libraries.
+ .
+ Python-Ogre is a free open source Python interface to a wide range of C++
+ libraries. Focused primarly on supporting the Ogre 3D graphics library and
+ other Graphics and Gaming libraries. Python-Ogre allows developers to focus
+ on their 'application', taking advantage of the simplicity of Python with
+ the performance and functionality of the underlying libraries.
Package: python-ogre-dbg
Architecture: any
Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-ogre (= ${Source-Version})
XB-Python-Version: ${python:Versions}
-Description: Python Ogre.
- Python Ogre.
+Description: Debug symbols for the python-ogre package.
+ .
+ Python-Ogre is a free open source Python interface to a wide range of C++
+ libraries. Focused primarly on supporting the Ogre 3D graphics library and
+ other Graphics and Gaming libraries. Python-Ogre allows developers to focus
+ on their 'application', taking advantage of the simplicity of Python with
+ the performance and functionality of the underlying libraries.
+
+Package: python-ogre-demos
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-ogre (= ${Source-Version})
+XB-Python-Version: ${python:Versions}
+Description: Example programs using the python-ogre package.
+ .
+ Python-Ogre is a free open source Python interface to a wide range of C++
+ libraries. Focused primarly on supporting the Ogre 3D graphics library and
+ other Graphics and Gaming libraries. Python-Ogre allows developers to focus
+ on their 'application', taking advantage of the simplicity of Python with
+ the performance and functionality of the underlying libraries.
Modified: trunk/python-ogre/debian/rules
===================================================================
--- trunk/python-ogre/debian/rules 2008-09-03 07:36:34 UTC (rev 728)
+++ trunk/python-ogre/debian/rules 2008-09-03 11:25:06 UTC (rev 729)
@@ -49,7 +49,7 @@
-find . -name '*.py[co]' | xargs rm -f
dh_clean
-install: build $(PYVERS:%=install-python%)
+install: build $(PYVERS:%=build-python%) $(PYVERS:%=install-python%)
install-python%:
dh_testdir
@@ -59,12 +59,26 @@
python$* setup.py install --root=$(CURDIR)/debian/python-ogre
python$* setup.py install --root=$(CURDIR)/debian/tmp
+demos:
+ mkdir -p $(CURDIR)/debian/python-ogre-demos/usr/share/python-ogre-demos/
+ cp -rvf demos/* $(CURDIR)/debian/python-ogre-demos/usr/share/python-ogre-demos/
+ # Clean up any svn directories
+ find $(CURDIR)/debian/python-ogre-demos -name .svn | xargs rm -rf || true
+ # Remove any plugins.cfg files
+ find $(CURDIR)/debian/python-ogre-demos -name plugins.cfg | xargs rm || true
+ # Remove any yet to work demos
+ find $(CURDIR)/debian/python-ogre-demos -name tofix | xargs rm -rf || true
+ # Remove windows only demos
+ find $(CURDIR)/debian/python-ogre-demos -name dshow | xargs rm -rf || true
+ # Remove any log files
+ find $(CURDIR)/debian/python-ogre-demos -name \*.log | xargs rm || true
+
# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do here.
# Build architecture-dependent files here.
-binary-arch: build install
+binary-arch: demos build install
dh_strip --dbg-package=python-ogre-dbg
dh_testdir
dh_testroot
@@ -89,4 +103,4 @@
# sudo dpkg --install libboost-python1.34.1-index*.deb
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install configure prep build $(PYVERS:%=build-python%) $(PYVERS:%=install-python%)
+.PHONY: build clean demos binary-indep binary-arch binary install configure prep build $(PYVERS:%=build-python%) $(PYVERS:%=install-python%)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|