summaryrefslogtreecommitdiffstats
path: root/rules/mmpong.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-06-16 22:01:25 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-06-16 22:01:25 +0000
commit840f4e98448e84699118db5fbea0cf54bf17d004 (patch)
tree4d54a270e2d11cb138dfdeae4dade7f6c68e93e9 /rules/mmpong.in
parent0f0daf95ab605fe17d02d8daf214abf467d42549 (diff)
downloadptxdist-840f4e98448e84699118db5fbea0cf54bf17d004.tar.gz
ptxdist-840f4e98448e84699118db5fbea0cf54bf17d004.tar.xz
[mmpong] added
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10808 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/mmpong.in')
-rw-r--r--rules/mmpong.in31
1 files changed, 31 insertions, 0 deletions
diff --git a/rules/mmpong.in b/rules/mmpong.in
new file mode 100644
index 000000000..e822acc52
--- /dev/null
+++ b/rules/mmpong.in
@@ -0,0 +1,31 @@
+## SECTION=games
+
+menuconfig MMPONG
+ tristate
+ select HOST_CMAKE
+ select LIBCACA if MMPONG_CACA
+ select SDL if MMPONG_GL
+ prompt "mmpong "
+ help
+ mmpong is an ATARI-pong-like multiplayer game, where a
+ moving ball reflects on impact from paddles on the left and
+ right sides of the screen. A special feature of this
+ variant is the ability to play the game with far more than
+ two players. Players are split into two teams, and the
+ position of each team's paddle is determined by the mean
+ value of the positions of all the players' paddles on the
+ team. mmpong supports a number of different paddle profiles
+ (like flat or round).
+
+if MMPONG
+
+config MMPONG_CACA
+ bool "libcaca interface"
+
+#config MMPONG_GL
+# bool "gl interface"
+
+config MMPONG_SERVER
+ bool "install mmpong server"
+
+endif