rpms/supertuxkart/devel supertuxkart-0.2-gpmenu.patch, NONE, 1.1 supertuxkart-0.2-joy1.patch, NONE, 1.1 supertuxkart-0.2-joy2.patch, NONE, 1.1 supertuxkart-0.2-joy3.patch, NONE, 1.1 supertuxkart-fhs.patch, NONE, 1.1 supertuxkart-fullscreen.patch, NONE, 1.1 supertuxkart-images-legal.txt, NONE, 1.1 supertuxkart-nomnm.patch, NONE, 1.1 supertuxkart.6, NONE, 1.1 supertuxkart.desktop, NONE, 1.1 supertuxkart.png, NONE, 1.1 supertuxkart.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2

Hans de Goede (jwrdegoede) fedora-extras-commits at redhat.com
Fri Oct 6 14:37:02 UTC 2006


Author: jwrdegoede

Update of /cvs/extras/rpms/supertuxkart/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv1586/devel

Modified Files:
	.cvsignore sources 
Added Files:
	supertuxkart-0.2-gpmenu.patch supertuxkart-0.2-joy1.patch 
	supertuxkart-0.2-joy2.patch supertuxkart-0.2-joy3.patch 
	supertuxkart-fhs.patch supertuxkart-fullscreen.patch 
	supertuxkart-images-legal.txt supertuxkart-nomnm.patch 
	supertuxkart.6 supertuxkart.desktop supertuxkart.png 
	supertuxkart.spec 
Log Message:
auto-import supertuxkart-0.2-3.fc6 on branch devel from supertuxkart-0.2-3.fc6.src.rpm

supertuxkart-0.2-gpmenu.patch:

--- NEW FILE supertuxkart-0.2-gpmenu.patch ---
--- supertuxkart-0.2/src/gui/grand_prix_select.cpp~	2006-10-06 14:52:51.000000000 +0200
+++ supertuxkart-0.2/src/gui/grand_prix_select.cpp	2006-10-06 14:52:51.000000000 +0200
@@ -43,13 +43,15 @@
       std::string fullPath= "data/" + (std::string)*i;
       CupData *cup = new CupData(fullPath.c_str());
       allCups.push_back(cup);
-      int tmp=widgetSet -> state(menu_id, cup->getName().c_str(), GUI_SML, nId, 0);
-      if(nId==0) widgetSet->set_active(tmp);
+      if(nId==0)
+        widgetSet -> start(menu_id, cup->getName().c_str(), GUI_SML, nId, 0);
+      else
+        widgetSet -> state(menu_id, cup->getName().c_str(), GUI_SML, nId, 0);
       nId++;
     }   // if
   }   // for i
   widgetSet -> space(menu_id);
-  widgetSet -> start(menu_id,"Press <ESC> to go back", GUI_SML, -1);
+  widgetSet -> state(menu_id,"Press <ESC> to go back", GUI_SML, -1);
   widgetSet -> layout(menu_id, 0, 0);
   rect = widgetSet->rect(10, 10, config->width-20, 34, GUI_ALL, 10);
 }   // GrandPrixSelect

supertuxkart-0.2-joy1.patch:

--- NEW FILE supertuxkart-0.2-joy1.patch ---
--- supertuxkart-0.2/src/gui/race_gui.cpp.joy1	2006-10-06 11:25:23.000000000 +0200
+++ supertuxkart-0.2/src/gui/race_gui.cpp	2006-10-06 11:25:23.000000000 +0200
@@ -144,24 +144,6 @@
 } // keybd
 
 // -----------------------------------------------------------------------------
