Author: francois
Date: 2008-06-03 02:20:25 +0000 (Tue, 03 Jun 2008)
New Revision: 7218

Modified:
   packages/trunk/jumpnbump/debian/changelog
   packages/trunk/jumpnbump/debian/dirs
   packages/trunk/jumpnbump/debian/jumpnbump.6
   packages/trunk/jumpnbump/debian/rules
Log:
Move utilities to /usr/lib/jumpnbump


Modified: packages/trunk/jumpnbump/debian/changelog
===================================================================
--- packages/trunk/jumpnbump/debian/changelog   2008-06-03 02:12:35 UTC (rev 
7217)
+++ packages/trunk/jumpnbump/debian/changelog   2008-06-03 02:20:25 UTC (rev 
7218)
@@ -1,10 +1,11 @@
-jumpnbump (1.50-12) UNRELEASED; urgency=low
+jumpnbump (1.50-12) unstable; urgency=low
 
   * Fix vcs-browser field to refer to the right package
   * Bump debhelper compatibility to 6
   * Removed the watch file
+  * Move utilities to /usr/lib/jumpnbump and update manpage
 
- -- Francois Marier <[EMAIL PROTECTED]>  Tue, 03 Jun 2008 14:17:30 +1200
+ -- Francois Marier <[EMAIL PROTECTED]>  Tue, 03 Jun 2008 14:25:36 +1200
 
 jumpnbump (1.50-11) unstable; urgency=low
 

Modified: packages/trunk/jumpnbump/debian/dirs
===================================================================
--- packages/trunk/jumpnbump/debian/dirs        2008-06-03 02:12:35 UTC (rev 
7217)
+++ packages/trunk/jumpnbump/debian/dirs        2008-06-03 02:20:25 UTC (rev 
7218)
@@ -1,4 +1,5 @@
 usr/games
+usr/lib/jumpnbump
 usr/share/applications
 usr/share/games/jumpnbump
 usr/share/pixmaps

Modified: packages/trunk/jumpnbump/debian/jumpnbump.6
===================================================================
--- packages/trunk/jumpnbump/debian/jumpnbump.6 2008-06-03 02:12:35 UTC (rev 
7217)
+++ packages/trunk/jumpnbump/debian/jumpnbump.6 2008-06-03 02:20:25 UTC (rev 
7218)
@@ -85,39 +85,40 @@
   lordoftheflies - the flies are attracted
   bloodisthickerthanwater - water turns to blood
 .SH LEVELS
-There are two programs to help you make your own levels: jumpnbump-pack and 
jumpnbump-unpack.
-.IP jumpnbump-pack
+There are two programs in /usr/lib/jumpnbump to help you make
+your own levels: pack and unpack.
+.IP pack
 .br
-jumpnbump-pack -o /tmp/newlevel.dat <file1> <file2> <file3> ...
+/usr/lib/jumpnbump/pack -o /tmp/newlevel.dat <file1> <file2> <file3> ...
 .br
 or you can just put all the files in a dir, cd to
 that dir and do
 .br
-jumpnbump-pack -o /tmp/newlevel.dat *
+/usr/lib/jumpnbump/pack -o /tmp/newlevel.dat *
 .br 
 and it will put all the files
 in the current dir inside the packfile. Don't try things like 
-jumpnbump-pack -o stuff.dat ../file.c because it will add ../file.c as the 
filename in the packfile, which won't work.
+pack -o stuff.dat ../file.c because it will add ../file.c as the filename in 
the packfile, which won't work.
 .br
-.IP jumpnbump-unpack
+.IP unpack
 .br
-jumpnbump-unpack level.dat
+/usr/lib/jumpnbump/unpack level.dat
 .br
 will unpack it in the current directory.
-.IP jumpnbump-gobpack
+.IP gobpack
 .br
-With jumpnbump-gobpack you can convert .gob files (which are sprites, 
+With gobpack you can convert .gob files (which are sprites, 
 described in /usr/share/doc/jumpnbump/gob.txt) into .pcx files 
 which you can edit with The Gimp for example, then convert back 
 to a .gob and use it in your own level.
 .br
-jumpnbump-gobpack -u font menu.pcx
+/usr/lib/jumpnbump/gobpack -u font menu.pcx
 .br
 will unpack font.gob using the color palette from menu.pcx and 
 write the files font.pcx font.txt. The other gob files should 
 use level.pcx for the correct palette.
 .br
-jumpnbump-gobpack font
+/usr/lib/jumpnbump/gobpack font
 .br
 will generate font.gob from font.pcx and the specifications 
 in font.txt. The .pcx files should be resaved with another 

Modified: packages/trunk/jumpnbump/debian/rules
===================================================================
--- packages/trunk/jumpnbump/debian/rules       2008-06-03 02:12:35 UTC (rev 
7217)
+++ packages/trunk/jumpnbump/debian/rules       2008-06-03 02:20:25 UTC (rev 
7218)
@@ -16,7 +16,6 @@
        dh_testdir
 
        $(MAKE) PREFIX=/usr all data
-       #/usr/bin/docbook-to-man debian/jumpnbump.sgml > jumpnbump.1
 
        touch build-stamp
 
@@ -25,7 +24,6 @@
        dh_testroot
        rm -f build-stamp configure-stamp
 
-       # Add here commands to clean up after the build process.
        [ ! -f Makefile ] || $(MAKE) clean
        rm -f data/font.gob
 
@@ -37,13 +35,12 @@
        dh_clean -k
        dh_installdirs
 
-       # Add here commands to install the package into debian/jumpnbump.
        install -o root -g root -m 755 jumpnbump 
$(CURDIR)/debian/jumpnbump/usr/games/jumpnbump
        install -o root -g root -m 755 jumpnbump.svgalib 
$(CURDIR)/debian/jumpnbump/usr/games/jumpnbump.svgalib
        install -o root -g root -m 755 jumpnbump.fbcon 
$(CURDIR)/debian/jumpnbump/usr/games/jumpnbump.fbcon
-       install -o root -g root -m 755 jnbpack 
$(CURDIR)/debian/jumpnbump/usr/bin/jumpnbump-pack
-       install -o root -g root -m 755 jnbunpack 
$(CURDIR)/debian/jumpnbump/usr/bin/jumpnbump-unpack
-       install -o root -g root -m 755 gobpack 
$(CURDIR)/debian/jumpnbump/usr/bin/jumpnbump-gobpack
+       install -o root -g root -m 755 jnbpack 
$(CURDIR)/debian/jumpnbump/usr/lib/jumpnbump/pack
+       install -o root -g root -m 755 jnbunpack 
$(CURDIR)/debian/jumpnbump/usr/lib/jumpnbump/unpack
+       install -o root -g root -m 755 gobpack 
$(CURDIR)/debian/jumpnbump/usr/lib/jumpnbump/gobpack
        install -o root -g root -m 755 -d 
$(CURDIR)/debian/jumpnbump/usr/share/games/jumpnbump
        install -o root -g root -m 644 debian/jumpnbump.xpm 
$(CURDIR)/debian/jumpnbump/usr/share/pixmaps/jumpnbump.xpm
        install -o root -g root -m 644 debian/jumpnbump.desktop 
$(CURDIR)/debian/jumpnbump/usr/share/applications/jumpnbump.desktop


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

Reply via email to