Revision: 731
http://python-ogre.svn.sourceforge.net/python-ogre/?rev=731&view=rev
Author: mithro
Date: 2008-09-03 12:29:57 +0000 (Wed, 03 Sep 2008)
Log Message:
-----------
Fixes to the python-ogre-demos package.
Modified Paths:
--------------
trunk/python-ogre/debs/python-ogre-demos/control
trunk/python-ogre/debs/python-ogre-demos/dsc
trunk/python-ogre/debs/python-ogre-demos/rules
Modified: trunk/python-ogre/debs/python-ogre-demos/control
===================================================================
--- trunk/python-ogre/debs/python-ogre-demos/control 2008-09-03 12:06:00 UTC (rev 730)
+++ trunk/python-ogre/debs/python-ogre-demos/control 2008-09-03 12:29:57 UTC (rev 731)
@@ -8,7 +8,7 @@
Standards-Version: 3.7.2
Package: python-ogre-demos
-Architecture: any
+Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python-ogre
XB-Python-Version: ${python:Versions}
Description: Example programs using the python-ogre package.
Modified: trunk/python-ogre/debs/python-ogre-demos/dsc
===================================================================
--- trunk/python-ogre/debs/python-ogre-demos/dsc 2008-09-03 12:06:00 UTC (rev 730)
+++ trunk/python-ogre/debs/python-ogre-demos/dsc 2008-09-03 12:29:57 UTC (rev 731)
@@ -5,6 +5,6 @@
Version: 0.0.0-1
Maintainer: Tim 'mithro' Ansell <mi...@mi...>
Standards-Version: 3.7.2.2
-%%BUILDDEPS%%
+Build-Depends: python-central (>= 0.5.6), python-setuptools (>= 0.6b3-1), python-all, debhelper (>= 5.0.38)
Files:
- %%MD5SUM%% %%SIZE%%
+ 00000000000000000000000000000000 0 python-ogre-demos.tar.gz
Modified: trunk/python-ogre/debs/python-ogre-demos/rules
===================================================================
--- trunk/python-ogre/debs/python-ogre-demos/rules 2008-09-03 12:06:00 UTC (rev 730)
+++ trunk/python-ogre/debs/python-ogre-demos/rules 2008-09-03 12:29:57 UTC (rev 731)
@@ -12,10 +12,18 @@
PYVERS := $(shell $(PYTHON) -c 'import sys; print sys.version[:3]')
#PYVERS = 2.5 #$(shell pyversions -vr)
-export BUILDFLAGS=--usesystem --verbose --failhard -g -c
+clean:
+ dh_testdir
+ dh_testroot
+ -find . -name '*.py[co]' | xargs rm -f
+ dh_clean
-
-build-python%:
+install:
+ dh_clean -k
+ dh_testdir
+ dh_testroot
+ dh_installdirs
+
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
@@ -28,27 +36,14 @@
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
+
-clean:
- dh_testdir
- dh_testroot
- -find . -name '*.py[co]' | xargs rm -f
- dh_clean
-
-install: $(PYVERS:%=build-python%) $(PYVERS:%=install-python%)
-
-install-python%:
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
# Build architecture-independent files here.
-binary-indep: build install
+binary-indep: install
# We have nothing to do here.
# Build architecture-dependent files here.
-binary-arch: build install
+binary-arch: install
dh_testdir
dh_testroot
dh_pycentral
@@ -62,4 +57,4 @@
binary: binary-indep binary-arch
-.PHONY: build clean demos binary-indep binary-arch binary install configure prep build $(PYVERS:%=build-python%) $(PYVERS:%=install-python%)
+.PHONY: clean demos binary-indep binary-arch binary install configure prep
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|