-void RaceGUI::stick(const int &whichAxis, const float &value){
-  KartControl controls;
-  controls.data[whichAxis] = value;
-  assert(world != NULL);
-  world -> getPlayerKart(0) -> incomingJoystick ( controls );
-}   // stick
-
-// -----------------------------------------------------------------------------
-void RaceGUI::joybuttons( int whichJoy, int hold, int presses, int releases ) {
-  KartControl controls;
-  controls.buttons = hold;
-  controls.presses = presses;
-  controls.releases = releases;
-  assert(world != NULL);
-  world -> getPlayerKart(whichJoy) -> incomingJoystick ( controls );
-}   // joybuttons
-
-// -----------------------------------------------------------------------------
 void RaceGUI::drawFPS () {
   if (++fpsCounter>=50) {
     fpsTimer.update();
--- supertuxkart-0.2/src/gui/race_gui.hpp.joy1	2006-09-07 12:08:13.000000000 +0200
+++ supertuxkart-0.2/src/gui/race_gui.hpp	2006-10-06 11:25:23.000000000 +0200
@@ -42,8 +42,6 @@
   void select() {}
   void keybd(int key);
   void point(int x, int y) { (void)x; (void)y; }
-  void stick     (const int &whichAxis, const float &value) ;
-  void joybuttons(int whichJoy, int hold, int presses, int releases ) ;
 
 private:
     ulClock   fpsTimer;
--- supertuxkart-0.2/src/plibdrv.cpp.joy1	2006-10-06 11:25:23.000000000 +0200
+++ supertuxkart-0.2/src/plibdrv.cpp	2006-10-06 11:30:25.000000000 +0200
@@ -27,6 +27,7 @@
 
 #include "gui/menu_manager.hpp"
 #include "kart_control.hpp"
+#include "world.hpp"
 
 /*********************************\
 *                                 *
@@ -79,13 +80,21 @@
       static KartControl controls;
       int prev_buttons = controls.buttons;
       joystick->read ( &controls.buttons, controls.data) ;
-      menu->stick( 0, controls.data[0]);
-      menu->stick( 1, controls.data[1]);
 
       int changed_states = prev_buttons ^ controls.buttons;
       controls.presses = controls.buttons & changed_states;
       controls.releases = !controls.buttons & changed_states;
-      menu->joybuttons(0, controls.buttons, controls.presses, controls.releases);
+      
+      if ( menu_manager->isCurrentMenu( MENUID_RACE ) )
+      {
+        world -> getPlayerKart(0) -> incomingJoystick ( controls );
+      }
+      else
+      {
+        menu->stick( 0, controls.data[0]);
+        menu->stick( 1, controls.data[1]);
+        menu->joybuttons(0, controls.buttons, controls.presses, controls.releases);
+      }
     }
   }
 }

supertuxkart-0.2-joy2.patch:

--- NEW FILE supertuxkart-0.2-joy2.patch ---
--- supertuxkart-0.2/src/player_kart.cpp~	2006-10-06 11:34:44.000000000 +0200
+++ supertuxkart-0.2/src/player_kart.cpp	2006-10-06 13:48:28.000000000 +0200
@@ -30,13 +30,16 @@
 // -----------------------------------------------------------------------------
 void PlayerKart::incomingJoystick  (const KartControl &ctrl) {
   //Steering keys(hold)
-  controls.lr      = -ctrl.data[0];
-  joystickWasMoved = fabsf(controls.lr)>0.01;
-  controls.accel   = -ctrl.data[1];
-  controls.brake   = player->getButton(KC_BRAKE)   & ctrl.buttons;
-  controls.wheelie = player->getButton(KC_WHEELIE) & ctrl.buttons;
+  joystickWasMoved = fabsf(ctrl.data[0])>0.01;
+  if ( joystickWasMoved )
+    controls.lr      = -ctrl.data[0];
+
+  if (fabsf(ctrl.data[1])>0.01)
+    controls.accel   = -ctrl.data[1];
 
   //One time press keys; these are cleared each frame so we don't have to
+  if (player->getButton(KC_BRAKE)  & ctrl.presses) controls.brake  = true;
+  if (player->getButton(KC_WHEELIE)& ctrl.presses) controls.wheelie= true;
   if (player->getButton(KC_RESCUE) & ctrl.presses) controls.rescue = true;
   if (player->getButton(KC_FIRE)   & ctrl.presses) controls.fire   = true;
   if (player->getButton(KC_JUMP)   & ctrl.presses) controls.jump   = true;
@@ -46,7 +49,9 @@
 // Only keys which must keep on working when still being pressed
 // are handled here, not 'one time action' keys like fire, ...
 void PlayerKart::handleKeyboard(float dt) {
-
+// Joystick steering values take precedence over keyboard, only
+// do the keyboard handling if joystick wasn't moved.
+if ( !joystickWasMoved ) {
   if(!config->newKeyboardStyle) {
     controls.lr = isKeyDown(player->getKey(KC_LEFT))  ?  1.0f 
                 : isKeyDown(player->getKey(KC_RIGHT)) ? -1.0f : 0.0f;
@@ -66,6 +71,7 @@
   }   // not old steering
     // clamp control value to be within  [-1,1]
   controls.lr = std::min(1.0f, std::max(-1.0f, controls.lr));
+}
 
   if(isKeyDown(player->getKey(KC_ACCEL)))   controls.accel   =  1.0f;
   if(isKeyDown(player->getKey(KC_BRAKE)))   controls.brake   =  true;
@@ -88,9 +94,7 @@
 
 // -----------------------------------------------------------------------------
 void PlayerKart::update(float dt) {
-  // Joystick values takes precedence over keyboard, only
-  // do the keyboard handling if joystick wasn't moved.
-  if(!joystickWasMoved) handleKeyboard(dt);
+  handleKeyboard(dt);
 
   if(world->getPhase()==World::START_PHASE) {
     if(controls.lr!=0.0 || controls.accel!=0.0 || controls.brake!=false ||

supertuxkart-0.2-joy3.patch:

--- NEW FILE supertuxkart-0.2-joy3.patch ---
--- supertuxkart-0.2/src/gui/main_menu.cpp~	2006-10-06 13:57:17.000000000 +0200
+++ supertuxkart-0.2/src/gui/main_menu.cpp	2006-10-06 13:57:17.000000000 +0200
@@ -99,4 +99,16 @@
 	}
 }
 
+void MainMenu::joybuttons( int whichJoy, int hold, int presses, int releases ) {
+  (void)whichJoy; (void)hold; (void)releases;
+
+  if( presses & 2 ) {
+    select();
+  }
+
+  if (presses & 1) {
+    menu_manager->pushMenu(MENUID_EXITGAME);
+  }
+}
+
 /* EOF */
--- supertuxkart-0.2/src/gui/main_menu.hpp~	2006-10-06 13:57:13.000000000 +0200
+++ supertuxkart-0.2/src/gui/main_menu.hpp	2006-10-06 13:57:13.000000000 +0200
@@ -30,6 +30,7 @@
 
 	void select();
 	void keybd(int key);
+	void joybuttons( int whichJoy, int hold, int presses, int releases );
 };
 
 #endif

supertuxkart-fhs.patch:

--- NEW FILE supertuxkart-fhs.patch ---
--- supertuxkart-0.2/src/Makefile.am.aap	2006-09-24 21:20:17.000000000 +0200
+++ supertuxkart-0.2/src/Makefile.am	2006-09-24 21:20:21.000000000 +0200
@@ -23,7 +23,7 @@
 libstatic_ssg_a_SOURCES  = static_ssg.cpp static_ssg.hpp
 libstatic_ssg_a_CXXFLAGS = @NOREGMOVE@
 
-AM_CPPFLAGS=-DSUPERTUXKART_DATADIR="\"$(datadir)/games/@PACKAGE@/\""
+AM_CPPFLAGS=-DSUPERTUXKART_DATADIR="\"$(datadir)/@PACKAGE@/\""
 supertuxkart_SOURCES =             main.cpp  			\
 	material.cpp		   material.hpp           	\
 	material_manager.cpp	   material_manager.hpp    	\
--- supertuxkart-0.2/src/Makefile.in.aap	2006-09-24 21:20:26.000000000 +0200
+++ supertuxkart-0.2/src/Makefile.in	2006-09-24 21:20:37.000000000 +0200
@@ -220,7 +220,7 @@
 noinst_LIBRARIES = libstatic_ssg.a
 libstatic_ssg_a_SOURCES = static_ssg.cpp static_ssg.hpp
 libstatic_ssg_a_CXXFLAGS = @NOREGMOVE@
-AM_CPPFLAGS = -DSUPERTUXKART_DATADIR="\"$(datadir)/games/@PACKAGE@/\""
+AM_CPPFLAGS = -DSUPERTUXKART_DATADIR="\"$(datadir)/@PACKAGE@/\""
 supertuxkart_SOURCES = main.cpp  			\
 	material.cpp		   material.hpp           	\
 	material_manager.cpp	   material_manager.hpp    	\

supertuxkart-fullscreen.patch:

--- NEW FILE supertuxkart-fullscreen.patch ---
--- supertuxkart-0.2/src/plibdrv.cpp.aap	2006-09-24 20:57:17.000000000 +0200
+++ supertuxkart-0.2/src/plibdrv.cpp	2006-09-24 21:06:54.000000000 +0200
@@ -37,6 +37,11 @@
 \*********************************/
 
 void keyfn ( int key, int updown, int, int ) {
+  if ( (updown == PW_DOWN) && (key == '\r') && (pwGetModifiers() & PW_ALT) )
+  {
+    pwToggleFullscreen () ;
+    return;
+  }
   puKeyboard ( key, updown ) ;
 }
 
@@ -91,7 +96,13 @@
 
 void keystroke ( int key, int updown, int, int ) {
   if ( updown == PW_DOWN )
+  {
+    if ( (key == '\r') && (pwGetModifiers() & PW_ALT) ) {
+      pwToggleFullscreen () ;
+      return;
+    }
     lastKeystroke = key ;
+  }
 
   keyIsDown [ key ] = (updown == PW_DOWN) ;
 }
@@ -122,6 +133,8 @@
 void InitPlib() {
   pwInit ( 0, 0, config->width, config->height,
 	   FALSE, "Super Tux Kart", TRUE, 0 ) ;
+  pwSetResizable ( FALSE );
+  pwSetFullscreen () ;
 
   puInit () ;
   ssgInit () ;
--- supertuxkart-0.2/src/gui/race_gui.cpp.noot	2006-09-24 22:01:07.000000000 +0200
+++ supertuxkart-0.2/src/gui/race_gui.cpp	2006-09-24 22:01:13.000000000 +0200
@@ -55,12 +55,16 @@
   fpsTimer.reset();
   fpsTimer.update();
   fpsTimer.setMaxDelta(1000);
-  
+
+  // Don't show the mouse in fullscreen mode during the race
+  pwSetCursorEx ( PW_CURSOR_LEFT, PW_CURSOR_NONE ) ;
 }   // RaceGUI
 
 // -----------------------------------------------------------------------------
 RaceGUI::~RaceGUI() {
 	//FIXME: does all that material stuff need freeing somehow?
+  // Show the mouse in fullscreen mode again
+  pwSetCursorEx ( PW_CURSOR_LEFT, PW_CURSOR_LEFT ) ;
 }   // ~Racegui
 
 // -----------------------------------------------------------------------------


--- NEW FILE supertuxkart-images-legal.txt ---
The following images where taken from: http://www.wpclipart.com/ a Public
Domain clipart collection and thus are in the publicdomain:
images/bananawrap.rgb
images/lunchbox.rgb
images/lunchbox2.rgb
"The cartoon-ish character" in images/adverts.rgb

---

Supertuxkart contains some images which are trademarkish or trademarked as
described below:

---

The tuxpaint logo (http://www.newbreedsoftware.com/tuxpaint/) in
images/adverts.rgb is copyrighted (GPL) and used with the permission of the
tuxpaint author:

Return-Path: <nbs at sonic.net>
Received: from koko.hhs.nl ([145.52.2.16] verified)
  by hhs.nl (CommuniGate Pro SMTP 4.3.6)
  with ESMTP id 47893342 for j.w.r.degoede at hhs.nl; Thu, 01 Jun 2006 21:03:14 +0200
Received: from exim by koko.hhs.nl with spam-scanned (Exim 4.62)
	(envelope-from <nbs at sonic.net>)
	id 1FlsRt-00011S-0a
	for j.w.r.degoede at hhs.nl; Thu, 01 Jun 2006 21:03:14 +0200
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on koko.hhs.nl
X-Spam-Level: 
X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham 
	version=3.1.0
Received: from exim (helo=koko)
	by koko.hhs.nl with local-smtp (Exim 4.62)
	(envelope-from <nbs at sonic.net>)
	id 1FlsRs-00011O-Sl
	for j.w.r.degoede at hhs.nl; Thu, 01 Jun 2006 21:03:12 +0200
Received: from [64.142.19.5] (port=35242 helo=b.mail.sonic.net)
	by koko.hhs.nl with esmtp (Exim 4.62)
	(envelope-from <nbs at sonic.net>)
	id 1FlsRs-00011C-83
	for j.w.r.degoede at hhs.nl; Thu, 01 Jun 2006 21:03:12 +0200
Received: from newshell.sonic.net (bolt.sonic.net [208.201.242.19])
	by b.mail.sonic.net (8.13.6/8.13.3) with ESMTP id k51J3BrW028314
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO)
	for <j.w.r.degoede at hhs.nl>; Thu, 1 Jun 2006 12:03:11 -0700
Received: from bolt.sonic.net (IDENT:lshZbY61PF19/2FQrpB8Un0NwLi5Usne at localhost.localdomain [127.0.0.1])
	by newshell.sonic.net (8.13.6/8.12.1) with ESMTP id k51J3Bxf024586
	for <j.w.r.degoede at hhs.nl>; Thu, 1 Jun 2006 12:03:11 -0700
Received: (from nbs at localhost)
	by bolt.sonic.net (8.13.6/8.12.1/Submit) id k51J3ASY024585
	for j.w.r.degoede at hhs.nl; Thu, 1 Jun 2006 12:03:10 -0700
Date: Thu, 1 Jun 2006 12:03:10 -0700
From: Bill Kendrick <nbs at sonic.net>
To: Hans de Goede <j.w.r.degoede at hhs.nl>
Subject: Re: Tuxpaint logo usage
Message-ID: <20060601190310.GA23533 at sonic.net>
References: <447F3547.2080802 at hhs.nl>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <447F3547.2080802 at hhs.nl>
User-Agent: Mutt/1.4.2.1i
X-Anti-Virus: Kaspersky Anti-Virus for MailServers 5.5.2/RELEASE, bases: 01062006 #185874, status: clean


Hi Hans!  Yes, go for it!  Thanks! :)

