Author: miriam
Date: 2010-08-27 12:47:12 +0000 (Fri, 27 Aug 2010)
New Revision: 11319

Added:
   packages/trunk/love/debian/love-0.6.1
Removed:
   packages/trunk/love/debian/love.1
Modified:
   packages/trunk/love/debian/copyright
   packages/trunk/love/debian/love.postinst
   packages/trunk/love/debian/love.prerm
   packages/trunk/love/debian/rules
Log:
Use alternatives for man page too



Modified: packages/trunk/love/debian/copyright
===================================================================
--- packages/trunk/love/debian/copyright        2010-08-27 04:36:00 UTC (rev 
11318)
+++ packages/trunk/love/debian/copyright        2010-08-27 12:47:12 UTC (rev 
11319)
@@ -302,7 +302,7 @@
     * PhysFS (ZLIB)
     * Box2D (ZLIB)
     * boost (BSL)
-    * SWIG (BSD, /usr/share/common-licenses/BSD)
+    * SWIG (BSD)
 
 
 Artwork (debian/logos and debian/pixmaps):

Copied: packages/trunk/love/debian/love-0.6.1 (from rev 11318, 
packages/trunk/love/debian/love.1)
===================================================================
--- packages/trunk/love/debian/love-0.6.1                               (rev 0)
+++ packages/trunk/love/debian/love-0.6.1       2010-08-27 12:47:12 UTC (rev 
11319)
@@ -0,0 +1,23 @@
+.\" (c) 2008 Miriam Ruiz <little_m...@yahoo.es>
+.\" 
+.\" This software is provided 'as-is', without any express or implied 
warranty. In no event will the authors be held liable for any damagesarising 
from the use of this software.
+.\" 
+.\" Permission is granted to anyone to use this software for any purpose, 
including commercial applications, and to alter it and redistribute it freely, 
subject to the following restrictions:
+.\" 
+.\"     1. The origin of this software must not be misrepresented; you must 
not claim that you wrote the original software. If you use this software in a 
product, an acknowledgment in the product documentation would be appreciated 
but is not required.
+.\" 
+.\"     2. Altered source versions must be plainly marked as such, and must 
not be misrepresented as being the original software.
+.\" 
+.\"     3. This notice may not be removed or altered from any source 
distribution.
+.TH "LÖVE" "1" "0.4.0" "" ""
+.SH "NAME"
+love \- 2D game development framework
+.SH "SYNOPSIS"
+.B love
+<\fIgame.love\fR>
+.SH "DESCRIPTION"
+LÖVE was created to be a user\-friendly engine in which simple (or 
complicated) games could be made without having extensive knowledge of system 
or graphics functions and without having to dedicate time towards developing 
the same engine features time and time again.
+.P
+Developed with cross\-platform implementation in mind, it utilizes the latest 
open source libraries to deliver a similar game experience, independent of 
operating system. By relying on the Lua scripting language for game\-specific 
programming, it allows even the novice game creator to quickly and efficiently 
develop an idea into a fully working game.
+.SH "SEE ALSO"
+You can find more information at \fIhttp://love2d.org/\fR or in the local 
directory \fI/usr/share/doc/love\-doc/html/\fR

Deleted: packages/trunk/love/debian/love.1
===================================================================
--- packages/trunk/love/debian/love.1   2010-08-27 04:36:00 UTC (rev 11318)
+++ packages/trunk/love/debian/love.1   2010-08-27 12:47:12 UTC (rev 11319)
@@ -1,23 +0,0 @@
-.\" (c) 2008 Miriam Ruiz <little_m...@yahoo.es>
-.\" 
-.\" This software is provided 'as-is', without any express or implied 
warranty. In no event will the authors be held liable for any damagesarising 
from the use of this software.
-.\" 
-.\" Permission is granted to anyone to use this software for any purpose, 
including commercial applications, and to alter it and redistribute it freely, 
subject to the following restrictions:
-.\" 
-.\"     1. The origin of this software must not be misrepresented; you must 
not claim that you wrote the original software. If you use this software in a 
product, an acknowledgment in the product documentation would be appreciated 
but is not required.
-.\" 
-.\"     2. Altered source versions must be plainly marked as such, and must 
not be misrepresented as being the original software.
-.\" 
-.\"     3. This notice may not be removed or altered from any source 
distribution.
-.TH "LÖVE" "1" "0.4.0" "" ""
-.SH "NAME"
-love \- 2D game development framework
-.SH "SYNOPSIS"
-.B love
-<\fIgame.love\fR>
-.SH "DESCRIPTION"
-LÖVE was created to be a user\-friendly engine in which simple (or 
complicated) games could be made without having extensive knowledge of system 
or graphics functions and without having to dedicate time towards developing 
the same engine features time and time again.
-.P
-Developed with cross\-platform implementation in mind, it utilizes the latest 
open source libraries to deliver a similar game experience, independent of 
operating system. By relying on the Lua scripting language for game\-specific 
programming, it allows even the novice game creator to quickly and efficiently 
develop an idea into a fully working game.
-.SH "SEE ALSO"
-You can find more information at \fIhttp://love2d.org/\fR or in the local 
directory \fI/usr/share/doc/love\-doc/html/\fR

Modified: packages/trunk/love/debian/love.postinst
===================================================================
--- packages/trunk/love/debian/love.postinst    2010-08-27 04:36:00 UTC (rev 
11318)
+++ packages/trunk/love/debian/love.postinst    2010-08-27 12:47:12 UTC (rev 
11319)
@@ -25,6 +25,11 @@
             love \
             /usr/bin/love-0.6 \
            10
+        update-alternatives --quiet --install \
+            /usr/share/man/man1/love.1.gz \
+            love.1.gz \
+            /usr/share/man/man1/love-0.6.1.gz \
+           10
     ;;
 
     abort-upgrade|abort-remove|abort-deconfigure)

Modified: packages/trunk/love/debian/love.prerm
===================================================================
--- packages/trunk/love/debian/love.prerm       2010-08-27 04:36:00 UTC (rev 
11318)
+++ packages/trunk/love/debian/love.prerm       2010-08-27 12:47:12 UTC (rev 
11319)
@@ -22,6 +22,9 @@
         update-alternatives --quiet --remove \
             love \
             /usr/bin/love-0.6
+        update-alternatives --quiet --remove \
+            love.1.gz \
+            /usr/share/man/man1/love-0.6.1.gz
     ;;
 
     failed-upgrade)

Modified: packages/trunk/love/debian/rules
===================================================================
--- packages/trunk/love/debian/rules    2010-08-27 04:36:00 UTC (rev 11318)
+++ packages/trunk/love/debian/rules    2010-08-27 12:47:12 UTC (rev 11319)
@@ -83,6 +83,9 @@
        dh_installdocs -i
        dh_installexamples -i
        dh_install -i
+#      dh_installmenu -i
+       dh_installmime -i
+#      dh_installinfo -i
        dh_link -i
        rm `find $(CURDIR)/debian/love-doc -name "*.sng"`
        dh_compress -i
@@ -103,7 +106,7 @@
 #      dh_installmenu -a
        dh_installmime -a
 #      dh_installinfo -a
-       dh_installman debian/love.1 -a
+       dh_installman debian/love-$(PRG_SUFFIX).1 -a
        dh_link -a
        dh_strip --dbg-package=love-dbg -a
        dh_compress -a


_______________________________________________
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

Reply via email to