r14557 - in packages/trunk/pink-pony/debian: . patches

Miriam Ruiz miriam at alioth.debian.org
Thu Sep 12 23:06:16 UTC 2013


Author: miriam
Date: 2013-09-12 23:06:15 +0000 (Thu, 12 Sep 2013)
New Revision: 14557

Removed:
   packages/trunk/pink-pony/debian/patches/audiere.patch
   packages/trunk/pink-pony/debian/patches/scons.patch
Modified:
   packages/trunk/pink-pony/debian/SConstruct
   packages/trunk/pink-pony/debian/changelog
   packages/trunk/pink-pony/debian/control
   packages/trunk/pink-pony/debian/patches/datadir.patch
   packages/trunk/pink-pony/debian/patches/glee.patch
   packages/trunk/pink-pony/debian/patches/script.patch
   packages/trunk/pink-pony/debian/patches/series
   packages/trunk/pink-pony/debian/patches/tinyxml.patch
   packages/trunk/pink-pony/debian/pink-pony.install
Log:
New upstream release



Modified: packages/trunk/pink-pony/debian/SConstruct
===================================================================
--- packages/trunk/pink-pony/debian/SConstruct	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/SConstruct	2013-09-12 23:06:15 UTC (rev 14557)
@@ -2,15 +2,15 @@
 
 env = Environment()
 env['CC'] = 'g++'
-env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter :CFLAGS: -I/usr/include/OpenEXR -I./lib'
+env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter :CFLAGS: -I/usr/include/OpenEXR -I/usr/include/SDL -I./lib'
 env['LINKFLAGS'] = ':LDFLAGS:'
-env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT', 'tinyxml', 'glee']
+env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'tinyxml', 'glee', 'SDL', 'SDL_mixer']
 env.ParseConfig("pkg-config IlmBase --cflags --libs")
 env.ParseConfig("pkg-config libglfw --cflags --libs")
 env.ParseConfig("pkg-config ftgl --cflags --libs")
 env.ParseConfig("pkg-config sigc++-2.0 --cflags --libs")
+env.ParseConfig("pkg-config SDL_mixer --cflags --libs")
 
-
 # conf = Configure(env)
 # if not conf.CheckLib('protobuf'):
 #     print 'You have to install Google protocol buffers to compile this game.'