-bill!


On Thu, Jun 01, 2006 at 08:43:19PM +0200, Hans de Goede wrote:
> Hi,
> 
> First a short intro. I'm a Linux enthousiast / programmer and a packager
> for Fedora Extras which is an online community that packages software in
> the native package format for Fedora Core a (well known) Linux distribution.
> 
> As such I'm currently in the progress of packaging tuxkart an opensource
> racing game, which is hosted and distributed from sf.net. One of the
> tracks on which you can race is an ordinary racing track with
> advertisement boards along the side. Currently these advertisements are
> a bit of a problem as they show logo's of big companies without their
> permission. Hence I'm currently busy replacing these logo's with
> something more suitable. I would like to use the tuxpaint logo as one of
> the advertisements. Because of this I'm here by asking your permission
> for the use of the tuxpaint logo.
> 
> The logo is in no way used to promote the game, it is shown as
> an add, so if they promote anything it is tuxpaint.
> 
> Thanks & Regards,
> 
> Hans de Goede
> 
> 
> 

-- 
-bill!
bill at newbreedsoftware.com
http://www.newbreedsoftware.com/

---

The Fedora images in images/adverts.rgb incorporate the Fedora
trademark. The Fedora trademark is a trademark or registered trademark of Red
Hat, Inc. in the United States and other countries and are used by
permission.

