|
From: Markus R. <god...@us...> - 2009-11-12 12:49:26
|
Module: performous
Branch: master
Commit: 12a6cc32cd7e931ce8cd41d992534178cb666625
Author: Markus Raab <un...@ma...>
Date: Tue Nov 10 13:30:31 2009 +0100
packaging for debian lenny added
also ignore build32 and build64 folders
ignore database.xml in game folder
---
.gitignore | 2 ++
cmake/performous-packaging.cmake | 3 +++
game/.gitignore | 1 +
3 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
index 378eac2..4497982 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,3 @@
build
+build32
+build64
diff --git a/cmake/performous-packaging.cmake b/cmake/performous-packaging.cmake
index acc3027..256aad1 100644
--- a/cmake/performous-packaging.cmake
+++ b/cmake/performous-packaging.cmake
@@ -62,6 +62,9 @@ if(UNIX)
if("${LSB_DISTRIB}" MATCHES "Ubuntu9.10")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libsdl1.2debian, libcairo2, librsvg2-2, libboost-thread1.38.0, libboost-program-options1.38.0, libboost-regex1.38.0, libboost-filesystem1.38.0, libboost-date-time1.38.0, libavcodec52, libavformat52, libswscale0, libmagick++1, libxml++2.6-2, libglew1.5")
endif("${LSB_DISTRIB}" MATCHES "Ubuntu9.10")
+ if("${LSB_DISTRIB}" MATCHES "Debian5.*")
+ set(CPACK_DEBIAN_PACKAGE_DEPENDS "libsdl1.2debian, libcairo2, librsvg2-2, libboost-dev, libavcodec51, libavformat52, libswscale0, libmagick++10, libxml++2.6-2, libglew1.5")
+ endif("${LSB_DISTRIB}" MATCHES "Ubuntu9.10")
if(NOT CPACK_DEBIAN_PACKAGE_DEPENDS)
message("WARNING: ${LSB_DISTRIB} not supported yet.\nPlease set deps in cmake/performous-packaging.cmake before packaging.")
endif(NOT CPACK_DEBIAN_PACKAGE_DEPENDS)
diff --git a/game/.gitignore b/game/.gitignore
index 314577e..22bc235 100644
--- a/game/.gitignore
+++ b/game/.gitignore
@@ -7,6 +7,7 @@ config.hh
database
performous.xml
+database.xml
highscore
highscore.txt
|