Modified: packages/trunk/pink-pony/debian/changelog
===================================================================
--- packages/trunk/pink-pony/debian/changelog	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/changelog	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,3 +1,10 @@
+pink-pony (1.3.1-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+  * Using SDL_mixer instead of Audiere for music.
+
+ -- Miriam Ruiz <miriam at debian.org>  Thu, 12 Sep 2013 21:50:39 +0200
+
 pink-pony (1.2.1+git20110821-2) unstable; urgency=low
 
   * Fixed some installation issues.

Modified: packages/trunk/pink-pony/debian/control
===================================================================
--- packages/trunk/pink-pony/debian/control	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/control	2013-09-12 23:06:15 UTC (rev 14557)
@@ -6,7 +6,8 @@
 Build-Depends: debhelper (>= 9), quilt, scons, pkg-config, dh-buildinfo,
  mesa-common-dev, libglu1-mesa-dev, libglfw-dev, libxrandr-dev, glee-dev,
  libilmbase-dev, libdevil-dev, libftgl-dev, libsigc++-2.0-dev,
- libprotobuf-dev (>= 2), protobuf-compiler (>= 2), libtinyxml-dev
+ libprotobuf-dev (>= 2), protobuf-compiler (>= 2), libtinyxml-dev,
+ libsdl1.2-dev, libsdl-mixer1.2-dev
 Standards-Version: 3.9.4
 Homepage: http://code.google.com/p/pink-pony/
 Vcs-Svn: svn://anonscm.debian.org/pkg-games/packages/trunk/pink-pony/

Deleted: packages/trunk/pink-pony/debian/patches/audiere.patch
===================================================================
--- packages/trunk/pink-pony/debian/patches/audiere.patch	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/patches/audiere.patch	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,179 +0,0 @@
---- pink-pony-1.2.1.orig/Pony.cc
-+++ pink-pony-1.2.1/Pony.cc
-@@ -3,9 +3,6 @@
- 
- #include "Menu.hh"
- 
--#include <audiere.h>
--using namespace audiere;
--
- #include <algorithm>
- #include "ImathRandom.h"
- 
-@@ -27,25 +24,6 @@
-         cerr << "Could not read config file." << endl;
-         return 1;
-     }
--    
--    AudioDevicePtr device(OpenDevice());
--    if (!device) {
--        cerr << "Could not open audio device. :<" << endl;
--    }
--    
--    OutputStreamPtr music(OpenSound(device, 
--                                    config.background_music.c_str(), 
--                                    true));
--    
--    if (!music) {
--        cerr << "Could not load music file. :<" << endl;
--    } else {
--        
--        music->setRepeat(true);
--        music->setVolume(1.0);
--        music->play();
--        
--    }
- 
-     glfwInit();
-     glfwOpenWindowHint(GLFW_FSAA_SAMPLES, config.fsaa_samples);
-@@ -88,7 +66,7 @@
-             Menu::MenuStatus menu_status;
-         
-             {
--                Menu menu(&config, &skydome, music);
-+                Menu menu(&config, &skydome);
- 
-                 menu_status = menu.run();
-             }
-@@ -131,8 +109,7 @@
-                     PonyGame game(&screen,
-                                   &heightmap,
-                                   &config,
--                                  &skydome,
--                                  music);
-+                                  &skydome);
- 
-                     run_game = game.start(points);
-                 }
---- pink-pony-1.2.1.orig/lib/cinquo.hh
-+++ pink-pony-1.2.1/lib/cinquo.hh
-@@ -21,8 +21,6 @@
- 
- #include <assert.h>
- 
--#include <audiere.h>
--
- using std::string;
- using std::cout;
- using std::endl;
---- pink-pony-1.2.1.orig/lib/PonyGame.cc
-+++ pink-pony-1.2.1/lib/PonyGame.cc
-@@ -7,14 +7,12 @@
- PonyGame::PonyGame(SplitScreen* screen,
-                    Heightmap* heightmap,
-                    Config* config,
--                   Skydome* skydome,
--                   audiere::OutputStreamPtr music)
-+                   Skydome* skydome)
-     : particle_system(ParticleSystem::make_particle_system(2000000, config)),
-       m_screen(screen),
-       m_heightmap(heightmap),
-       m_config(config),
-       skydome(skydome),
--      music(music),
-       heart(),
-       heart_drawer(&heart),
-       heart_shader("/usr/share/games/pink-pony/GLSL/heart")
-@@ -408,11 +406,7 @@
-         }
- 
-         if (glfwGetKey(GLFW_KEY_F1) && !f1_pressed) {
--            if (music->getVolume() != 0.0) {
--                music->setVolume(0.0);
--            } else {
--                music->setVolume(1.0);
--            }            
-+            printf("Toggle Music");
-         }
- 
-         space_pressed = glfwGetKey(GLFW_KEY_SPACE);
---- pink-pony-1.2.1.orig/lib/PonyGame.hh
-+++ pink-pony-1.2.1/lib/PonyGame.hh
-@@ -24,7 +24,6 @@
-     Heightmap* m_heightmap;
-     Config* m_config;
-     Skydome* skydome;
--    audiere::OutputStreamPtr music;
- 
-     LineList line_list;
-     vector<Pony*> ponies;
-@@ -40,8 +39,7 @@
-     PonyGame(SplitScreen* screen,
-              Heightmap* heightmap,
-              Config* config,
--             Skydome* skydome,
--             audiere::OutputStreamPtr music);
-+             Skydome* skydome);
- 
-     ~PonyGame();
- 
---- pink-pony-1.2.1.orig/lib/Menu.cc
-+++ pink-pony-1.2.1/lib/Menu.cc
-@@ -37,11 +37,7 @@
- 
- void Menu::toggle_music(void)
- {
--    if (music->getVolume() != 0.0) {
--        music->setVolume(0.0);
--    } else {
--        music->setVolume(1.0);
--    }
-+    printf("Toggle Music");
- }
- 
- void Menu::mouse_callback(int button, int action)
-@@ -80,12 +76,10 @@
- }
- 
- Menu::Menu (Config* config, 
--            Skydome* skydome,
--            audiere::OutputStreamPtr music)
-+            Skydome* skydome)
-     : active_screen(MAIN_SCREEN),
-       config(config),
-       skydome(skydome),
--      music(music),
-       heightmap(NULL),
-       logo_button("/usr/share/games/pink-pony/textures/logo.png"),
-       start_button("Start"),
---- pink-pony-1.2.1.orig/lib/Menu.hh
-+++ pink-pony-1.2.1/lib/Menu.hh
-@@ -27,7 +27,6 @@
- 
-     Config* config;
-     Skydome* skydome;
--    audiere::OutputStreamPtr music;
- 
-     auto_ptr<Heightmap> heightmap;
- 
-@@ -134,8 +133,7 @@
-     void toggle_music(void);
- 
-     Menu(Config* config, 
--         Skydome* skydome,
--         audiere::OutputStreamPtr music);
-+         Skydome* skydome);
- 
-     MenuStatus run(void);
- 
---- pink-pony-1.2.1.orig/SConstruct
-+++ pink-pony-1.2.1/SConstruct
-@@ -3,7 +3,7 @@
- env = Environment()
- env['CC'] = 'g++'
- env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter -O2 -g -I/usr/include/OpenEXR -I./lib -I./external/tinyXML'
--env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT', 'audiere']
-+env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT']
- env.ParseConfig("pkg-config IlmBase --cflags --libs")
- env.ParseConfig("pkg-config libglfw --cflags --libs")
- env.ParseConfig("pkg-config ftgl --cflags --libs")

Modified: packages/trunk/pink-pony/debian/patches/datadir.patch
===================================================================
--- packages/trunk/pink-pony/debian/patches/datadir.patch	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/patches/datadir.patch	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,241 +1,25 @@
 # Copyright (C) 2009  Miriam Ruiz <little_miry at yahoo.es>
 # Distributed under the same license as the game (GPL3+). See debian/copyright
 
-Index: pink-pony-master-ee91daf647/pony.options
+Index: pink-pony-1.3.1/pony.options
 ===================================================================
---- pink-pony-master-ee91daf647.orig/pony.options	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/pony.options	2013-08-16 11:24:54.000000000 +0200
-@@ -16,18 +16,18 @@
+--- pink-pony-1.3.1.orig/pony.options	2013-09-13 00:55:46.000000000 +0200
++++ pink-pony-1.3.1/pony.options	2013-09-13 00:55:46.000000000 +0200
+@@ -9,7 +9,7 @@
  
- // Level properties
+ // Resource directory
  
--levels_file = "levels.xml";
-+levels_file = "/usr/share/games/pink-pony/levels.xml";
- selected_level = 0;
--heightmap_file = "levels/heart.png";
-+heightmap_file = "/usr/share/games/pink-pony/levels/heart.png";
- level_size = (1500 90 1500);
- water_level = 45;
- heightmap_specular = (1 1 1 1);
- heightmap_diffuse = (0 0 0 0);
- heightmap_shininess = 50;
- heightmap_velvet_coeff = 1.5;
--sand_texture = "textures/sand.png";
--grass_texture = "textures/grass.png";
--noise_texture = "textures/noise.png";
-+sand_texture = "/usr/share/games/pink-pony/textures/sand.png";
-+grass_texture = "/usr/share/games/pink-pony/textures/grass.png";
-+noise_texture = "/usr/share/games/pink-pony/textures/noise.png";
- pony_start[0] = (219.916 -156.095);
- pony_start_angle[0] = 74.4115;
- pony_start[1] = (-334.356 -109.495);
-@@ -91,18 +91,18 @@
+-resource_dir = "resources/";
++resource_dir = "/usr/share/games/pink-pony/";
  
