r14493 - packages/trunk/pink-pony/debian/patches

Miriam Ruiz miriam at alioth.debian.org
Fri Aug 16 09:25:47 UTC 2013


Author: miriam
Date: 2013-08-16 09:25:46 +0000 (Fri, 16 Aug 2013)
New Revision: 14493

Modified:
   packages/trunk/pink-pony/debian/patches/datadir.patch
Log:
Added missing abs patch to options



Modified: packages/trunk/pink-pony/debian/patches/datadir.patch
===================================================================
--- packages/trunk/pink-pony/debian/patches/datadir.patch	2013-08-16 09:22:47 UTC (rev 14492)
+++ packages/trunk/pink-pony/debian/patches/datadir.patch	2013-08-16 09:25:46 UTC (rev 14493)
@@ -3,8 +3,8 @@
 
 Index: pink-pony-master-ee91daf647/pony.options
 ===================================================================
---- pink-pony-master-ee91daf647.orig/pony.options	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/pony.options	2013-08-16 10:43:47.000000000 +0200
+--- 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 @@
  
  // Level properties
@@ -56,10 +56,16 @@
  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
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Config.cc	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Config.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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),
@@ -125,8 +131,8 @@
  
 Index: pink-pony-master-ee91daf647/lib/ParticleSystem.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/ParticleSystem.cc	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/ParticleSystem.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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)
@@ -166,8 +172,8 @@
      heightmap.normalize();
 Index: pink-pony-master-ee91daf647/lib/Pony.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Pony.cc	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Pony.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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),
@@ -179,8 +185,8 @@
  	  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 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/PonyPoints.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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)
  {
@@ -198,8 +204,8 @@
  PonyPoints::~PonyPoints()
 Index: pink-pony-master-ee91daf647/lib/Heightmap.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Heightmap.cc	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Heightmap.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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(),
@@ -213,8 +219,8 @@
        sand_texture(sand.c_str()),
 Index: pink-pony-master-ee91daf647/lib/PonyGame.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/PonyGame.cc	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/PonyGame.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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(),
@@ -226,8 +232,8 @@
      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 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/Pony.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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)
@@ -248,8 +254,8 @@
              {
 Index: pink-pony-master-ee91daf647/lib/Menu.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Menu.cc	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Menu.cc	2013-08-16 10:40:34.000000000 +0200
+--- 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),
@@ -312,8 +318,8 @@
  
 Index: pink-pony-master-ee91daf647/lib/Widget.cc
 ===================================================================
---- pink-pony-master-ee91daf647.orig/lib/Widget.cc	2013-08-16 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/lib/Widget.cc	2013-08-16 10:44:19.000000000 +0200
+--- 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;
@@ -336,8 +342,8 @@
          .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 10:40:34.000000000 +0200
-+++ pink-pony-master-ee91daf647/levels.xml	2013-08-16 10:40:34.000000000 +0200
+--- 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"/> 




More information about the Pkg-games-commits mailing list