Author: lubos-guest
Date: 2010-03-31 08:28:50 +0000 (Wed, 31 Mar 2010)
New Revision: 10884

Added:
   packages/trunk/snowballs/
   packages/trunk/snowballs/debian/
   packages/trunk/snowballs/debian/README.source
   packages/trunk/snowballs/debian/changelog
   packages/trunk/snowballs/debian/compat
   packages/trunk/snowballs/debian/control
   packages/trunk/snowballs/debian/copyright
   packages/trunk/snowballs/debian/docs
   packages/trunk/snowballs/debian/patches/
   packages/trunk/snowballs/debian/patches/cmake_and_paths.patch
   packages/trunk/snowballs/debian/patches/config_in_home_dir.patch
   packages/trunk/snowballs/debian/patches/series
   packages/trunk/snowballs/debian/rules
   packages/trunk/snowballs/debian/snowballs-data.install
   packages/trunk/snowballs/debian/snowballs-data.lintian-overrides
   packages/trunk/snowballs/debian/snowballs.6
   packages/trunk/snowballs/debian/snowballs.desktop
   packages/trunk/snowballs/debian/snowballs.install
   packages/trunk/snowballs/debian/snowballs.lintian-overrides
   packages/trunk/snowballs/debian/snowballs.manpages
   packages/trunk/snowballs/debian/snowballs.menu
Log:
Added Snowballs game

Added: packages/trunk/snowballs/debian/README.source
===================================================================
--- packages/trunk/snowballs/debian/README.source                               
(rev 0)
+++ packages/trunk/snowballs/debian/README.source       2010-03-31 08:28:50 UTC 
(rev 10884)
@@ -0,0 +1,57 @@
+This package uses quilt to manage all modifications to the upstream
+source.  Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+    for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+        if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+                export QUILT_PATCHES=debian/patches
+        fi
+    done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+    quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+    quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches.  Then, for every file that will be modified by this patch,
+run:
+
+    quilt add <file>
+
+before editing those files.  You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly.  After editing the files, run:
+
+    quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+    quilt import -P <patch> /path/to/patch
+    quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches.  The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+    quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.