For more info see the COPYING file of the fedora-logos package:
/usr/share/doc/fedora-logos-<version>/COPYING on any Fedora system with the
fedora-logos package installed.

Below the usage permission notice as received by mail:

Return-Path: <gdk at redhat.com>
Received: from koko.hhs.nl ([145.52.2.16] verified)
  by hhs.nl (CommuniGate Pro SMTP 4.3.6)
  with ESMTP id 47843849 for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:51:45 +0200
Received: from exim by koko.hhs.nl with spam-scanned (Exim 4.62)
	(envelope-from <gdk at redhat.com>)
	id 1FlTv7-0006MP-0j
	for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:51:45 +0200
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on koko.hhs.nl
X-Spam-Level: 
X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,
	SPF_PASS autolearn=ham version=3.1.0
Received: from exim (helo=koko)
	by koko.hhs.nl with local-smtp (Exim 4.62)
	(envelope-from <gdk at redhat.com>)
	id 1FlTv6-0006MM-TF
	for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:51:44 +0200
Received: from [66.187.233.31] (port=56045 helo=mx1.redhat.com)
	by koko.hhs.nl with esmtp (Exim 4.62)
	(envelope-from <gdk at redhat.com>)
	id 1FlTv6-0006Lj-EE
	for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:51:44 +0200
Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254])
	by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4VGph8g001950
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:51:43 -0400
Received: from devserv.devel.redhat.com (devserv.devel.redhat.com [172.16.58.1])
	by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4VGpha5026590
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:51:43 -0400
Received: from gdk.devel.redhat.com (gdk.devel.redhat.com [172.16.62.88])
	by devserv.devel.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4VGphwX015818
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:51:43 -0400
Received: from gdk.devel.redhat.com (localhost.localdomain [127.0.0.1])
	by gdk.devel.redhat.com (8.12.11/8.12.11) with ESMTP id k4VGp6vE007024
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:51:06 -0400
Received: from localhost (gdk at localhost)
	by gdk.devel.redhat.com (8.12.11/8.12.11/Submit) with ESMTP id k4VGp6jt007020
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:51:06 -0400
X-Authentication-Warning: gdk.devel.redhat.com: gdk owned process doing -bs
Date: Wed, 31 May 2006 12:51:06 -0400 (EDT)
From: Greg DeKoenigsberg <gdk at redhat.com>
X-X-Sender: gdk at gdk.devel.redhat.com
To: Hans de Goede <j.w.r.degoede at hhs.nl>
Subject: Re: Usage of Fedora logo inside FE package
In-Reply-To: <4479F694.2010604 at hhs.nl>
Message-ID: <Pine.LNX.4.58.0605311250480.6876 at gdk.devel.redhat.com>
References: <4479F694.2010604 at hhs.nl>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
X-Anti-Virus: Kaspersky Anti-Virus for MailServers 5.5.2/RELEASE, bases: 31052006 #185572, status: clean


Very cool, Hans.  I'll send your logo and agreement shortly.

--g

-------------------------------------------------------------
Greg DeKoenigsberg || Fedora Project || fedoraproject.org
Be an Ambassador || http://fedoraproject.org/wiki/Ambassadors
-------------------------------------------------------------

On Sun, 28 May 2006, Hans de Goede wrote:

> Hi,
> 
> I'm currently in the progress of packaging tuxkart a racing game. One of
> the tracks on which you can race is an ordinary racing track with
> advertisement boards along the side.
> 
> As shipped by upstream these advertisementboards contain advertisments
> for real product which clearly violates trademarks for those products.
> 
> As such I'm in the progress of replacing these advertisement and some
> other troublish artwork. I've currently (in my private copy) replaced a
> few of the advertisements with the fedora logo, which seems appropriate
> for a Fedora package. Because of this I would like to have your
> permission for using the logo in this way. Notice that I've copy and
> pasted the logo, I cannot just use the image-file from Fedora-logo's
> because that is not in the .rgb format, which tuxkart needs.
> 
> Thanks & Regards,
> 
> Hans
> 

