Please find attached the diff of the NMU I have just done on kpsk.
-- .''`. Aurelien Jarno | GPG: 1024D/F1BCDB73 : :' : Debian developer | Electrical Engineer `. `' [EMAIL PROTECTED] | [EMAIL PROTECTED] `- people.debian.org/~aurel32 | www.aurel32.net
diff -u kpsk-1.0.1/debian/control kpsk-1.0.1/debian/control --- kpsk-1.0.1/debian/control +++ kpsk-1.0.1/debian/control @@ -2,7 +2,7 @@ Section: hamradio Priority: extra Maintainer: Sebastian Muszynski <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), xutils, kdelibs4-dev, libdb4.2-dev +Build-Depends: debhelper (>= 4.0.0), xutils, kdelibs4-dev, libdb4.2-dev, autotools-dev Standards-Version: 3.6.2.1 Package: kpsk @@ -14,3 +14,3 @@ serial port to control (PTT) the transceiver. It - supports up to 4 simultanous PSK31-QSO and is based + supports up to 4 simultaneous PSK31-QSO and is based on DL9RDZ signal processing routines. diff -u kpsk-1.0.1/debian/rules kpsk-1.0.1/debian/rules --- kpsk-1.0.1/debian/rules +++ kpsk-1.0.1/debian/rules @@ -17,7 +17,10 @@ configure-stamp: dh_testdir # Add here commands to configure the package. - + + cp -f /usr/share/misc/config.guess admin/ + cp -f /usr/share/misc/config.sub admin/ + export kde_htmldir=/usr/share/doc/kde/HTML; \ ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-qt-includes=/usr/include/qt3 --with-qt-libraries=/usr/lib/qt3 --disable-rpath || (cat config.log; exit 1;) @@ -49,6 +52,7 @@ $(MAKE) distclean; \ fi + rm -f admin/config.guess admin/config.sub dh_clean diff -u kpsk-1.0.1/debian/changelog kpsk-1.0.1/debian/changelog --- kpsk-1.0.1/debian/changelog +++ kpsk-1.0.1/debian/changelog @@ -1,3 +1,13 @@ +kpsk (1.0.1-4.1) unstable; urgency=low + + * Porter NMU. + * Fix the description (closes: 364192). + * Update config.guess and config.sub. + * Add GNU/kFreeBSD support to kpsk/modes/psk31-transmitter.C (closes: + 365161). + + -- Aurelien Jarno <[EMAIL PROTECTED]> Sun, 11 Mar 2007 22:27:37 +0100 + kpsk (1.0.1-4) unstable; urgency=low * Updated to Standard-Version 3.6.2.1. only in patch2: unchanged: --- kpsk-1.0.1.orig/kpsk/modes/psk31-transmitter.C +++ kpsk-1.0.1/kpsk/modes/psk31-transmitter.C @@ -11,7 +11,7 @@ #include <errno.h> #include <stdio.h> #include <stdlib.h> -#include <linux/soundcard.h> +#include <sys/soundcard.h> #include <sys/ioctl.h> #include "psk31-coder.h" #include "psk31-transmitter.h"