Added: packages/trunk/snowballs/debian/changelog
===================================================================
--- packages/trunk/snowballs/debian/changelog                           (rev 0)
+++ packages/trunk/snowballs/debian/changelog   2010-03-31 08:28:50 UTC (rev 
10884)
@@ -0,0 +1,5 @@
+snowballs (0.4.0-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #448502)
+
+ -- Luboš Novák <[email protected]>  Wed, 31 Mar 2010 10:00:19 +0200

Added: packages/trunk/snowballs/debian/compat
===================================================================
--- packages/trunk/snowballs/debian/compat                              (rev 0)
+++ packages/trunk/snowballs/debian/compat      2010-03-31 08:28:50 UTC (rev 
10884)
@@ -0,0 +1 @@
+7

Added: packages/trunk/snowballs/debian/control
===================================================================
--- packages/trunk/snowballs/debian/control                             (rev 0)
+++ packages/trunk/snowballs/debian/control     2010-03-31 08:28:50 UTC (rev 
10884)
@@ -0,0 +1,38 @@
+Source: snowballs
+Section: games
+Priority: extra
+Maintainer: Debian Games Team <[email protected]>
+Uploaders: Luboš Novák <[email protected]>
+Build-Depends: quilt, debhelper (>= 7.0.50~), cmake (>= 2.6), libnel-dev (>= 
0.7.0), libxml2-dev
+Standards-Version: 3.8.4
+Homepage: http://dev.ryzom.com/projects/nel/
+Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/snowballs/
+Vcs-Browser: 
http://svn.debian.org/wsvn/pkg-games/packages/trunk/snowballs/?op=log
+
+Package: snowballs
+Architecture: amd64 i386
+Depends: ${shlibs:Depends}, ${misc:Depends}, gsfonts,
+ snowballs-data(>= ${source:Upstream-Version}), snowballs-data (<= 
${source:Version})
+Recommends: nelns-launcher
+Description: Multiplayer snowball throwing 3D game
+ You are now a gnu on an artic snowfield. You have snowballs which you can
+ throw at other people. When you throw a snowball, you have a few seconds
+ during which you gather more snow before you can throw the next one. If you
+ hit someone, your score increases, and the snowed opponent becomes immune to
+ further snowing (he flashes on the screen) for five seconds. He cannot
+ retaliate while invulnerable.
+
+
+Package: snowballs-data
+Architecture: all
+Depends: ${misc:Depends}
+Recommends: snowballs-client
+Description: Game content for the Snowballs game
+ You are now a gnu on an artic snowfield. You have snowballs which you can
+ throw at other people. When you throw a snowball, you have a few seconds
+ during which you gather more snow before you can throw the next one. If you
+ hit someone, your score increases, and the snowed opponent becomes immune to
+ further snowing (he flashes on the screen) for five seconds. He cannot
+ retaliate while invulnerable.
+ .
+ This package contains the data files.

Added: packages/trunk/snowballs/debian/copyright
===================================================================
--- packages/trunk/snowballs/debian/copyright                           (rev 0)
+++ packages/trunk/snowballs/debian/copyright   2010-03-31 08:28:50 UTC (rev 
10884)
@@ -0,0 +1,46 @@
+This package was debianized by Luboš Novák <[email protected]> on
+Tue, 28 Jul 2009 21:01:19 +0200.
+
+It was downloaded from <http://dev.ryzom.com/projects/nel>
+
+Upstream Authors:
+
+    Matt Raykowski <[email protected]>
+    Vianney Lecroart <[email protected]>
+    Robert Wetzel <[email protected]>
+    Henri Kuuste <[email protected]>
+    Bertram Felgenhauer <[email protected]>
+    Krzysztof Kotlenga <[email protected]>
+    Cedric Ochs <[email protected]>
+    Nevrax <[email protected]>
+
+Copyright:
+
+    Copyright (C) 2003-2009 Vianney Lecroart
+    Copyright (C) 2003-2009 Matt Raykowski
+    Copyright (C) 2000-2003 Nevrax Ltd.
+
+License:
+
+    This package 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; version 2 dated June, 1991.
+
+    This package 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 package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+    The GNU General Public License which can be found,
+    on Debian systems, at /usr/share/common-licenses/GPL-2.
+
+The Debian packaging is:
+
+    Copyright (C) 2009 Luboš Novák <[email protected]>
+
+and is licensed under the GPL version 3, 
+see `/usr/share/common-licenses/GPL-3'.

Added: packages/trunk/snowballs/debian/docs
===================================================================
--- packages/trunk/snowballs/debian/docs                                (rev 0)
+++ packages/trunk/snowballs/debian/docs        2010-03-31 08:28:50 UTC (rev 
10884)
@@ -0,0 +1,2 @@
+NEWS
+README

Added: packages/trunk/snowballs/debian/patches/cmake_and_paths.patch
===================================================================
--- packages/trunk/snowballs/debian/patches/cmake_and_paths.patch               
                (rev 0)
+++ packages/trunk/snowballs/debian/patches/cmake_and_paths.patch       
2010-03-31 08:28:50 UTC (rev 10884)
@@ -0,0 +1,98 @@
+Change installation paths. Add gsfonts path into client.cfg.in template.
+Index: snowballs-0.4.0/CMakeLists.txt
+===================================================================
+--- snowballs-0.4.0.orig/CMakeLists.txt        2009-12-18 13:41:25.691068336 
+0100
++++ snowballs-0.4.0/CMakeLists.txt     2009-12-18 13:41:41.174714464 +0100
+@@ -66,26 +66,26 @@
+ SET(SNOWBALLS_CONFIG_FILE "${NL_ETC_PREFIX}/snowballs" CACHE FILEPATH 
"Snowballs config file location")
+ SET(SNOWBALLS_DATA_FILE "${NL_SHARE_PREFIX}/games/snowballs" CACHE FILEPATH 
"Snowballs data file location")
+ SET(SNOWBALLS_LOG_FILE "${NL_LOG_PREFIX}/snowballs" CACHE FILEPATH "Snowballs 
log file location")
+-INSTALL(CODE "FILE(MAKE_DIRECTORY ${SNOWBALLS_LOG_FILE})")
++#INSTALL(CODE "FILE(MAKE_DIRECTORY ${SNOWBALLS_LOG_FILE})")
+ 
+ #-----------------------------------------------------------------------------
+ #Platform specifics
+ 
+ FIND_PACKAGE(Threads REQUIRED)
+ FIND_PACKAGE(LibXml2 REQUIRED)
+-FIND_PACKAGE(PNG REQUIRED)
++#FIND_PACKAGE(PNG REQUIRED)
+ 
+ NL_SETUP_BUILD()
+ 
+ FIND_PACKAGE(NeL COMPONENTS nelmisc nelgeorges nel3d nelnet nelpacs REQUIRED)
+-FIND_PACKAGE(NeLNS COMPONENTS naming_service login_service welcome_service 
nel_launcher_qt)
++#FIND_PACKAGE(NeLNS COMPONENTS naming_service login_service welcome_service 
nel_launcher_qt)
+ 
+ ###
+ # An example of finding NeL 3D and CEGUI Renderer.
+ ###
+ IF(BUILD_CLIENT)
+-  FIND_PACKAGE(FreeType)
+-  FIND_PACKAGE(Jpeg)
++#  FIND_PACKAGE(FreeType)
++#  FIND_PACKAGE(Jpeg)
+   
+   IF(ENABLE_SOUND)
+     FIND_PACKAGE(NeL COMPONENTS nelsound)
+@@ -99,7 +99,7 @@
+ 
+ NL_SETUP_BUILD_FLAGS()
+ 
+-ADD_DEFINITIONS(-DSNOWBALLS_CONFIG="${SNOWBALLS_CONFIG_FILE}/" 
-DSNOWBALLS_STATE="${SNOWBALLS_LOG_FILE}/" 
-DSNOWBALLS_LOGS="${SNOWBALLS_LOG_FILE}/")
++ADD_DEFINITIONS(-DSNOWBALLS_CONFIG="${SNOWBALLS_CONFIG_FILE}/" 
-DSNOWBALLS_STATE="${SNOWBALLS_LOG_FILE}/" 
-DSNOWBALLS_LOGS="${SNOWBALLS_LOG_FILE}/" -DSBCLIENT_USE_LOG=0)
+ 
+ IF(BUILD_CLIENT)
+   ADD_SUBDIRECTORY(client)
+Index: snowballs-0.4.0/client/CMakeLists.txt
+===================================================================
+--- snowballs-0.4.0.orig/client/CMakeLists.txt 2009-12-18 13:41:25.705066208 
+0100
++++ snowballs-0.4.0/client/CMakeLists.txt      2009-12-18 13:48:49.744561944 
+0100
+@@ -3,7 +3,12 @@
+ SET(database "${SNOWBALLS_DATA_FILE}")
+ CONFIGURE_FILE(client.cfg.in client.cfg)
+ 
+-INSTALL(FILES ${CMAKE_BINARY_DIR}/client.cfg DESTINATION etc/snowballs 
COMPONENT snowballsclient)
++IF("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER "2.6")
++    INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/client.cfg DESTINATION 
${SNOWBALLS_CONFIG_FILE} COMPONENT snowballsclient)
++ELSE("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER "2.6")
++    INSTALL(FILES ${CMAKE_BINARY_DIR}/client.cfg DESTINATION 
${SNOWBALLS_CONFIG_FILE} COMPONENT snowballsclient)
++ENDIF("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" VERSION_GREATER "2.6")
++
+ INSTALL(DIRECTORY data/
+         DESTINATION share/games/snowballs
+       COMPONENT snowballsdata
+Index: snowballs-0.4.0/client/client.cfg.in
+===================================================================
+--- snowballs-0.4.0.orig/client/client.cfg.in  2009-12-18 13:41:25.719064080 
+0100
++++ snowballs-0.4.0/client/client.cfg.in       2009-12-18 13:41:41.198710816 
+0100
+@@ -15,7 +15,7 @@
+ //////////////////////////////////////////////////////////////////////////////
+ 
+ // Root directory where we can find the client datas (zones, tiles, maps, ...)
+-SearchPaths = { "@database@" };
++SearchPaths = { "@database@", "/usr/share/fonts/type1/gsfonts" };
+ 
+ // Which extensions to remap to what if needed (pairs of 2)
+ RemapExtensions = { "dss", "tga" };
+Index: snowballs-0.4.0/client/src/CMakeLists.txt
+===================================================================
+--- snowballs-0.4.0.orig/client/src/CMakeLists.txt     2009-12-18 
13:41:25.740060888 +0100
++++ snowballs-0.4.0/client/src/CMakeLists.txt  2009-12-18 13:41:41.209709144 
+0100
+@@ -2,8 +2,8 @@
+ 
+ ADD_EXECUTABLE(snowballs ${SRC})
+ 
+-INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR} ${PNG_INCLUDE_DIR} 
${NELMISC_INCLUDE_DIRS} ${FREETYPE_INCLUDE_DIRS} ${JPEG_INCLUDE_DIR})
+-TARGET_LINK_LIBRARIES(snowballs ${PLATFORM_LINKFLAGS} ${PNG_LIBRARIES} 
${LIBXML2_LIBRARIES} ${FREETYPE_LIBRARY} ${JPEG_LIBRARY} ${NELMISC_LIBRARY} 
${NELPACS_LIBRARY} ${NELNET_LIBRARY} ${NEL3D_LIBRARY})
++INCLUDE_DIRECTORIES(${LIBXML2_INCLUDE_DIR} ${NELMISC_INCLUDE_DIRS})
++TARGET_LINK_LIBRARIES(snowballs ${PLATFORM_LINKFLAGS} ${NELMISC_LIBRARY} 
${NELPACS_LIBRARY} ${NELNET_LIBRARY} ${NEL3D_LIBRARY})
+ 
+ # If sound is enabled then add the definitions and link the libraries.
+ IF(ENABLE_SOUND)
+@@ -16,4 +16,4 @@
+       PROJECT_LABEL "Snowballs Client")
+ ENDIF(WIN32)
+ 
+-INSTALL(TARGETS snowballs RUNTIME DESTINATION bin COMPONENT snowballsclient)
++INSTALL(TARGETS snowballs RUNTIME DESTINATION games COMPONENT snowballsclient)

Added: packages/trunk/snowballs/debian/patches/config_in_home_dir.patch
===================================================================
--- packages/trunk/snowballs/debian/patches/config_in_home_dir.patch            
                (rev 0)
+++ packages/trunk/snowballs/debian/patches/config_in_home_dir.patch    
2010-03-31 08:28:50 UTC (rev 10884)
@@ -0,0 +1,199 @@
+Create client.cfg in user's XDG config dir.
+Index: snowballs-0.4.0/client/src/configuration.cpp
+===================================================================
+--- snowballs-0.4.0.orig/client/src/configuration.cpp  2009-12-18 
13:41:25.622078824 +0100
++++ snowballs-0.4.0/client/src/configuration.cpp       2009-12-18 
13:41:41.241704280 +0100
+@@ -40,6 +40,7 @@
+ // Project includes
+ #include "snowballs_client.h"
+ #include "snowballs_config.h"
++#include "userpaths.h"
+ 
+ using namespace std;
+ using namespace NLMISC;
+@@ -59,8 +60,26 @@
+ 
+ bool CConfiguration::init()
+ {
++      string confFP = CUserPaths::getAppConfigDir("snowballs") + "client.cfg";
++      if (!CUserPaths::isFile(confFP))
++      {
++/*            if (!CFile::copyFile(confFP.c_str(), SBCLIENT_CONFIG_FILE, 
false, NULL))
++              {
++                      nlerror ("Can't copy config template file into '%s'", 
confFP.c_str());
++              }
++*/
++              FILE *fp = fopen(confFP.c_str(), "wt");
++              if(!fp)
++              {
++                      nlerror ("Can't create config file '%s'", 
confFP.c_str());
++              }
++              string FileContent = "RootConfigFilename = \"" + 
string(SBCLIENT_CONFIG_FILE) + "\";\n";
++              fprintf(fp, FileContent.c_str());
++              fclose(fp);
++      }
++
+       nlassert(!ConfigFile); ConfigFile = new CConfigFile(); 
nlassert(ConfigFile);
+-      ConfigFile->load(SBCLIENT_CONFIG_FILE);
++      ConfigFile->load(confFP, false);
+ 
+       // set the search paths (kinda important)
+       CConfigFile::CVar *var;
+Index: snowballs-0.4.0/client/src/userpaths.cpp
+===================================================================
+--- /dev/null  1970-01-01 00:00:00.000000000 +0000
++++ snowballs-0.4.0/client/src/userpaths.cpp   2009-12-18 13:41:41.249703064 
+0100
+@@ -0,0 +1,116 @@
++#include "userpaths.h"
++#include <stdlib.h>
++#include <sys/stat.h>
++#include <nel/misc/debug.h>
++
++using namespace std;
++
++namespace SBCLIENT
++{
++
++#ifdef NL_OS_UNIX
++
++string CUserPaths::getXDGDir(const string &envName, const string &dirName)
++{
++      char *envXDGHome = getenv (envName.c_str());
++
++      string xdgDir;
++      if (NULL == envXDGHome || '\0' == envXDGHome[0])
++      {
++              xdgDir = addSlash(getHomeDir()) + dirName + "/";
++              if (!isDir(xdgDir))
++              {
++                      if (0 != mkdir (xdgDir.c_str(), S_IRUSR | S_IWUSR | 
S_IXUSR) )
++                      {
++                              //glib use temp here
++                              nlerror ("Can't create dir %s", xdgDir.c_str());
++                      }
++              }
++      }
++      else
++      {
++              xdgDir = string(envXDGHome) + "/";
++      }
++      return xdgDir;
++}
++
++string CUserPaths::getConfigXDGDir()
++{
++      return getXDGDir("XDG_CONFIG_HOME", ".config");
++}
++
++string CUserPaths::getCacheXDGDir()
++{
++      return getXDGDir("XDG_CACHE_HOME", ".cache");
++}
++
++#endif
++
++string CUserPaths::getHomeDir()
++{
++#ifdef NL_OS_WINDOWS
++      nlerror ("TODO: Windows home dir");
++    return "";
++#else
++      char *home = getenv("HOME");
++      if (NULL == home || '\0' == home[0])
++      {
++              nlerror ("No home dir");
++      }
++      return string(home);
++#endif
++}
++
++string CUserPaths::getAppConfigDir(const string &appDirName)
++{
++#ifdef NL_OS_WINDOWS
++      string AppConfigDir = "";
++      CHAR szPath[MAX_PATH];
++      if(SUCCEEDED(SHGetFolderPathA(NULL, CSIDL_APPDATA, NULL, 0, szPath)))
++      {
++              AppConfigDir = string(szPath) + appDirName + "/";
++      }
++#else
++      string AppConfigDir = getConfigXDGDir() + appDirName + "/";
++      if (!isDir(AppConfigDir))
++      {
++              if (0 != mkdir(AppConfigDir.c_str(), S_IRUSR | S_IWUSR | 
S_IXUSR))
++                      nlerror("Can't create dir %s", AppConfigDir.c_str());
++      }
++
++#endif
++      return AppConfigDir;
++}
++
++bool CUserPaths::isDir(const string &path)
++{
++      struct stat sInfo;
++      if (0 != stat (path.c_str(), &sInfo))
++      return false;
++
++      return bool(S_ISDIR(sInfo.st_mode));
++}
++
++bool CUserPaths::isFile(const string &path)
++{
++      struct stat sInfo;
++      if (0 != stat(path.c_str(), &sInfo))
++      return false;
++
++      return bool(S_ISREG(sInfo.st_mode));
++}
++
++string CUserPaths::addSlash(const string &path)
++{
++      if (path.size() > 0)
++      {
++      if (path[path.size() - 1] == '/')
++              return path;
++      else
++              return path + "/";
++      }
++
++      return "/";
++}
++
++} /* namespace SBCLIENT */
+Index: snowballs-0.4.0/client/src/userpaths.h
+===================================================================
+--- /dev/null  1970-01-01 00:00:00.000000000 +0000
++++ snowballs-0.4.0/client/src/userpaths.h     2009-12-18 13:41:41.255702152 
+0100
+@@ -0,0 +1,32 @@
++#ifndef USER_PATHS_H
++#define USER_PATHS_H
++
++#include <nel/misc/types_nl.h>
++#include <string>
++
++namespace SBCLIENT
++{
++
++class CUserPaths
++{
++
++#ifdef NL_OS_UNIX
++
++private:
++      static std::string getXDGDir(const std::string &envName, const 
std::string &dirName);
++      static std::string getConfigXDGDir();
++      static std::string getCacheXDGDir();
++
++#endif
++
++public:
++      static std::string getHomeDir();
++      static std::string getAppConfigDir(const std::string &appDirName);
++      static bool isDir(const std::string &path);
++      static bool isFile(const std::string &path);
++      static std::string addSlash(const std::string &path);
++};
++
++} /* namespace SBCLIENT */
++
++#endif

Added: packages/trunk/snowballs/debian/patches/series
===================================================================
--- packages/trunk/snowballs/debian/patches/series                              
(rev 0)
+++ packages/trunk/snowballs/debian/patches/series      2010-03-31 08:28:50 UTC 
(rev 10884)
@@ -0,0 +1,2 @@
+cmake_and_paths.patch
+config_in_home_dir.patch

Added: packages/trunk/snowballs/debian/rules
===================================================================
--- packages/trunk/snowballs/debian/rules                               (rev 0)
+++ packages/trunk/snowballs/debian/rules       2010-03-31 08:28:50 UTC (rev 
10884)
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+%:
+       dh --buildsystem=cmake --with quilt $@
+
+override_dh_auto_configure:
+       dh_auto_configure -- -DSNOWBALLS_CONFIG_FILE=/etc/snowballs 
-DBUILD_SERVER=OFF -DCMAKE_VERBOSE_MAKEFILE=ON


Property changes on: packages/trunk/snowballs/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/trunk/snowballs/debian/snowballs-data.install
===================================================================
--- packages/trunk/snowballs/debian/snowballs-data.install                      
        (rev 0)
+++ packages/trunk/snowballs/debian/snowballs-data.install      2010-03-31 
08:28:50 UTC (rev 10884)
@@ -0,0 +1,7 @@
+usr/share/games/snowballs/anims/*
+usr/share/games/snowballs/maps/*
+usr/share/games/snowballs/music/*
+usr/share/games/snowballs/pacs/*
+usr/share/games/snowballs/shapes/*
+usr/share/games/snowballs/tiles/*
+usr/share/games/snowballs/zones/*

Added: packages/trunk/snowballs/debian/snowballs-data.lintian-overrides
===================================================================
--- packages/trunk/snowballs/debian/snowballs-data.lintian-overrides            
                (rev 0)
+++ packages/trunk/snowballs/debian/snowballs-data.lintian-overrides    
2010-03-31 08:28:50 UTC (rev 10884)
@@ -0,0 +1,3 @@
+# animal gnu
+snowballs-data: capitalization-error-in-description gnu GNU
+

Added: packages/trunk/snowballs/debian/snowballs.6
===================================================================
--- packages/trunk/snowballs/debian/snowballs.6                         (rev 0)
+++ packages/trunk/snowballs/debian/snowballs.6 2010-03-31 08:28:50 UTC (rev 
10884)
@@ -0,0 +1,13 @@
+.TH SNOWBALLS 6 "Jul 30, 2009"
+.SH NAME
+snowballs \- 3D multiplayer action game
+.SH SYNOPSIS
+.B snowballs
+.RI [ cookie ]
+.RI [ host ]
+.SH DESCRIPTION
+\fBsnowballs\fP is 3D multiplayer action game.
+
+.SH AUTHOR
+This manual page was written by Lubos Novak <[email protected]>,
+for the Debian project (and may be used by others).

Added: packages/trunk/snowballs/debian/snowballs.desktop
===================================================================
--- packages/trunk/snowballs/debian/snowballs.desktop                           
(rev 0)
+++ packages/trunk/snowballs/debian/snowballs.desktop   2010-03-31 08:28:50 UTC 
(rev 10884)
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Version=1.0
+Type=Application
+Terminal=false
+Name=Snowballs
+Comment=Multiplayer snowball throwing 3D game
+Exec=snowballs
+Categories=Application;Game

Added: packages/trunk/snowballs/debian/snowballs.install
===================================================================
--- packages/trunk/snowballs/debian/snowballs.install                           
(rev 0)
+++ packages/trunk/snowballs/debian/snowballs.install   2010-03-31 08:28:50 UTC 
(rev 10884)
@@ -0,0 +1,3 @@
+usr/games/*
+etc/snowballs/client.cfg
+debian/snowballs.desktop /usr/share/applications

Added: packages/trunk/snowballs/debian/snowballs.lintian-overrides
===================================================================
--- packages/trunk/snowballs/debian/snowballs.lintian-overrides                 
        (rev 0)
+++ packages/trunk/snowballs/debian/snowballs.lintian-overrides 2010-03-31 
08:28:50 UTC (rev 10884)
@@ -0,0 +1,3 @@
+# animal gnu
+snowballs: capitalization-error-in-description gnu GNU
+

Added: packages/trunk/snowballs/debian/snowballs.manpages
===================================================================
--- packages/trunk/snowballs/debian/snowballs.manpages                          
(rev 0)
+++ packages/trunk/snowballs/debian/snowballs.manpages  2010-03-31 08:28:50 UTC 
(rev 10884)
@@ -0,0 +1 @@
+debian/snowballs.6

Added: packages/trunk/snowballs/debian/snowballs.menu
===================================================================
--- packages/trunk/snowballs/debian/snowballs.menu                              
(rev 0)
+++ packages/trunk/snowballs/debian/snowballs.menu      2010-03-31 08:28:50 UTC 
(rev 10884)
@@ -0,0 +1,4 @@
+?package(snowballs):command="/usr/games/snowballs" \
+                   title="Snowballs" \
+                   needs="X11" \
+                   section="Games/Action"


_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to