Return-Path: <gdk at redhat.com>
Received: from koko.hhs.nl ([145.52.2.16] verified)
  by hhs.nl (CommuniGate Pro SMTP 4.3.6)
  with ESMTP id 47843851 for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:52:52 +0200
Received: from exim by koko.hhs.nl with spam-scanned (Exim 4.62)
	(envelope-from <gdk at redhat.com>)
	id 1FlTwC-0006cu-3l
	for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:52:52 +0200
Received: from exim (helo=koko)
	by koko.hhs.nl with local-smtp (Exim 4.62)
	(envelope-from <gdk at redhat.com>)
	id 1FlTwB-0006cr-NX
	for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:52:52 +0200
Received: from [66.187.233.31] (port=56334 helo=mx1.redhat.com)
	by koko.hhs.nl with esmtp (Exim 4.62)
	(envelope-from <gdk at redhat.com>)
	id 1FlTw4-0006ae-5Y
	for j.w.r.degoede at hhs.nl; Wed, 31 May 2006 18:52:50 +0200
Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254])
	by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4VGqgMn002593
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:52:42 -0400
Received: from devserv.devel.redhat.com (devserv.devel.redhat.com [172.16.58.1])
	by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4VGqgkf026872
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:52:42 -0400
Received: from gdk.devel.redhat.com (gdk.devel.redhat.com [172.16.62.88])
	by devserv.devel.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k4VGqelD015899
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:52:40 -0400
Received: from gdk.devel.redhat.com (localhost.localdomain [127.0.0.1])
	by gdk.devel.redhat.com (8.12.11/8.12.11) with ESMTP id k4VGq3G7007042
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:52:03 -0400
Received: from localhost (gdk at localhost)
	by gdk.devel.redhat.com (8.12.11/8.12.11/Submit) with ESMTP id k4VGq2pj007038
	for <j.w.r.degoede at hhs.nl>; Wed, 31 May 2006 12:52:03 -0400
X-Authentication-Warning: gdk.devel.redhat.com: gdk owned process doing -bs
Date: Wed, 31 May 2006 12:52:02 -0400 (EDT)
From: Greg DeKoenigsberg <gdk at redhat.com>
X-X-Sender: gdk at gdk.devel.redhat.com
To: Hans de Goede <j.w.r.degoede at hhs.nl>
Subject: Logo approval 
Message-ID: <Pine.LNX.4.58.0605311251430.6876 at gdk.devel.redhat.com>
MIME-Version: 1.0
Content-Type: MULTIPART/Mixed; BOUNDARY="279730238-1135091034-1148579299=:2501"
Content-ID: <Pine.LNX.4.58.0605311251431.6876 at gdk.devel.redhat.com>
X-Anti-Virus: Kaspersky Anti-Virus for MailServers 5.5.2/RELEASE, bases: 31052006 #185572, status: clean

  This message is in MIME format.  The first part should be readable text,
  while the remaining parts are likely unreadable without MIME-aware tools.
  Send mail to mime at docserver.cac.washington.edu for more info.

--279730238-1135091034-1148579299=:2501
Content-Type: TEXT/PLAIN; CHARSET=US-ASCII
Content-ID: <Pine.LNX.4.58.0605311251432.6876 at gdk.devel.redhat.com>


Here are your logo files, in SVG format.  Convert them to whatever formats
you wish to use.  By using these logos, you're agreeing to the following
simple rules:
                                                                                
1. You won't alter the logos, and you'll adhere to the style guide.

2. You'll only use the logos to describe Fedora stuff.  (i.e. you won't 
take the logo and slap it on Debian stuff.  Common sense.)

3. You won't use the logo for anything hateful or stupid.

4. We reserve the right to disallow your use of the logo.

Thanks for all your help supporting Fedora.

--g

---------------------------------------------------------------
Greg DeKoenigsberg || Fedora Foundation || fedoraproject.org
Be an Ambassador || http://fedoraproject.org/wiki/Ambassadors

---

