r10598 - packages/trunk/performous/debian

Miriam Ruiz miriam at alioth.debian.org
Thu Dec 10 20:42:24 UTC 2009


Author: miriam
Date: 2009-12-10 20:42:23 +0000 (Thu, 10 Dec 2009)
New Revision: 10598

Modified:
   packages/trunk/performous/debian/changelog
   packages/trunk/performous/debian/control
   packages/trunk/performous/debian/rules
Log:
Define in rules which plugins to compile



Modified: packages/trunk/performous/debian/changelog
===================================================================
--- packages/trunk/performous/debian/changelog	2009-12-10 03:14:16 UTC (rev 10597)
+++ packages/trunk/performous/debian/changelog	2009-12-10 20:42:23 UTC (rev 10598)
@@ -6,6 +6,9 @@
   * Switched to the new source package format 3.0
     See: http://wiki.debian.org/Projects/DebSrc3.0
   * Upgraded Standards-Version from 3.8.2 to 3.8.3
+  * Added to Build-Depends: pkg-config
+  * Define in rules which plugins to compile.
+    See: libs/libda/plugins/CMakeLists.txt
 
  -- Miriam Ruiz <little_miry at yahoo.es>  Wed, 02 Dec 2009 22:31:10 +0100
 

Modified: packages/trunk/performous/debian/control
===================================================================
--- packages/trunk/performous/debian/control	2009-12-10 03:14:16 UTC (rev 10597)
+++ packages/trunk/performous/debian/control	2009-12-10 20:42:23 UTC (rev 10598)
@@ -1,10 +1,10 @@
 Source: performous
 Section: games
 Priority: extra
-Format: 3.0 (native)
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
 Uploaders: Miriam Ruiz <little_miry at yahoo.es>
-Build-Depends: debhelper (>= 5.0.51), cmake (>= 2.6), quilt, help2man, 
+Build-Depends: debhelper (>= 5.0.51),
+ cmake (>= 2.6), pkg-config, quilt, help2man, 
  libgl1-mesa-dev, libsdl1.2-dev, libcairo2-dev, librsvg2-dev,
  libboost-thread-dev (>= 1.36), libboost-serialization-dev (>= 1.36),
  libboost-program-options-dev (>= 1.36), libboost-regex-dev (>= 1.36),

Modified: packages/trunk/performous/debian/rules
===================================================================
--- packages/trunk/performous/debian/rules	2009-12-10 03:14:16 UTC (rev 10597)
+++ packages/trunk/performous/debian/rules	2009-12-10 20:42:23 UTC (rev 10598)
@@ -19,8 +19,16 @@
 	rm -rf $(BUILD_TREE)
 	mkdir $(BUILD_TREE)
 	cd $(BUILD_TREE); cmake .. \
+		-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
 		-DCMAKE_INSTALL_PREFIX:STRING="/usr" \
-		-DCMAKE_C_FLAGS:STRING="$(CFLAGS)" 
+		-DLibDA_AUTODETECT_PLUGINS:BOOL=OFF \
+		-DLibDA_PLUGIN_ALSA:BOOL=ON \
+		-DLibDA_PLUGIN_GSTREAMER:BOOL=ON \
+		-DLibDA_PLUGIN_JACK:BOOL=ON \
+		-DLibDA_PLUGIN_PORTAUDIO:BOOL=ON \
+		-DLibDA_PLUGIN_PULSE:BOOL=ON \
+		-DLibDA_PLUGIN_TESTING:BOOL=ON \
+		-DCMAKE_C_FLAGS:STRING="$(CFLAGS)"
 	touch $@
 
 build: build-stamp




More information about the Pkg-games-commits mailing list