- // General appearance
+ // Particles
  
--digit_one = "textures/one.png";
--digit_two = "textures/two.png";
--digit_three = "textures/three.png";
--digit_four = "textures/four.png";
--heart_mesh = "models/Heart.pmesh";
-+digit_one = "/usr/share/games/pink-pony/textures/one.png";
-+digit_two = "/usr/share/games/pink-pony/textures/two.png";
-+digit_three = "/usr/share/games/pink-pony/textures/three.png";
-+digit_four = "/usr/share/games/pink-pony/textures/four.png";
-+heart_mesh = "/usr/share/games/pink-pony/models/Heart.pmesh";
- 
- // Pony appearance
- 
--pony_shader = "GLSL/pony";
-+pony_shader = "/usr/share/games/pink-pony/GLSL/pony";
- pony_velvet_coeff = 2;
--pony_texture = "textures/pony.png";
--pony_mesh = "models/Pony-animated.pmesh";
-+pony_texture = "/usr/share/games/pink-pony/textures/pony.png";
-+pony_mesh = "/usr/share/games/pink-pony/models/Pony-animated.pmesh";
- pony_color[0] = (1 0.75 0.792968 1);
- pony_color[1] = (0.25 0.875 0.8125 1);
- pony_color[2] = (1 0.839844 0 1);
-@@ -110,4 +110,4 @@
- 
- // Sounds
- 
--background_music = "music/To be happy.mp3";
-+background_music = "/usr/share/games/pink-pony/music/To be happy.mp3";
-Index: pink-pony-master-ee91daf647/lib/Config.cc
+Index: pink-pony-1.3.1/Pony.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Config.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Config.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -8,9 +8,9 @@
-       fsaa_samples(4),
-       swap_interval(1),
-       polygon_mode(GL_FILL),
--      levels_file("levels.xml"),
-+      levels_file("/usr/share/games/pink-pony/levels.xml"),
-       selected_level(0),
--      heightmap_file("levels/heightmap-heart.exr"),
-+      heightmap_file("/usr/share/games/pink-pony/levels/heightmap-heart.exr"),
-       level_size(V3f(-500, 0,-500),
-                  V3f( 500,60, 500)),
-       water_level(15),
-@@ -18,9 +18,9 @@
-       heightmap_diffuse(1,1,1,1),
-       heightmap_shininess(50.0),
-       heightmap_velvet_coeff(1.5),
--      sand_texture("textures/sand.png"),
--      grass_texture("textures/grass.png"),
--      noise_texture("textures/noise.png"),
-+      sand_texture("/usr/share/games/pink-pony/textures/sand.png"),
-+      grass_texture("/usr/share/games/pink-pony/textures/grass.png"),
-+      noise_texture("/usr/share/games/pink-pony/textures/noise.png"),
-       light_specular(1,1,1,1),
-       light_diffuse(1,1,1,1),
-       light_ambient(0.05,0.05,0.05,1),
-@@ -49,19 +49,19 @@
-       randomize_start_positions(false),
-       min_start_distance(200),
-       use_particles(true),
--      digit_one("textures/one.png"),
--      digit_two("textures/two.png"),
--      digit_three("textures/three.png"),
--      digit_four("textures/four.png"),
--      heart_mesh("models/Heart.pmesh"),
-+      digit_one("/usr/share/games/pink-pony/textures/one.png"),
-+      digit_two("/usr/share/games/pink-pony/textures/two.png"),
-+      digit_three("/usr/share/games/pink-pony/textures/three.png"),
-+      digit_four("/usr/share/games/pink-pony/textures/four.png"),
-+      heart_mesh("/usr/share/games/pink-pony/models/Heart.pmesh"),
-       heart_explosion_particles(10000),
--      pony_shader("GLSL/pony"),
-+      pony_shader("/usr/share/games/pink-pony/GLSL/pony"),
-       pony_velvet_coeff(2.0),
--      pony_texture("textures/pony.png"),
--      pony_mesh("models/Pony.pmesh"),
-+      pony_texture("/usr/share/games/pink-pony/textures/pony.png"),
-+      pony_mesh("/usr/share/games/pink-pony/models/Pony.pmesh"),
-       pony_particle_rate(100.0),
-       pony_explosion_particles(50000),
--      background_music("music/To be happy.mp3")
-+      background_music("/usr/share/games/pink-pony/music/To be happy.mp3")
- {
-     pony_up[0] = GLFW_KEY_UP;
-     pony_down[0] = GLFW_KEY_DOWN;
-@@ -304,7 +304,7 @@
+--- pink-pony-1.3.1.orig/Pony.cc	2013-09-13 00:55:46.000000000 +0200
++++ pink-pony-1.3.1/Pony.cc	2013-09-13 00:55:46.000000000 +0200
+@@ -18,7 +18,7 @@
  
-     if (!os) {
-         cerr << "Could not open file " << filename
--             << "for writing." << endl;
-+             << " for writing." << endl;
-         return false;
-     }
- 
-Index: pink-pony-master-ee91daf647/lib/ParticleSystem.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/ParticleSystem.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/ParticleSystem.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -45,8 +45,8 @@
- CPUParticleSystem::CPUParticleSystem
-     (GLuint max_particles, Config* config)
-         : last_stat_print(glfwGetTime()),
--          draw_shader("GLSL/draw_particles_cpu"),
--          particle_tex("textures/heart-particle.png"),
-+          draw_shader("/usr/share/games/pink-pony/GLSL/draw_particles_cpu"),
-+          particle_tex("/usr/share/games/pink-pony/textures/heart-particle.png"),
-           heightmap(config->heightmap_file.c_str()),
-           level_size(config->level_size),
-           water_level(config->water_level),
-@@ -253,18 +253,18 @@
- TransformFeedbackParticleSystem::TransformFeedbackParticleSystem
-     (GLuint max_particles, Config* config)
-         : last_stat_print(glfwGetTime()), calculating(false),
--          step_shader("GLSL/step_particles",
--                      "GLSL/step_particles",
--                      "GLSL/step_particles",
-+          step_shader("/usr/share/games/pink-pony/GLSL/step_particles",
-+                      "/usr/share/games/pink-pony/GLSL/step_particles",
-+                      "/usr/share/games/pink-pony/GLSL/step_particles",
-                       GL_POINTS, GL_POINTS, 1),
--          draw_shader("GLSL/draw_particles",
--                      "GLSL/draw_particles",
--                      "GLSL/draw_particles",
-+          draw_shader("/usr/share/games/pink-pony/GLSL/draw_particles",
-+                      "/usr/share/games/pink-pony/GLSL/draw_particles",
-+                      "/usr/share/games/pink-pony/GLSL/draw_particles",
-                       GL_POINTS, GL_TRIANGLE_STRIP, 4),
-           feedback(step_shader, GL_POINTS,
-                    "out_pos out_color out_vel out_life",
-                    max_particles, true),
--          particle_tex("textures/heart-particle.png"),
-+          particle_tex("/usr/share/games/pink-pony/textures/heart-particle.png"),
-           heightmap(config->heightmap_file.c_str())
- {
-     heightmap.normalize();
-Index: pink-pony-master-ee91daf647/lib/Pony.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Pony.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Pony.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -109,7 +109,7 @@
-       right(config->pony_right[i]),
-       shader(config->pony_shader),
-       mesh(),
--      animation("models/Pony-animated.pskeleton"),
-+      animation("/usr/share/games/pink-pony/models/Pony-animated.pskeleton"),
-       mesh_drawer(&mesh),
-       texture(config->pony_texture.c_str()),
- 	  out(false), out_delay(false), particle_source(particle_system)
-Index: pink-pony-master-ee91daf647/lib/PonyPoints.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/PonyPoints.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/PonyPoints.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -68,10 +68,10 @@
- PonyPoints::PonyPoints(int i) : points(i)
- {
- 
--    digits.push_back(new Texture2D("textures/one.png"));
--    digits.push_back(new Texture2D("textures/two.png"));
--    digits.push_back(new Texture2D("textures/three.png"));
--    digits.push_back(new Texture2D("textures/four.png"));
-+    digits.push_back(new Texture2D("/usr/share/games/pink-pony/textures/one.png"));
-+    digits.push_back(new Texture2D("/usr/share/games/pink-pony/textures/two.png"));
-+    digits.push_back(new Texture2D("/usr/share/games/pink-pony/textures/three.png"));
-+    digits.push_back(new Texture2D("/usr/share/games/pink-pony/textures/four.png"));
- }
- 
- PonyPoints::~PonyPoints()
-Index: pink-pony-master-ee91daf647/lib/Heightmap.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Heightmap.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Heightmap.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -6,8 +6,8 @@
-                      string sand, string grass, string noise)
-     : mesh(),
-       mesh_drawer(&mesh),
--      terrain_shader("GLSL/heightmap"),
--      water_shader("GLSL/water"),
-+      terrain_shader("/usr/share/games/pink-pony/GLSL/heightmap"),
-+      water_shader("/usr/share/games/pink-pony/GLSL/water"),
-       heightmap(filename.c_str(),
-                 GL_CLAMP, GL_CLAMP, GL_LINEAR, GL_LINEAR),
-       sand_texture(sand.c_str()),
-Index: pink-pony-master-ee91daf647/lib/PonyGame.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/PonyGame.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/PonyGame.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -15,7 +15,7 @@
-       skydome(skydome),
-       heart(),
-       heart_drawer(&heart),
--      heart_shader("GLSL/heart")
-+      heart_shader("/usr/share/games/pink-pony/GLSL/heart")
- {
-     int human_count = m_config->player_count - m_config->ai_count;
-     if (human_count == 0) human_count = m_config->player_count;
-Index: pink-pony-master-ee91daf647/Pony.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/Pony.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/Pony.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -11,7 +11,7 @@
- 
  int main(int argc, char** argv)
  {
 -    string config_file = "pony.options";
@@ -243,119 +27,3 @@
      bool running = true;
      
      Config config;
-@@ -62,7 +62,7 @@
-         // between braces, so that stack variables that need a GL context
-         // are destructed, while the context still exists.
-         {
--            Skydome skydome("textures/sky.png");
-+            Skydome skydome("/usr/share/games/pink-pony/textures/sky.png");
-             Menu::MenuStatus menu_status;
-         
-             {
-Index: pink-pony-master-ee91daf647/lib/Menu.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Menu.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Menu.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -85,39 +85,39 @@
-       config(config),
-       skydome(skydome),
-       heightmap(NULL),
--      logo_button("textures/logo.png"),
-+      logo_button("/usr/share/games/pink-pony/textures/logo.png"),
-       start_button("Start"),
--      quit_button("textures/quit.png"),
--      options_button("textures/settings.png"),
-+      quit_button("/usr/share/games/pink-pony/textures/quit.png"),
-+      options_button("/usr/share/games/pink-pony/textures/settings.png"),
-       level_name_text("Lagoon"),
--      next_level_button("textures/right.png"),
--      prev_level_button("textures/left.png"),
-+      next_level_button("/usr/share/games/pink-pony/textures/right.png"),
-+      prev_level_button("/usr/share/games/pink-pony/textures/left.png"),
-       computer_no("0"),
-       human_no("0"),
--      computer_text("textures/computer.png"),
--      human_text("textures/human.png"),
-+      computer_text("/usr/share/games/pink-pony/textures/computer.png"),
-+      human_text("/usr/share/games/pink-pony/textures/human.png"),
-       computers(config->ai_count),
-       humans(config->player_count - config->ai_count),
-       settings_text("Settings"),
--      settings_done("textures/back.png"),
-+      settings_done("/usr/share/games/pink-pony/textures/back.png"),
-       particles_text("Some particles", Color4f(1,1,1,0.5)),
--      prev_particles("textures/left.png"),
--      next_particles("textures/right.png"),
-+      prev_particles("/usr/share/games/pink-pony/textures/left.png"),
-+      next_particles("/usr/share/games/pink-pony/textures/right.png"),
-       fullscreen_text("Some particles", Color4f(1,1,1,0.5)),
--      prev_fullscreen("textures/left.png"),
--      next_fullscreen("textures/right.png"),
-+      prev_fullscreen("/usr/share/games/pink-pony/textures/left.png"),
-+      next_fullscreen("/usr/share/games/pink-pony/textures/right.png"),
-       minimap_text("Some particles", Color4f(1,1,1,0.5)),
--      prev_minimap("textures/left.png"),
--      next_minimap("textures/right.png"),
-+      prev_minimap("/usr/share/games/pink-pony/textures/left.png"),
-+      next_minimap("/usr/share/games/pink-pony/textures/right.png"),
-       antialiasing_text("Some particles", Color4f(1,1,1,0.5)),
--      prev_antialiasing("textures/left.png"),
--      next_antialiasing("textures/right.png"),
-+      prev_antialiasing("/usr/share/games/pink-pony/textures/left.png"),
-+      next_antialiasing("/usr/share/games/pink-pony/textures/right.png"),
-       hearts_text("Some particles", Color4f(1,1,1,0.5)),
--      prev_hearts("textures/left.png"),
--      next_hearts("textures/right.png"),
-+      prev_hearts("/usr/share/games/pink-pony/textures/left.png"),
-+      next_hearts("/usr/share/games/pink-pony/textures/right.png"),
-       resolution_text("Some particles", Color4f(1,1,1,0.5)),
--      prev_resolution("textures/left.png"),
--      next_resolution("textures/right.png"),
-+      prev_resolution("/usr/share/games/pink-pony/textures/left.png"),
-+      next_resolution("/usr/share/games/pink-pony/textures/right.png"),
-       needs_reset(false)
- {
- 
-Index: pink-pony-master-ee91daf647/lib/Widget.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Widget.cc	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Widget.cc	2013-08-16 11:24:23.000000000 +0200
-@@ -88,7 +88,7 @@
- {
-     int face_size = 72;
- 
--    font = new FTBufferFont("fonts/dijkstra.ttf");
-+    font = new FTBufferFont("/usr/share/games/pink-pony/fonts/dijkstra.ttf");
- 
-     if (font->Error()) {
-         cerr << "Something went wrong with loading the font." << endl;
-@@ -247,8 +247,8 @@
- 
- Slider::Slider()
-     : Widget(1.0),
--      up_button("textures/up.png"),
--      down_button("textures/down.png")
-+      up_button("/usr/share/games/pink-pony/textures/up.png"),
-+      down_button("/usr/share/games/pink-pony/textures/down.png")
- {
-     up_button.on_click()
-         .connect(sigc::bind(sigc::mem_fun(this, &Slider::change), 1));
-Index: pink-pony-master-ee91daf647/levels.xml
-===================================================================
---- pink-pony-master-ee91daf647.orig/levels.xml	2013-08-16 11:24:23.000000000 +0200
-+++ pink-pony-master-ee91daf647/levels.xml	2013-08-16 11:24:23.000000000 +0200
-@@ -1,8 +1,8 @@
- <levels>
--  <level name="Lagoon"  file="levels/heart.png"   size="(1500 90 1500)" water_level="45"/> 
--  <level name="Heart"   file="levels/heart.png"   size="(1500 90 1500)" water_level="30"/> 
--  <level name="Ring"    file="levels/ring.png"    size="(1500 90 1500)" water_level="30"/> 
--  <level name="Long"    file="levels/long.png"    size="(1500 90 1500)" water_level="30"/> 
--  <level name="Skull"   file="levels/skull.png"   size="(1500 90 1500)" water_level="30"/>
--  <level name="Strange" file="levels/strange.png" size="(1500 90 1500)" water_level="30"/> 
-+  <level name="Lagoon"  file="/usr/share/games/pink-pony/levels/heart.png"   size="(1500 90 1500)" water_level="45"/> 
-+  <level name="Heart"   file="/usr/share/games/pink-pony/levels/heart.png"   size="(1500 90 1500)" water_level="30"/> 
-+  <level name="Ring"    file="/usr/share/games/pink-pony/levels/ring.png"    size="(1500 90 1500)" water_level="30"/> 
-+  <level name="Long"    file="/usr/share/games/pink-pony/levels/long.png"    size="(1500 90 1500)" water_level="30"/> 
-+  <level name="Skull"   file="/usr/share/games/pink-pony/levels/skull.png"   size="(1500 90 1500)" water_level="30"/>
-+  <level name="Strange" file="/usr/share/games/pink-pony/levels/strange.png" size="(1500 90 1500)" water_level="30"/> 
- </levels>

Modified: packages/trunk/pink-pony/debian/patches/glee.patch
===================================================================
--- packages/trunk/pink-pony/debian/patches/glee.patch	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/patches/glee.patch	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,6 +1,6 @@
-Index: pink-pony-master-ee91daf647/lib/GL/GLee.c
+Index: pink-pony-1.3.1/lib/GL/GLee.c
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/GL/GLee.c	2013-08-16 10:45:50.000000000 +0200
+--- pink-pony-1.3.1.orig/lib/GL/GLee.c	2013-09-13 00:05:27.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,11359 +0,0 @@
 -/***************************************************************************
@@ -11362,9 +11362,9 @@
 -    __GLeeExtList_clean(&extensionNames);
 -    return GL_TRUE;
 -}
-Index: pink-pony-master-ee91daf647/lib/GL/GLee.h
+Index: pink-pony-1.3.1/lib/GL/GLee.h
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/GL/GLee.h	2013-08-16 10:45:50.000000000 +0200
+--- pink-pony-1.3.1.orig/lib/GL/GLee.h	2013-09-13 00:05:27.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,10797 +0,0 @@
 -/***************************************************************************
@@ -22164,47 +22164,10 @@
 -#endif
 -
 -#endif /* __glee_h_ defined */
-Index: pink-pony-master-ee91daf647/SConstruct
+Index: pink-pony-1.3.1/lib/cinquo.hh
 ===================================================================
---- pink-pony-master-ee91daf647.orig/SConstruct	2013-08-16 10:45:50.000000000 +0200
-+++ pink-pony-master-ee91daf647/SConstruct	2013-08-16 10:45:50.000000000 +0200
-@@ -3,7 +3,7 @@
- env = Environment()
- env['CC'] = 'g++'
- env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter -O2 -g -I/usr/include/OpenEXR -I./lib'
--env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT', 'tinyxml']
-+env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT', 'tinyxml', 'glee']
- env.ParseConfig("pkg-config IlmBase --cflags --libs")
- env.ParseConfig("pkg-config libglfw --cflags --libs")
- env.ParseConfig("pkg-config ftgl --cflags --libs")
-@@ -28,18 +28,18 @@
- 
- 
- env.Program('mesh_compile', 
--            ['mesh_compile.cc', 'lib/GL/GLee.c'] 
-+            ['mesh_compile.cc'] 
-             + Glob('lib/*cc'))
- env.Program('skeleton_compile', 
--            ['skeleton_compile.cc', 'lib/GL/GLee.c'] 
-+            ['skeleton_compile.cc'] 
-             + Glob('lib/*cc'))
- 
- env.Program('Pony', 
--            ['Pony.cc', 'lib/GL/GLee.c'] 
-+            ['Pony.cc'] 
-             + Glob('lib/*cc'))
- env.Program('MapView', 
--            ['MapView.cc', 'lib/GL/GLee.c'] 
-+            ['MapView.cc'] 
-             + Glob('lib/*cc'))
- env.Program('ConfigFile', 
--            ['ConfigFile.cc', 'lib/GL/GLee.c'] 
-+            ['ConfigFile.cc'] 
-             + Glob('lib/*cc'))
-Index: pink-pony-master-ee91daf647/lib/cinquo.hh
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/cinquo.hh	2013-08-16 10:45:50.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/cinquo.hh	2013-08-16 10:45:50.000000000 +0200
+--- pink-pony-1.3.1.orig/lib/cinquo.hh	2013-09-13 00:05:27.000000000 +0200
++++ pink-pony-1.3.1/lib/cinquo.hh	2013-09-13 00:05:29.000000000 +0200
 @@ -2,7 +2,7 @@
  
  #define ILUT_USE_OPENGL

Deleted: packages/trunk/pink-pony/debian/patches/scons.patch
===================================================================
--- packages/trunk/pink-pony/debian/patches/scons.patch	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/patches/scons.patch	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,16 +0,0 @@
-# Copyright (C) 2009  Miriam Ruiz <little_miry at yahoo.es>
-# Distributed under the same license as the game (GPL3+). See debian/copyright
-
-Index: pink-pony-master-ee91daf647/SConstruct
-===================================================================
---- pink-pony-master-ee91daf647.orig/SConstruct	2013-08-16 10:39:11.000000000 +0200
-+++ pink-pony-master-ee91daf647/SConstruct	2013-08-16 10:39:11.000000000 +0200
-@@ -2,7 +2,7 @@
- 
- env = Environment()
- env['CC'] = 'g++'
--env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter -O3 -I/usr/include/OpenEXR -I./lib -I./external/tinyXML'
-+env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter -O2 -g -I/usr/include/OpenEXR -I./lib -I./external/tinyXML'
- env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT']
- env.ParseConfig("pkg-config IlmBase --cflags --libs")
- env.ParseConfig("pkg-config libglfw --cflags --libs")

Modified: packages/trunk/pink-pony/debian/patches/script.patch
===================================================================
--- packages/trunk/pink-pony/debian/patches/script.patch	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/patches/script.patch	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,7 +1,7 @@
-Index: pink-pony-1.2.1+git20110821/install/pink-pony
+Index: pink-pony-1.3.1/install/pink-pony
 ===================================================================
---- pink-pony-1.2.1+git20110821.orig/install/pink-pony	2013-09-04 03:43:25.000000000 +0200
-+++ pink-pony-1.2.1+git20110821/install/pink-pony	2013-09-04 03:57:54.324482549 +0200
+--- pink-pony-1.3.1.orig/install/pink-pony	2013-09-13 00:05:27.000000000 +0200
++++ pink-pony-1.3.1/install/pink-pony	2013-09-13 00:05:29.000000000 +0200
 @@ -1,14 +1,18 @@
  #!/bin/sh
  
@@ -31,10 +31,10 @@
 +fi
 +
 +cd "$OLD_DIR"
-Index: pink-pony-1.2.1+git20110821/install/pink-pony.desktop
+Index: pink-pony-1.3.1/install/pink-pony.desktop
 ===================================================================
---- pink-pony-1.2.1+git20110821.orig/install/pink-pony.desktop	2013-09-04 03:43:25.000000000 +0200
-+++ pink-pony-1.2.1+git20110821/install/pink-pony.desktop	2013-09-04 03:43:27.000000000 +0200
+--- pink-pony-1.3.1.orig/install/pink-pony.desktop	2013-09-13 00:05:27.000000000 +0200
++++ pink-pony-1.3.1/install/pink-pony.desktop	2013-09-13 00:05:29.000000000 +0200
 @@ -4,9 +4,9 @@
  Version=1.0
  Icon=/usr/share/pixmaps/pink-pony.png

Modified: packages/trunk/pink-pony/debian/patches/series
===================================================================
--- packages/trunk/pink-pony/debian/patches/series	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/patches/series	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,6 +1,4 @@
-scons.patch
-datadir.patch
-#audiere.patch
 tinyxml.patch
 glee.patch
 script.patch
+datadir.patch

Modified: packages/trunk/pink-pony/debian/patches/tinyxml.patch
===================================================================
--- packages/trunk/pink-pony/debian/patches/tinyxml.patch	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/patches/tinyxml.patch	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,6 +1,6 @@
-Index: pink-pony-master-ee91daf647/external/tinyXML/tinystr.cpp
+Index: pink-pony-1.3.1/external/tinyXML/tinystr.cpp
 ===================================================================
---- pink-pony-master-ee91daf647.orig/external/tinyXML/tinystr.cpp	2013-08-16 11:02:15.000000000 +0200
+--- pink-pony-1.3.1.orig/external/tinyXML/tinystr.cpp	2013-09-13 00:05:28.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,116 +0,0 @@
 -/*
@@ -119,9 +119,9 @@
 -
 -
 -#endif	// TIXML_USE_STL
-Index: pink-pony-master-ee91daf647/external/tinyXML/tinystr.h
+Index: pink-pony-1.3.1/external/tinyXML/tinystr.h
 ===================================================================
---- pink-pony-master-ee91daf647.orig/external/tinyXML/tinystr.h	2013-08-16 11:02:15.000000000 +0200
+--- pink-pony-1.3.1.orig/external/tinyXML/tinystr.h	2013-09-13 00:05:28.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,319 +0,0 @@
 -/*
@@ -443,9 +443,9 @@
 -
 -#endif	// TIXML_STRING_INCLUDED
 -#endif	// TIXML_USE_STL
-Index: pink-pony-master-ee91daf647/external/tinyXML/tinyxml.cpp
+Index: pink-pony-1.3.1/external/tinyXML/tinyxml.cpp
 ===================================================================
---- pink-pony-master-ee91daf647.orig/external/tinyXML/tinyxml.cpp	2013-08-16 11:02:15.000000000 +0200
+--- pink-pony-1.3.1.orig/external/tinyXML/tinyxml.cpp	2013-09-13 00:05:28.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,1888 +0,0 @@
 -/*
@@ -2336,9 +2336,9 @@
 -	return true;
 -}
 -
-Index: pink-pony-master-ee91daf647/external/tinyXML/tinyxml.h
+Index: pink-pony-1.3.1/external/tinyXML/tinyxml.h
 ===================================================================
---- pink-pony-master-ee91daf647.orig/external/tinyXML/tinyxml.h	2013-08-16 11:02:15.000000000 +0200
+--- pink-pony-1.3.1.orig/external/tinyXML/tinyxml.h	2013-09-13 00:05:28.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,1802 +0,0 @@
 -/*
@@ -4143,9 +4143,9 @@
 -
 -#endif
 -
-Index: pink-pony-master-ee91daf647/external/tinyXML/tinyxmlerror.cpp
+Index: pink-pony-1.3.1/external/tinyXML/tinyxmlerror.cpp
 ===================================================================
---- pink-pony-master-ee91daf647.orig/external/tinyXML/tinyxmlerror.cpp	2013-08-16 11:02:15.000000000 +0200
+--- pink-pony-1.3.1.orig/external/tinyXML/tinyxmlerror.cpp	2013-09-13 00:05:28.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,53 +0,0 @@
 -/*
@@ -4201,9 +4201,9 @@
 -	"Error parsing CDATA.",
 -	"Error when TiXmlDocument added to document, because TiXmlDocument can only be at the root.",
 -};
-Index: pink-pony-master-ee91daf647/external/tinyXML/tinyxmlparser.cpp
+Index: pink-pony-1.3.1/external/tinyXML/tinyxmlparser.cpp
 ===================================================================
---- pink-pony-master-ee91daf647.orig/external/tinyXML/tinyxmlparser.cpp	2013-08-16 11:02:15.000000000 +0200
+--- pink-pony-1.3.1.orig/external/tinyXML/tinyxmlparser.cpp	2013-09-13 00:05:28.000000000 +0200
 +++ /dev/null	1970-01-01 00:00:00.000000000 +0000
 @@ -1,1638 +0,0 @@
 -/*
@@ -5844,49 +5844,11 @@
 -	return true;
 -}
 -
-Index: pink-pony-master-ee91daf647/SConstruct
+Index: pink-pony-1.3.1/lib/Menu.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/SConstruct	2013-08-16 11:02:18.000000000 +0200
-+++ pink-pony-master-ee91daf647/SConstruct	2013-08-16 11:05:35.000000000 +0200
-@@ -2,8 +2,8 @@
- 
- env = Environment()
- env['CC'] = 'g++'
--env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter -O2 -g -I/usr/include/OpenEXR -I./lib -I./external/tinyXML'
--env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT']
-+env['CCFLAGS'] = '-Wall -Wextra -Wno-unused-parameter -O2 -g -I/usr/include/OpenEXR -I./lib'
-+env['LIBS'] = ['GLU', 'GL', 'protobuf', 'IL', 'ILUT', 'tinyxml']
- env.ParseConfig("pkg-config IlmBase --cflags --libs")
- env.ParseConfig("pkg-config libglfw --cflags --libs")
- env.ParseConfig("pkg-config ftgl --cflags --libs")
-@@ -29,17 +29,17 @@
- 
- env.Program('mesh_compile', 
-             ['mesh_compile.cc', 'lib/GL/GLee.c'] 
--            + Glob('lib/*cc') + Glob('external/tinyXML/*cpp'))
-+            + Glob('lib/*cc'))
- env.Program('skeleton_compile', 
-             ['skeleton_compile.cc', 'lib/GL/GLee.c'] 
--            + Glob('lib/*cc') + Glob('external/tinyXML/*cpp'))
-+            + Glob('lib/*cc'))
- 
- env.Program('Pony', 
-             ['Pony.cc', 'lib/GL/GLee.c'] 
--            + Glob('lib/*cc') + Glob('external/tinyXML/*cpp'))
-+            + Glob('lib/*cc'))
- env.Program('MapView', 
-             ['MapView.cc', 'lib/GL/GLee.c'] 
--            + Glob('lib/*cc') + Glob('external/tinyXML/*cpp'))
-+            + Glob('lib/*cc'))
- env.Program('ConfigFile', 
-             ['ConfigFile.cc', 'lib/GL/GLee.c'] 
--            + Glob('lib/*cc') + Glob('external/tinyXML/*cpp'))
-+            + Glob('lib/*cc'))
-Index: pink-pony-master-ee91daf647/lib/Menu.cc
-===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Menu.cc	2013-08-16 11:02:18.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Menu.cc	2013-08-16 11:02:18.000000000 +0200
-@@ -271,7 +271,7 @@
+--- pink-pony-1.3.1.orig/lib/Menu.cc	2013-09-13 00:05:28.000000000 +0200
++++ pink-pony-1.3.1/lib/Menu.cc	2013-09-13 00:05:29.000000000 +0200
+@@ -274,7 +274,7 @@
      
      TiXmlNode* levels_node = doc.FirstChild();
  
@@ -5895,7 +5857,7 @@
          string(levels_node->Value()) != "levels") {
          cerr << "Could not find 'levels' element in " << levels_file << endl;
          assert(0);
-@@ -280,7 +280,7 @@
+@@ -283,7 +283,7 @@
      for (TiXmlNode* level_node = levels_node->ToElement()->FirstChild(); level_node != NULL;
           level_node = level_node->NextSibling()) {
          
@@ -5904,10 +5866,10 @@
              string(level_node->Value()) != "level") {
              cerr << "Could not find 'level' element in " << levels_file << endl;
              assert(0);
-Index: pink-pony-master-ee91daf647/mesh_compile.cc
+Index: pink-pony-1.3.1/mesh_compile.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/mesh_compile.cc	2013-08-16 11:02:15.000000000 +0200
-+++ pink-pony-master-ee91daf647/mesh_compile.cc	2013-08-16 11:02:18.000000000 +0200
+--- pink-pony-1.3.1.orig/mesh_compile.cc	2013-09-13 00:05:28.000000000 +0200
++++ pink-pony-1.3.1/mesh_compile.cc	2013-09-13 00:05:29.000000000 +0200
 @@ -373,7 +373,7 @@
      for (TiXmlNode* n = elem->FirstChild(); n != NULL;
           n = n->NextSibling()) {
@@ -5953,10 +5915,10 @@
              string(n->Value()) == "mesh") {
              return load_OgreXMLMesh(mesh, n->ToElement());
          }
-Index: pink-pony-master-ee91daf647/skeleton_compile.cc
+Index: pink-pony-1.3.1/skeleton_compile.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/skeleton_compile.cc	2011-08-21 18:17:16.000000000 +0200
-+++ pink-pony-master-ee91daf647/skeleton_compile.cc	2013-08-16 11:06:18.000000000 +0200
+--- pink-pony-1.3.1.orig/skeleton_compile.cc	2013-09-13 00:05:28.000000000 +0200
++++ pink-pony-1.3.1/skeleton_compile.cc	2013-09-13 00:05:29.000000000 +0200
 @@ -76,7 +76,7 @@
      for (TiXmlNode* n = doc.FirstChild(); n != NULL;
           n = n->NextSibling()) {

Modified: packages/trunk/pink-pony/debian/pink-pony.install
===================================================================
--- packages/trunk/pink-pony/debian/pink-pony.install	2013-09-12 19:39:41 UTC (rev 14556)
+++ packages/trunk/pink-pony/debian/pink-pony.install	2013-09-12 23:06:15 UTC (rev 14557)
@@ -1,11 +1,4 @@
-pony.options /usr/share/games/pink-pony/
-levels.xml /usr/share/games/pink-pony/
-models /usr/share/games/pink-pony/
-textures /usr/share/games/pink-pony/
-levels /usr/share/games/pink-pony/
-GLSL /usr/share/games/pink-pony/
-fonts /usr/share/games/pink-pony/
-music /usr/share/games/pink-pony/
-#sounds /usr/share/games/pink-pony/
-debian/pixmaps/* /usr/share/pixmaps/
-install/*.desktop /usr/share/applications/
+pony.options usr/share/games/pink-pony/
+resources/* usr/share/games/pink-pony/
+debian/pixmaps/* usr/share/pixmaps/
+install/*.desktop usr/share/applications/




More information about the Pkg-games-commits mailing list