The PlanetPenguin Racer logo (http://projects.planetpenguin.de/racer/) in
images/adverts.rgb is copyrighted (GPL) and used with the permission of the
ppracer authors:

Return-Path: <volker at planetpenguin.de>
Received: from koko.hhs.nl ([145.52.2.16] verified)
  by hhs.nl (CommuniGate Pro SMTP 4.3.6)
  with ESMTP id 47974844 for j.w.r.degoede at hhs.nl; Tue, 06 Jun 2006 11:16:54 +0200
Received: from exim by koko.hhs.nl with spam-scanned (Exim 4.62)
	(envelope-from <volker at planetpenguin.de>)
	id 1FnXgB-00060S-GG
	for j.w.r.degoede at hhs.nl; Tue, 06 Jun 2006 11:16:54 +0200
X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on koko.hhs.nl
X-Spam-Level: 
X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham 
	version=3.1.0
Received: from exim (helo=koko)
	by koko.hhs.nl with local-smtp (Exim 4.62)
	(envelope-from <volker at planetpenguin.de>)
	id 1FnXgB-00060K-99
	for j.w.r.degoede at hhs.nl; Tue, 06 Jun 2006 11:16:51 +0200
Received: from [217.160.131.21] (port=37440 helo=p15104914.pureserver.info)
	by koko.hhs.nl with esmtp (Exim 4.62)
	(envelope-from <volker at planetpenguin.de>)
	id 1FnXgA-0005zz-NE
	for j.w.r.degoede at hhs.nl; Tue, 06 Jun 2006 11:16:50 +0200
Received: from [192.168.0.242] (p5493D342.dip.t-dialin.net [84.147.211.66])
	(authenticated (0 bits))
	by p15104914.pureserver.info (8.11.3/8.11.3/SuSE Linux 8.11.1-0.5) with ESMTP id k569GoU14013
	for <j.w.r.degoede at hhs.nl>; Tue, 6 Jun 2006 11:16:50 +0200
Subject: Re: PPracer "logo" usage
From: Volker =?ISO-8859-1?Q?Str=F6bel?= <volker at planetpenguin.de>
To: Hans de Goede <j.w.r.degoede at hhs.nl>
In-Reply-To: <4482F398.8000306 at hhs.nl>
References: <4482F398.8000306 at hhs.nl>
Content-Type: text/plain
Date: Tue, 06 Jun 2006 11:14:08 +0200
Message-Id: <1149585248.6996.2.camel at localhost.localdomain>
Mime-Version: 1.0
X-Mailer: Evolution 2.6.1 
Content-Transfer-Encoding: 7bit
X-Anti-Virus: Kaspersky Anti-Virus for MailServers 5.5.2/RELEASE, bases: 06062006 #186743, status: clean

Hi,
sorry for the late reply.

It's ok with me to include the logo.
And nice to see, that someone finally replaces this old stuff with logos
from FOSS projects.

Regards,
Volker


Am Sonntag, den 04.06.2006, 16:52 +0200 schrieb Hans de Goede:
> Hi,
> 
> Did you receive my mail below? This is currently the last thing keeping
> me from releasing a tuxkart package for Fedora. If you don't want the
> ppracer logo included thats fine too, then I'll dig up some other
> graphics to put in there as "advertisements"
> 
> Regards,
> 
> Hans
> 
> p.s.
> 
> I've attached the "logo" as it will be included I did some gimp-ing to
> get it to be a little bit more square. Feel free to use it.
> 
> 
> ---
> 
> 
> Hi,
> 
> First a short intro. I'm a Linux enthousiast / programmer and a packager
> for Fedora Extras which is an online community that packages software in
> the native package format for Fedora Core a (well known) Linux distribution.
> 
> As such I'm currently in the progress of packaging tuxkart an opensource
> racing game, which is hosted and distributed from sf.net. One of the
> tracks on which you can race is an ordinary racing track with
> advertisement boards along the side. Currently these advertisements are
> a bit of a problem as they show logo's of big companies without their
> permission. Hence I'm currently busy replacing these logo's with
> something more suitable. I would like to use the ppracer "logo" *  as
> one of the advertisements. Because of this I'm here by asking your
> permission for the use of the ppracer logo.
> 
> The logo is in no way used to promote the game, it is shown as
> an add, so if it promotes anything it is ppracer.
> 
> Thanks & Regards,
> 
> Hans de Goede
> 
> * The yellow "planet penguin racer" text above the menu where the
> tuxracer logo used to be
> 

supertuxkart-nomnm.patch:

--- NEW FILE supertuxkart-nomnm.patch ---
--- supertuxkart-0.2/models/mnm.ac.nomnm	2006-05-04 00:14:38.000000000 +0200
+++ supertuxkart-0.2/models/mnm.ac	2006-09-24 21:11:28.000000000 +0200
@@ -5,7 +5,7 @@
 OBJECT poly
 name "rect"
 loc 0.0261096 0.0456918 0
-texture "../images/mnm.rgb"
+texture "../images/bananawrap.rgb"
 numvert 4
 -1 0 -0.6
 1 0 -0.6
--- supertuxkart-0.2/data/olivermath.loc.nomnm	2006-09-02 11:59:16.000000000 +0200
+++ supertuxkart-0.2/data/olivermath.loc	2006-09-24 21:10:00.000000000 +0200
@@ -20,8 +20,8 @@
 "backpack.ac",-12,5,{},0,{},{}
 "ruler_bridge.ac",60,20,{},0,{},{}
 "ruler_jump.ac",-20,20,{},160,{},{}
-"mnm.ac",50,10,{},0,{},{}
-"mnm.ac",-30,70,{},0,{},{}
+"bananawrap.ac",50,10,{},0,{},{}
+"bananawrap.ac",-30,70,{},0,{},{}
 "paperairplane.ac",0,80,{},-40,{},{}
 "teachersdesk.ac",40,75,{},0,{},{}
 "teachersdesk.ac",63,95,{},90,{},{}
--- supertuxkart-0.2/data/materials.dat.nomnm	2006-09-24 21:11:00.000000000 +0200
+++ supertuxkart-0.2/data/materials.dat	2006-09-24 21:11:07.000000000 +0200
@@ -45,7 +45,7 @@
 "grass.rgb"            N N     N      0.0     Y     N   0.1     N   N    N    N
 "track2.rgb"           N N     N      0.0     Y     N   1.0     N   N    N    N
 "zipper.rgb"           N N     N      0.0     N     N   1.0     N   Y    N    N
-"mnm.rgb"              Y Y     Y      0.5     N     N   1.0     N   Y    N    N
+"bananawrap.rgb"       Y Y     Y      0.5     N     N   1.0     N   Y    N    N
 "fuzzy.rgb"            Y Y     Y      0.2     N     N   0.5     Y   N    N    N
 "mriceblockshadow.rgb" Y Y     Y      0.0     N     N   1.0     Y   N    N    N
 "mriceblockicon.rgb"   Y Y     Y      0.0     N     N   1.0     Y   N    N    N
--- supertuxkart-0.2/src/sound.cpp~	2006-10-06 16:18:21.000000000 +0200
+++ supertuxkart-0.2/src/sound.cpp	2006-10-06 16:18:21.000000000 +0200
@@ -74,7 +74,8 @@
 
   //FIXME: The following 3 sounds are not used in the game yet.
   sfx[SOUND_BACK_MENU     ].fname = "wavs/tintagel/deselect_option.wav";
-  sfx[SOUND_SELECT_MENU   ].fname = "wavs/tintagel/select_option.wav";
+  //FIXME removed because copyrighted
+  //sfx[SOUND_SELECT_MENU   ].fname = "wavs/tintagel/select_option.wav";
   sfx[SOUND_MOVE_MENU     ].fname = "wavs/tintagel/move_option.wav";
 
   sfx[SOUND_FULL          ].fname = "wavs/tintagel/energy_bar_full.wav";
--- supertuxkart-0.2/src/sound.hpp~	2006-10-06 16:18:29.000000000 +0200
+++ supertuxkart-0.2/src/sound.hpp	2006-10-06 16:18:29.000000000 +0200
@@ -28,7 +28,7 @@
 		    SOUND_SHOT, SOUND_OW,     SOUND_WEE,   SOUND_EXPLOSION,
 		    SOUND_BZZT, SOUND_BEEP,
             SOUND_BACK_MENU, SOUND_USE_ANVIL, SOUND_USE_PARACHUTE,
-		    SOUND_SELECT_MENU, SOUND_MOVE_MENU, SOUND_FULL,
+		    SOUND_MOVE_MENU, SOUND_FULL,
 		    SOUND_PRESTART, SOUND_START, SOUND_MISSILE_LOCK,
 		    SOUND_TRAFFIC_JAM, NUM_SOUNDS};
 


