diff -Nru xjump-2.7.5/debian/changelog xjump-2.7.5/debian/changelog --- xjump-2.7.5/debian/changelog 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/changelog 2012-05-06 06:51:17.000000000 +0000 @@ -1,3 +1,18 @@ +xjump (2.7.5-6.1) unstable; urgency=low + + * Non-maintainer upload; ACKed by the maintainer. + * Remove deprecated dpatch and upgrade to packaging format "3.0 quilt" + (Closes: #668495). + * Update to Standards-Version to 3.9.3 and debhelper to 9. + * Add build-arch and build-indep targets to rules file. + * Fix dh_desktop-is-deprecated (Lintian). + * Fix description-synopsis-starts-with-article (Lintian). + * Fix copyright-refers-to-symlink-license (Lintian). + * Fix maintainer-script-without-set-e *{rm,inst} (Lintian). + * Fix desktop-entry-contains-encoding-key (Lintian). + + -- Jari Aalto Sun, 06 May 2012 09:51:17 +0300 + xjump (2.7.5-6) unstable; urgency=low * Build-depend on x11proto-core-dev instead of deprecated x-dev, diff -Nru xjump-2.7.5/debian/compat xjump-2.7.5/debian/compat --- xjump-2.7.5/debian/compat 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/compat 2012-04-12 09:01:39.000000000 +0000 @@ -1 +1 @@ -7 +9 diff -Nru xjump-2.7.5/debian/control xjump-2.7.5/debian/control --- xjump-2.7.5/debian/control 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/control 2012-04-12 09:03:54.000000000 +0000 @@ -2,13 +2,13 @@ Section: games Priority: optional Maintainer: Samuel Mimram -Build-Depends: debhelper (>= 7.0.0), dpatch, libx11-dev, libxpm-dev, libxt-dev, x11proto-core-dev, libxaw7-dev -Standards-Version: 3.8.0 +Build-Depends: debhelper (>= 9), libx11-dev, libxpm-dev, libxt-dev, x11proto-core-dev, libxaw7-dev +Standards-Version: 3.9.3 Package: xjump Architecture: any -Depends: ${shlibs:Depends} -Description: A jumping game for X +Depends: ${misc:Depends}, ${shlibs:Depends} +Description: jumping game for X The epitome of addictive and pointless games, xjump is simply a game where one jumps from one platform to a higher platform, over and over. If you can't keep up with the pace of jumping, the floor swallows you up and diff -Nru xjump-2.7.5/debian/copyright xjump-2.7.5/debian/copyright --- xjump-2.7.5/debian/copyright 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/copyright 2012-04-12 09:01:39.000000000 +0000 @@ -10,4 +10,4 @@ version without ANY WARRANTIES. For the full terms of the GPL on a Debian/GNU system, please refer to -/usr/share/common-licenses/GPL. +/usr/share/common-licenses/GPL-2. diff -Nru xjump-2.7.5/debian/patches/00list xjump-2.7.5/debian/patches/00list --- xjump-2.7.5/debian/patches/00list 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/patches/00list 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -01_overflow -02_fix_repeat -03_source_warnings -04_makefile_respect_cflags -05_unneded_deps diff -Nru xjump-2.7.5/debian/patches/01_overflow.dpatch xjump-2.7.5/debian/patches/01_overflow.dpatch --- xjump-2.7.5/debian/patches/01_overflow.dpatch 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/patches/01_overflow.dpatch 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -#! /bin/sh -e -## 01_overflow.dpatch by Joshua Kwan -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: fix possible buffer overflow in highscore recording - -if [ $# -ne 1 ]; then - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1 -fi -case "$1" in - -patch) patch -f --no-backup-if-mismatch -p1 < $0;; - -unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;; - *) - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1;; -esac - -exit 0 - ---- a/record.c 1997-11-07 23:41:40.000000000 -0800 -+++ b/record.c 2003-05-26 16:18:23.000000000 -0700 -@@ -122,8 +122,8 @@ - if( i > 0 ) - name[i] = '\0'; - else -- strcpy( name,pw->pw_name ); -- -+ /* Prevent any sort of overflow */ -+ sprintf (name, "%.31s", pw->pw_name); - } - - return name; diff -Nru xjump-2.7.5/debian/patches/01_overflow.patch xjump-2.7.5/debian/patches/01_overflow.patch --- xjump-2.7.5/debian/patches/01_overflow.patch 1970-01-01 00:00:00.000000000 +0000 +++ xjump-2.7.5/debian/patches/01_overflow.patch 2012-04-12 09:01:27.000000000 +0000 @@ -0,0 +1,16 @@ +From: Joshua Kwan +Subject: fix possible buffer overflow in highscore recording + +--- a/record.c 1997-11-07 23:41:40.000000000 -0800 ++++ b/record.c 2003-05-26 16:18:23.000000000 -0700 +@@ -122,8 +122,8 @@ + if( i > 0 ) + name[i] = '\0'; + else +- strcpy( name,pw->pw_name ); +- ++ /* Prevent any sort of overflow */ ++ sprintf (name, "%.31s", pw->pw_name); + } + + return name; diff -Nru xjump-2.7.5/debian/patches/02_fix_repeat.dpatch xjump-2.7.5/debian/patches/02_fix_repeat.dpatch --- xjump-2.7.5/debian/patches/02_fix_repeat.dpatch 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/patches/02_fix_repeat.dpatch 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -#! /bin/sh -e -## 02_fix_repeat.dpatch by Joshua Kwan -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: fix autorepeat. repeat_off overall doesn't really make a -## difference at all. kept simplified due to possible further fixing by -## upstream. - -if [ $# -ne 1 ]; then - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1 -fi -case "$1" in - -patch) patch -f --no-backup-if-mismatch -p1 < $0;; - -unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;; - *) - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1;; -esac - -exit 0 - ---- a/main.c 1999-08-19 20:47:44.000000000 -0700 -+++ b/main.c 2003-05-26 17:17:39.000000000 -0700 -@@ -102,11 +103,13 @@ - - static void repeat_off( void ) - { -+#if 0 - if( Repeat_mode ){ - XGetKeyboardControl( Disp,&Keyboard ); - XAutoRepeatOff( Disp ); - Repeat_mode = 0; - } -+#endif - } - - diff -Nru xjump-2.7.5/debian/patches/02_fix_repeat.patch xjump-2.7.5/debian/patches/02_fix_repeat.patch --- xjump-2.7.5/debian/patches/02_fix_repeat.patch 1970-01-01 00:00:00.000000000 +0000 +++ xjump-2.7.5/debian/patches/02_fix_repeat.patch 2012-04-12 09:01:27.000000000 +0000 @@ -0,0 +1,19 @@ +From: Joshua Kwan +Subject: fix autorepeat. repeat_off overall doesn't really make a + +--- a/main.c 1999-08-19 20:47:44.000000000 -0700 ++++ b/main.c 2003-05-26 17:17:39.000000000 -0700 +@@ -102,11 +103,13 @@ + + static void repeat_off( void ) + { ++#if 0 + if( Repeat_mode ){ + XGetKeyboardControl( Disp,&Keyboard ); + XAutoRepeatOff( Disp ); + Repeat_mode = 0; + } ++#endif + } + + diff -Nru xjump-2.7.5/debian/patches/03_source_warnings.dpatch xjump-2.7.5/debian/patches/03_source_warnings.dpatch --- xjump-2.7.5/debian/patches/03_source_warnings.dpatch 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/patches/03_source_warnings.dpatch 1970-01-01 00:00:00.000000000 +0000 @@ -1,99 +0,0 @@ -#! /bin/sh -e -## 03_source_warnings.dpatch by Joshua Kwan -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: make it work with ircd-hybrid package out of the box, other settings - -if [ $# -ne 1 ]; then - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1 -fi -case "$1" in - -patch) patch -f --no-backup-if-mismatch -p1 < $0;; - -unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;; - *) - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1;; -esac - -exit 0 - ---- a/main.c 1999-08-19 20:47:44.000000000 -0700 -+++ b/main.c 2003-05-26 17:03:55.000000000 -0700 -@@ -7,6 +7,7 @@ - *****************************************/ - - #include -+#include - #include - #include - #include -@@ -479,7 +480,7 @@ - - /* Xlib関係の前処理 */ - --static int init_graph( void ) -+static void init_graph( void ) - { - int x; - ---- a/misc.c 1997-07-21 23:35:31.000000000 -0700 -+++ b/misc.c 2003-05-26 17:01:31.000000000 -0700 -@@ -6,7 +6,9 @@ - (C) July 16, 1997 ROYALPANDA - *****************************************/ - -+#include - #include -+#include - - - /* 乱数 */ ---- a/record.c 2003-05-26 16:38:03.000000000 -0700 -+++ b/record.c 2003-05-26 17:01:56.000000000 -0700 -@@ -7,6 +7,7 @@ - *****************************************/ - - #include -+#include - #include - #include - #include ---- a/game.c 1997-10-28 02:22:50.000000000 -0800 -+++ b/game.c 2003-05-26 17:00:09.000000000 -0700 -@@ -8,6 +8,8 @@ - - #include - #include -+#include -+#include - - #include"xjump.h" - -@@ -26,7 +28,7 @@ - - static void make_floor( int y ) - { -- int f,x1,x2,l,fvec; -+ int f,x1,x2,fvec; - static int fpos = WIDTH/2; - - f = Floor_top - y; -@@ -92,7 +94,7 @@ - - static void scroll_up( void ) - { -- int i,x,width,y; -+ int x,width,y; - - for( y = Floor_top % 5 ; y < HEIGHT ; y += 5 ){ - x = floor_l(y); -@@ -243,7 +245,7 @@ - - void init_game( void ) - { -- int x,y; -+ int y; - - Floor_top = HEIGHT - 4; - diff -Nru xjump-2.7.5/debian/patches/03_source_warnings.patch xjump-2.7.5/debian/patches/03_source_warnings.patch --- xjump-2.7.5/debian/patches/03_source_warnings.patch 1970-01-01 00:00:00.000000000 +0000 +++ xjump-2.7.5/debian/patches/03_source_warnings.patch 2012-04-12 09:01:27.000000000 +0000 @@ -0,0 +1,82 @@ +From: Joshua Kwan +Subject: make it work with ircd-hybrid package out of the box, other settings + +--- a/main.c 1999-08-19 20:47:44.000000000 -0700 ++++ b/main.c 2003-05-26 17:03:55.000000000 -0700 +@@ -7,6 +7,7 @@ + *****************************************/ + + #include ++#include + #include + #include + #include +@@ -479,7 +480,7 @@ + + /* Xlib関係の前処理 */ + +-static int init_graph( void ) ++static void init_graph( void ) + { + int x; + +--- a/misc.c 1997-07-21 23:35:31.000000000 -0700 ++++ b/misc.c 2003-05-26 17:01:31.000000000 -0700 +@@ -6,7 +6,9 @@ + (C) July 16, 1997 ROYALPANDA + *****************************************/ + ++#include + #include ++#include + + + /* 乱数 */ +--- a/record.c 2003-05-26 16:38:03.000000000 -0700 ++++ b/record.c 2003-05-26 17:01:56.000000000 -0700 +@@ -7,6 +7,7 @@ + *****************************************/ + + #include ++#include + #include + #include + #include +--- a/game.c 1997-10-28 02:22:50.000000000 -0800 ++++ b/game.c 2003-05-26 17:00:09.000000000 -0700 +@@ -8,6 +8,8 @@ + + #include + #include ++#include ++#include + + #include"xjump.h" + +@@ -26,7 +28,7 @@ + + static void make_floor( int y ) + { +- int f,x1,x2,l,fvec; ++ int f,x1,x2,fvec; + static int fpos = WIDTH/2; + + f = Floor_top - y; +@@ -92,7 +94,7 @@ + + static void scroll_up( void ) + { +- int i,x,width,y; ++ int x,width,y; + + for( y = Floor_top % 5 ; y < HEIGHT ; y += 5 ){ + x = floor_l(y); +@@ -243,7 +245,7 @@ + + void init_game( void ) + { +- int x,y; ++ int y; + + Floor_top = HEIGHT - 4; + diff -Nru xjump-2.7.5/debian/patches/04_makefile_respect_cflags.dpatch xjump-2.7.5/debian/patches/04_makefile_respect_cflags.dpatch --- xjump-2.7.5/debian/patches/04_makefile_respect_cflags.dpatch 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/patches/04_makefile_respect_cflags.dpatch 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ -#! /bin/sh -e -## 04_makefile_respect_cflags.dpatch by Joshua Kwan -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: make Makefile respect $(CFLAGS) - -if [ $# -ne 1 ]; then - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1 -fi -case "$1" in - -patch) patch -f --no-backup-if-mismatch -p1 < $0;; - -unpatch) patch -f --no-backup-if-mismatch -R -p1 < $0;; - *) - echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" - exit 1;; -esac - -exit 0 - ---- a/Makefile 2003-05-26 16:23:29.000000000 -0700 -+++ b/Makefile 2003-05-26 16:58:24.000000000 -0700 -@@ -1,7 +1,9 @@ - ######################################################## - - # 使用するコンパイラとオプションを指定 --CC = gcc -O2 -+CC = gcc -+ -+CFLAGS = -O2 - - # 標準以外のインクルードファイルのディレクトリを指定 - IDIR = -I/usr/X11R6/include -@@ -28,28 +30,28 @@ - ########################################################## - - xjump : main.o game.o key.o misc.o record.o resource.o -- $(CC) -o xjump \ -+ $(CC) $(CFLAGS) -o xjump \ - main.o game.o key.o misc.o record.o resource.o\ - -lXaw -lXmu -lXt -lXpm -lXext -lX11 $(LDIR) - - main.o : main.c xjump.h record.h \ - picture.xpm icon.xbm icon_msk.xbm Makefile -- $(CC) -c -DRECORD_ENTRY=$(RECORD_ENTRY) main.c $(IDIR) -+ $(CC) $(CFLAGS) -c -DRECORD_ENTRY=$(RECORD_ENTRY) main.c $(IDIR) - - resource.o : resource.c -- $(CC) -c resource.c -+ $(CC) $(CFLAGS) -c resource.c - - game.o : game.c xjump.h -- $(CC) -c game.c $(IDIR) -+ $(CC) $(CFLAGS) -c game.c $(IDIR) - - key.o : key.c xjump.h -- $(CC) -c key.c $(IDIR) -+ $(CC) $(CFLAGS) -c key.c $(IDIR) - - misc.o : misc.c -- $(CC) -c misc.c -+ $(CC) $(CFLAGS) -c misc.c - - record.o : record.c record.h Makefile -- $(CC) -c \ -+ $(CC) $(CFLAGS) -c \ - -DRECORD_ENTRY=$(RECORD_ENTRY) \ - -DRECORD_FILE=\"$(RECORD_FILE)\" \ - record.c diff -Nru xjump-2.7.5/debian/patches/04_makefile_respect_cflags.patch xjump-2.7.5/debian/patches/04_makefile_respect_cflags.patch --- xjump-2.7.5/debian/patches/04_makefile_respect_cflags.patch 1970-01-01 00:00:00.000000000 +0000 +++ xjump-2.7.5/debian/patches/04_makefile_respect_cflags.patch 2012-04-12 09:01:27.000000000 +0000 @@ -0,0 +1,52 @@ +From: Joshua Kwan +Subject: make Makefile respect $(CFLAGS) + +--- a/Makefile 2003-05-26 16:23:29.000000000 -0700 ++++ b/Makefile 2003-05-26 16:58:24.000000000 -0700 +@@ -1,7 +1,9 @@ + ######################################################## + + # 使用するコンパイラとオプションを指定 +-CC = gcc -O2 ++CC = gcc ++ ++CFLAGS = -O2 + + # 標準以外のインクルードファイルのディレクトリを指定 + IDIR = -I/usr/X11R6/include +@@ -28,28 +30,28 @@ + ########################################################## + + xjump : main.o game.o key.o misc.o record.o resource.o +- $(CC) -o xjump \ ++ $(CC) $(CFLAGS) -o xjump \ + main.o game.o key.o misc.o record.o resource.o\ + -lXaw -lXmu -lXt -lXpm -lXext -lX11 $(LDIR) + + main.o : main.c xjump.h record.h \ + picture.xpm icon.xbm icon_msk.xbm Makefile +- $(CC) -c -DRECORD_ENTRY=$(RECORD_ENTRY) main.c $(IDIR) ++ $(CC) $(CFLAGS) -c -DRECORD_ENTRY=$(RECORD_ENTRY) main.c $(IDIR) + + resource.o : resource.c +- $(CC) -c resource.c ++ $(CC) $(CFLAGS) -c resource.c + + game.o : game.c xjump.h +- $(CC) -c game.c $(IDIR) ++ $(CC) $(CFLAGS) -c game.c $(IDIR) + + key.o : key.c xjump.h +- $(CC) -c key.c $(IDIR) ++ $(CC) $(CFLAGS) -c key.c $(IDIR) + + misc.o : misc.c +- $(CC) -c misc.c ++ $(CC) $(CFLAGS) -c misc.c + + record.o : record.c record.h Makefile +- $(CC) -c \ ++ $(CC) $(CFLAGS) -c \ + -DRECORD_ENTRY=$(RECORD_ENTRY) \ + -DRECORD_FILE=\"$(RECORD_FILE)\" \ + record.c diff -Nru xjump-2.7.5/debian/patches/05_unneded_deps.dpatch xjump-2.7.5/debian/patches/05_unneded_deps.dpatch --- xjump-2.7.5/debian/patches/05_unneded_deps.dpatch 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/patches/05_unneded_deps.dpatch 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 05_unneded_deps.dpatch by Samuel Mimram -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Remove unneeded dependencies on Xmu and Xext. - -@DPATCH@ -diff -urNad xjump-2.7.5~/Makefile xjump-2.7.5/Makefile ---- a/Makefile 2006-09-28 20:10:56.000000000 +0000 -+++ b/Makefile 2006-09-28 20:11:08.000000000 +0000 -@@ -32,7 +32,7 @@ - xjump : main.o game.o key.o misc.o record.o resource.o - $(CC) $(CFLAGS) -o xjump \ - main.o game.o key.o misc.o record.o resource.o\ -- -lXaw -lXmu -lXt -lXpm -lXext -lX11 $(LDIR) -+ -lXaw -lXt -lXpm -lX11 $(LDIR) - - main.o : main.c xjump.h record.h \ - picture.xpm icon.xbm icon_msk.xbm Makefile diff -Nru xjump-2.7.5/debian/patches/05_unneded_deps.patch xjump-2.7.5/debian/patches/05_unneded_deps.patch --- xjump-2.7.5/debian/patches/05_unneded_deps.patch 1970-01-01 00:00:00.000000000 +0000 +++ xjump-2.7.5/debian/patches/05_unneded_deps.patch 2012-04-12 09:01:27.000000000 +0000 @@ -0,0 +1,15 @@ +From: Samuel Mimram +Subject: Remove unneeded dependencies on Xmu and Xext. + +diff -urNad xjump-2.7.5~/Makefile xjump-2.7.5/Makefile +--- a/Makefile 2006-09-28 20:10:56.000000000 +0000 ++++ b/Makefile 2006-09-28 20:11:08.000000000 +0000 +@@ -32,7 +32,7 @@ + xjump : main.o game.o key.o misc.o record.o resource.o + $(CC) $(CFLAGS) -o xjump \ + main.o game.o key.o misc.o record.o resource.o\ +- -lXaw -lXmu -lXt -lXpm -lXext -lX11 $(LDIR) ++ -lXaw -lXt -lXpm -lX11 $(LDIR) + + main.o : main.c xjump.h record.h \ + picture.xpm icon.xbm icon_msk.xbm Makefile diff -Nru xjump-2.7.5/debian/patches/series xjump-2.7.5/debian/patches/series --- xjump-2.7.5/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ xjump-2.7.5/debian/patches/series 2012-04-12 09:01:25.000000000 +0000 @@ -0,0 +1,5 @@ +01_overflow.patch +02_fix_repeat.patch +03_source_warnings.patch +04_makefile_respect_cflags.patch +05_unneded_deps.patch diff -Nru xjump-2.7.5/debian/postinst xjump-2.7.5/debian/postinst --- xjump-2.7.5/debian/postinst 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/postinst 2012-04-12 09:05:45.000000000 +0000 @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e if [ "$1" = configure ]; then if test -f /var/lib/games/xjump/record; then diff -Nru xjump-2.7.5/debian/postrm xjump-2.7.5/debian/postrm --- xjump-2.7.5/debian/postrm 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/postrm 2012-04-12 09:05:56.000000000 +0000 @@ -1,4 +1,6 @@ -#!/bin/sh -e +#!/bin/sh + +set -e case "$1" in purge) diff -Nru xjump-2.7.5/debian/prerm xjump-2.7.5/debian/prerm --- xjump-2.7.5/debian/prerm 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/prerm 2012-04-12 09:06:12.000000000 +0000 @@ -1,4 +1,7 @@ -#!/bin/sh -e +#!/bin/sh + +set -e + # Work around having to repackage the source by using a blank prerm exit 0 diff -Nru xjump-2.7.5/debian/rules xjump-2.7.5/debian/rules --- xjump-2.7.5/debian/rules 2012-05-24 22:26:41.000000000 +0000 +++ xjump-2.7.5/debian/rules 2012-04-12 09:10:13.000000000 +0000 @@ -1,14 +1,17 @@ #!/usr/bin/make -f # Rewritten debian/rules for xjump by Joshua Kwan -include /usr/share/dpatch/dpatch.make -build: patch + +build-arch: build +build-indep: build + +build: dh_testdir make CFLAGS="-O2 -g -Wall" touch build -clean: unpatch +clean: dh_testroot dh_testdir make clean @@ -25,6 +28,8 @@ cp debian/themes/* debian/xjump/usr/share/games/xjump/ for i in debian/xjump/usr/share/games/xjump/*; do gzip -9 $$i; done cp debian/xjump.desktop debian/xjump/usr/share/applications/ + # Encoding is by default UTF-8 + sed -i '/Encoding=/d' debian/xjump/usr/share/applications/xjump.desktop binary-indep: dh_testdir @@ -36,7 +41,7 @@ dh_installman debian/xjump.6 dh_installchangelogs dh_installmenu - dh_desktop +# dh_desktop dh_link dh_strip dh_compress diff -Nru xjump-2.7.5/debian/source/format xjump-2.7.5/debian/source/format --- xjump-2.7.5/debian/source/format 1970-01-01 00:00:00.000000000 +0000 +++ xjump-2.7.5/debian/source/format 2012-05-24 22:26:41.000000000 +0000 @@ -0,0 +1 @@ +3.0 (quilt)