r9049 - packages/trunk/glest/debian

Siegfried-Angel Gevatter Pujals rainct-guest at alioth.debian.org
Sat Mar 7 20:22:00 UTC 2009


Author: rainct-guest
Date: 2009-03-07 20:22:00 +0000 (Sat, 07 Mar 2009)
New Revision: 9049

Modified:
   packages/trunk/glest/debian/changelog
   packages/trunk/glest/debian/control
   packages/trunk/glest/debian/glest.sh
Log:
Do not create a "docs" symlink amymore (LP: #226584).

Modified: packages/trunk/glest/debian/changelog
===================================================================
--- packages/trunk/glest/debian/changelog	2009-03-07 20:16:17 UTC (rev 9048)
+++ packages/trunk/glest/debian/changelog	2009-03-07 20:22:00 UTC (rev 9049)
@@ -1,6 +1,5 @@
 glest (3.2.1-1) UNRELEASED; urgency=low
 
-  [ Siegfried-Angel Gevatter Pujals ]
   * New upstream version.
      - Repackage the tarball from .zip to .tar.gz.
      - The default resultion is now 640x480 (Closes: #450770).
@@ -36,14 +35,12 @@
      - Replace the configuration file (glest.ini) with a new one if it is too
        old (setting are not preserved).
      - Create directory ~/.glest/screens for the screenshots (Closes: #505919).
+     - Do not create a "docs" symlink amymore (LP: #226584).
   * debian/glest.6:
      - Update the manpage for Glest 3 (Closes: #505917).
 
-  [ Alexander Reichle-Schmehl ]
-  * Adopt debian/control to my new name
+ -- Siegfried-Angel Gevatter Pujals <rainct at ubuntu.com>  Tue, 17 Feb 2009 21:08:33 +0100
 
- -- Alexander Reichle-Schmehl <tolimar at debian.org>  Wed, 25 Feb 2009 17:23:58 +0100
-
 glest (3.1.2-1) unstable; urgency=low
 
   [ Siegfried-Angel Gevatter Pujals (RainCT)]

Modified: packages/trunk/glest/debian/control
===================================================================
--- packages/trunk/glest/debian/control	2009-03-07 20:16:17 UTC (rev 9048)
+++ packages/trunk/glest/debian/control	2009-03-07 20:22:00 UTC (rev 9049)
@@ -2,7 +2,7 @@
 Section: contrib/games
 Priority: optional
 Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
-Uploaders: Giuseppe Borzi <gborzi at ieee.org>, Eddy Petrișor <eddy.petrisor at gmail.com>, Siegfried-Angel Gevatter Pujals <rainct at ubuntu.com>, Ansgar Burchardt <ansgar at 43-1.org>, Alexander Reichle-Schmehl <tolimar at debian.org>
+Uploaders: Giuseppe Borzi <gborzi at ieee.org>, Eddy Petrișor <eddy.petrisor at gmail.com>, Siegfried-Angel Gevatter Pujals <rainct at ubuntu.com>, Ansgar Burchardt <ansgar at 43-1.org>, Alexander Schmehl <tolimar at debian.org>
 Build-Depends: debhelper (>= 5.0.0), jam, libsdl1.2-dev, libxerces-c2-dev,
  libvorbis-dev, libogg-dev, libopenal-dev, liblua5.1-dev, quilt, autoconf,
  automake

Modified: packages/trunk/glest/debian/glest.sh
===================================================================
--- packages/trunk/glest/debian/glest.sh	2009-03-07 20:16:17 UTC (rev 9048)
+++ packages/trunk/glest/debian/glest.sh	2009-03-07 20:22:00 UTC (rev 9049)
@@ -11,15 +11,18 @@
         sed -i "s/${language}/english/" glest.ini
     # If the configuration file is too old, replace it
     grep AutoTest glest.ini >/dev/null 2>&1
-    [ $? -eq 0 ] || \
+    if [ $? -ne 0 ]
+    then
         mv glest.ini glest.ini.bck
         cp /usr/lib/glest/glest.ini .
+        [ -h docs ] || unlink docs
+    fi
 else
     cp /usr/lib/glest/glest.ini .
 fi
 [ -h glest ] || ln -s /usr/lib/glest/glest .
 [ -f servers.ini ] || cp $MAINDIR/servers.ini .
-for i in data docs scenarios techs tilesets; do
+for i in data scenarios techs tilesets; do
       [ -h $i ] || ln -s $MAINDIR/$i .
 done
 [ -d maps ] || mkdir maps




More information about the Pkg-games-commits mailing list