--- NEW FILE supertuxkart.6 ---
.\" SuperTuxKart -- 3D GoKart racing game
.\" Copyright (c) 2001 Steve Baker, Daniel Kobras
.\" Copyright (c) 2006 The SuperTuxKart Team (See AUTHORS file)
.\"
.\" This manual page is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; either version 2 of the License, or
.\" (at your option) any later version.
.\" 
.\" This program is distributed in the hope that it will be useful,
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
.\" GNU General Public License for more details.
.\" 
.\" You should have received a copy of the GNU General Public License
.\" along with this program; if not, write to the Free Software
.\" Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
.\"
.\" This manual page was written especially for Debian Linux. It is based
.\" on information available from tuxkart's website at
.\" http://tuxkart.sourceforge.net
.\"
.TH SUPERTUXKART 6 "November 15, 2001"
.SH NAME
SuperTuxKart \- 3D GoKart racing game
.SH SYNOPSIS
.B supertuxkart
.SH DESCRIPTION
\fBsupertuxkart\fP is an arcade-style game where driving faster than your
opponents will do the trick. You're taking the role of Tux, the Linux mascot,
steering its go-kart around various courses, racing against computer-controlled
vehicles.
.PP
The main window that opens on startup provides a menu to select the racemode,
track to race on, the number of laps to go, etc. In the race, you can either
use a joystick, or the keyboard for steering.
.PP
During the race, several goodies can make your life easier while other gadgets
shall give you a really tough ride. Go for the arrow shaped red and black
zipper patches on the track, as they boost your cart onwards. The question mark
cubes hide some nice powerups. Beware of the big spinning banana's though, they
are yucky and slow you down. The herring coins on the other hand make for a
fine appetizer. Eat enough of them, and the next question mark cube might yield
not only one, but up to five powerups at once. Note that bad things happen at
once, while the good things (well, good for you...) need to be activated.
Here's the list of available extras:
.PP
.TP
.B Goodies
.TP
.I Missiles
Unguided but fast. If they hit anything, they explode impressively. The effect
on a cart is to stop it dead, so it has to accelerate again.
.TP
.I Homing missiles
Slower than the regular kind, but they track the nearest kart and are quite
hard to shake off.
.TP
.I Fuzzy blobs
Even slower still - a kart can outrun them quite easily. They ricochet off the
sides of the track and only explode when they hit a cart.
.TP
.I Magnets
If you activate a magnet then it hangs around for about 15 seconds. If anyone
comes within about 20 meters, you'll be pulled towards them and end up glued to
their tail until the magnet 'expires'. Great for catching up with someone -
hopeless for passing them.
.TP
.I Portable Zippers
These are just like the zipper patches on the track itself. They give you 
sudden acceleration and temporarily increase the top speed of your cart.
.TP
.B Badies
.TP
.I Parachute
This pops out the back of your cart and slows you down a little for a few
seconds only. Enough to drop you back one place if it's a close race though.
.TP
.I Anvil
Gets dragged behind your cart on a rope for an even shorter amount of time than
the parachute, but the drag effect is much stronger. Your cart hardly moves at
all.
.PP
.SH CONTROLS
.TP
.B \fRJoystick\fB Left/Right \fRor Key\fB Left/Right
Steer.
.TP
.B \fRJoystick\fB Button 1 \fRor Key\fB Up
Accelerate.
.TP
.B \fRJoystick\fB Button 2 \fRor Key\fB Down
Brake.
.TP
.B \fRJoystick\fB Button 3 \fRor Key\fB f
Use a special item (if you've collected one).
.TP
.B \fRJoystick\fB Button 4 \fRor Key\fB d
Ask to be rescued by Tinytux.
.TP
.B \fRJoystick\fB Button 5 \fRor Key\fB a
Pop a wheelie--makes you go really fast, but you'll be unable to steer.
.TP
.B \fRKey\fB Esc
Pop up or hide the menu.
.PP
.SH KNOWN BUGS
.PP
No drive-with-the-mouse support.
.PP
Slow performance on CPUs less than ~450MHz.
.PP
If you (or one of the computer players) goes off the edge of the
track, or calls for rescue then Tinytux doesn't always manage to
put you back onto the track correctly. If this happens, you may
need to goto the menu to restart the race.
.PP
Sometimes you can be pushed through a solid object if you are hit
by another player when in contact with the surface.
.PP
.SH ENVIRONMENT
.TP
.B MESA_GLX_FX
If this environment variable is set, the game's resolution
will switch from the default 640x480 to 320x240. This is mostly of interest
if you have a Voodoo-1/2 graphics card and usually set this variable to
fullscreen.
.TP
.B TUXKART_DATADIR
Path to the location of game data. Usually you don't have to mess with this
variable.
.TP
.B TUXKART_TRACKLIST
Path to the location of track data. Usually you don't have to mess with this
variable.
.PP
.SH AUTHOR
This manual page was written by Daniel Kobras <kobras at debian.org>,
for the Debian GNU/Linux system (but may be used by others). It was updated
for supertuxkart by Hans de Goede <j.w.r.degoede at hhs.nl> for the Fedora
GNU/Linux distribution.


--- NEW FILE supertuxkart.desktop ---
[Desktop Entry]
Encoding=UTF-8
Name=Supertuxkart
Comment=3D go-kart racing game
Exec=supertuxkart
Icon=supertuxkart.png
Terminal=false
StartupNotify=false
Type=Application
Categories=Application;Game;ArcadeGame;


--- NEW FILE supertuxkart.spec ---
Name:           supertuxkart
Version:        0.2
Release:        3%{?dist}
Summary:        Kids 3D go-kart racing game featuring Tux
Group:          Amusements/Games
License:        GPL
URL:            http://supertuxkart.berlios.de/
# This is not the official upstream tarbal which can be found here:
# http://download.berlios.de/supertuxkart/SuperTuxKart-0.2.tar.bz2
# This version has some copyrighted / trademarked images and sounds removed,
# these are replaced with new ones from supertuxkart-alt-images.tar.gz
# see supertuxkart-images-legal.txt for the copyright/trademark info on the
# new ones. The following images and sounds where replaced:
# adverts.rgb, lunchbox.rgb, lunchbox2.rgb, mnm.rgb (with bananawrap.rgb),
# brick.rgb, explode.rgb, mathclasswest.rgb (pokemon poster removed),
# explode2.rgb (unused, removed), select_option.wav (unused, removed).
Source0:        %{name}-%{version}.tar.gz
Source1:        %{name}-alt-images.tar.gz
Source2:        %{name}.desktop
Source3:        %{name}.png
Source4:        %{name}.6
Source5:        %{name}-images-legal.txt
Patch0:         supertuxkart-fhs.patch
Patch1:         supertuxkart-fullscreen.patch
Patch2:         supertuxkart-nomnm.patch
Patch3:         supertuxkart-0.2-joy1.patch
Patch4:         supertuxkart-0.2-joy2.patch
Patch5:         supertuxkart-0.2-joy3.patch
Patch6:         supertuxkart-0.2-gpmenu.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires:  plib-devel libXt-devel desktop-file-utils
# Provide so that yum install tuxkart will work, obsolete for auto upgrade
Provides:       tuxkart = 0.4.0-6
Obsoletes:      tuxkart < 0.4.0-6

%description
3D go-kart racing game for kids with several famous OpenSource mascots
participating. Race as Tux against 3 computer players in many different fun
race courses (Standard race track, Dessert, Mathclass, etc). Full information
on how to add your own race courses is included. During the race you can pick
up powerups such as: (homing) missiles, magnets and portable zippers.


%prep
%setup -q
%patch0 -p1 -z .fhs
%patch1 -p1 -z .fs
%patch2 -p1 -z .nomnm
mv models/mnm.ac models/bananawrap.ac
%patch3 -p1 -z .joy1
%patch4 -p1 -z .joy2
%patch5 -p1 -z .joy3
%patch6 -p1 -z .gpmenu
tar xf %{SOURCE1}
cp %{SOURCE5} .
chmod -x AUTHORS CHANGES COPYING README TODO
# stop automake from rerunning because of our patches above
touch src/Makefile.in


%build
%configure
make %{?_smp_mflags}


%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
# easier then patching all the Makefile's
mv $RPM_BUILD_ROOT%{_datadir}/games/%{name} $RPM_BUILD_ROOT%{_datadir}

# below is the desktop file and icon stuff.
mkdir -p $RPM_BUILD_ROOT%{_datadir}/applications
desktop-file-install --vendor fedora            \
  --dir $RPM_BUILD_ROOT%{_datadir}/applications \
  --add-category X-Fedora                       \
  %{SOURCE2}
mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps
install -p -m 644 %{SOURCE3} \
  $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps

# add the manpage (courtesy of Debian)
mkdir -p $RPM_BUILD_ROOT%{_mandir}/man6
install -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_mandir}/man6


%clean
rm -rf $RPM_BUILD_ROOT


%post
touch --no-create %{_datadir}/icons/hicolor || :
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
   %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi

%postun
touch --no-create %{_datadir}/icons/hicolor || :
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
   %{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
fi


%files
%defattr(-,root,root,-)
%doc AUTHORS CHANGES COPYING README TODO %{name}-images-legal.txt
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_mandir}/man6/%{name}.6.gz
%{_datadir}/applications/fedora-%{name}.desktop
%{_datadir}/icons/hicolor/32x32/apps/%{name}.png


%changelog
* Fri Oct  6 2006 Hans de Goede <j.w.r.degoede at hhs.nl> 0.2-3
- replace some more coprighted images and sounds
- fix a bunch of joystick related bugs

* Mon Sep 25 2006 Hans de Goede <j.w.r.degoede at hhs.nl> 0.2-2
- rename images-legal.txt to supertuxkart-images-legal.txt
- add a changelog entry for the previous release (and this one)

* Mon Sep 25 2006 Hans de Goede <j.w.r.degoede at hhs.nl> 0.2-1
- initial Fedora Extras package (replacing regular tuxkart)


Index: .cvsignore
===================================================================
RCS file: /cvs/extras/rpms/supertuxkart/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore	6 Oct 2006 14:34:57 -0000	1.1
+++ .cvsignore	6 Oct 2006 14:37:01 -0000	1.2
@@ -0,0 +1,2 @@
+supertuxkart-0.2.tar.gz
+supertuxkart-alt-images.tar.gz


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/supertuxkart/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources	6 Oct 2006 14:34:57 -0000	1.1
+++ sources	6 Oct 2006 14:37:01 -0000	1.2
@@ -0,0 +1,2 @@
+2371aa8b3d9201c97fee901accbe7280  supertuxkart-0.2.tar.gz
+c0d4c9b055d2a95a006f60bff2058f37  supertuxkart-alt-images.tar.gz




More information about the scm-commits mailing list