--- kwave-0.8.0.orig/debian/rules +++ kwave-0.8.0/debian/rules @@ -0,0 +1,116 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CFLAGS += -g +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +include /usr/share/quilt/quilt.make + +build: patch build-stamp + +build-stamp: + dh_testdir + + -test -r /usr/share/misc/config.sub && \ + cp -f /usr/share/misc/config.sub admin/config.sub + -test -r /usr/share/misc/config.guess && \ + cp -f /usr/share/misc/config.guess admin/config.guess + mkdir build + cd build && cmake -DWITH_GSL=OFF .. +# QTDIR=/usr/share/qt3 CONFIGURE_OPTS="--host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) $(configkde)" $(MAKE) -f Makefile.dist + cd build && $(MAKE) + touch build-stamp + +clean: debian-clean unpatch + dh_clean + +debian-clean: + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) clean + -rm -rf build + -rm -f debian/debiandirs + -rm -f *-stamp + -rm -f admin/config.sub admin/config.guess + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Install overrides. + install -m 644 $(CURDIR)/debian/overrides $(CURDIR)/debian/kwave/usr/share/lintian/overrides/kwave + + # Install icon + install -m 644 $(CURDIR)/kwave/pics/kwave.xpm $(CURDIR)/debian/kwave/usr/share/pixmaps + + # Main install. + cd build && $(MAKE) install DESTDIR=$(CURDIR)/debian/kwave + + # Remove .la files + rm -f $(CURDIR)/debian/kwave/usr/lib/*.la + + # Remove shlib symlinks + for i in kwave kwavegui ; do \ + for j in so so.0 ; do \ + $(RM) $(CURDIR)/debian/kwave/usr/lib/lib$$i.$$j ;\ + done ;\ + done + mv $(CURDIR)/debian/kwave/usr/lib/libkwave.so.0.* $(CURDIR)/debian/kwave/usr/lib/libkwave.so.0 + mv $(CURDIR)/debian/kwave/usr/lib/libkwavegui.so.0.* $(CURDIR)/debian/kwave/usr/lib/libkwavegui.so.0 + + # Make common links for docs. + for i in `find $(CURDIR)/debian/kwave/usr/share/doc/kde4/HTML -type d -name kwave -not -regex .*/en/kwave`; do \ + ln -f -n -s ../../en/common $$i/common ; done + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs +# dh_installexamples + dh_installmenu + test -x /usr/bin/dh_iconcache && dh_iconcache || : +# dh_installlogrotate +# dh_installemacsen +# dh_installpam + dh_installmime +# dh_installinit +# dh_installcron + dh_installman +# dh_installinfo + dh_installchangelogs CHANGES + dh_link + dh_strip /usr/share/apps/kwave/plugins + dh_compress --exclude=.docbook + dh_fixperms + dh_makeshlibs + dh_installdeb + dh_perl + dh_shlibdeps /usr/share/apps/kwave/plugins + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- kwave-0.8.0.orig/debian/control +++ kwave-0.8.0/debian/control @@ -0,0 +1,30 @@ +Source: kwave +Section: kde +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Bertrand Songis +Build-Depends: debhelper (>> 4.0), automake1.7, autoconf, autotools-dev, imagemagick, recode, textutils, libid3-3.8.3-dev (>= 3.8.3-4.2), libaudiofile-dev, libogg-dev, libvorbis-dev (>= 1.0.0-2), libflac++-dev (>= 1.2.1), libmad0-dev, libgsl0-dev, kdemultimedia-dev (>= 4:4.1.2), poxml, debianutils (>= 1.13.1), quilt, cmake, libgsl0-dev +Standards-Version: 3.8.0 +Homepage: http://kwave.sourceforge.net + +Package: kwave +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: kwave-doc-en, kwave-doc-de, kwave-doc-fr +Provides: kwave-doc, kwave-doc-en, kwave-doc-de, kwave-doc-fr +Description: sound editor for KDE + "Kwave" is a simple sound editor for KDE. Its features include: + * simple cut, copy and paste functions + * undo/redo + * simple filter design tools + * a small editor for additive synthesis + * labeling of signals + * some analysis functions such as Sonagram or Fourier Transformation + * internally uses 24 bit integer sample data + * free selectable sample rates + * support for editing of multi-channel files + * playback of multi-channel audio files (audio output will be mixed + down to mono or stereo) + * extensible through an easy-to-use plugin interface + . + Author: Thomas Eschenbacher --- kwave-0.8.0.orig/debian/menu +++ kwave-0.8.0/debian/menu @@ -0,0 +1,9 @@ +?package(kwave): \ + needs="X11" \ + section="Applications/Sound" \ + hints="KDE" \ + kderemove="y" \ + title="Kwave" \ + description="A sound editor for KDE" \ + command="/usr/bin/kwave" \ + icon="/usr/share/pixmaps/kwave.xpm" --- kwave-0.8.0.orig/debian/manpages +++ kwave-0.8.0/debian/manpages @@ -0,0 +1 @@ +debian/kwave.1 --- kwave-0.8.0.orig/debian/mime +++ kwave-0.8.0/debian/mime @@ -0,0 +1,8 @@ +audio/basic; kwave %s; test=test "$DISPLAY" != ""; description="ULAW (Sun) audio" +audio/x-aiff; kwave %s; test=test "$DISPLAY" != ""; description="AIFF/Amiga audio" +audio/x-mp1; kwave %s; test=test "$DISPLAY" != ""; description="MPEG layer 1 audio" +audio/x-mp2; kwave %s; test=test "$DISPLAY" != ""; description="MPEG layer 2 audio" +audio/x-mp3; kwave %s; test=test "$DISPLAY" != ""; description="MPEG layer 3 audio" +audio/x-wav; kwave %s; test=test "$DISPLAY" != ""; description="Waveform Microsoft Wave/RIFF" +audio/x-ircam; kwave %s; test=test "$DISPLAY" != ""; description="Compressed Audio Interchange Format" +audio/ogg; kwave %s; test=test "$DISPLAY" != ""; description="Ogg Vorbis multimedia format" --- kwave-0.8.0.orig/debian/dirs +++ kwave-0.8.0/debian/dirs @@ -0,0 +1,2 @@ +usr/share/pixmaps +usr/share/lintian/overrides --- kwave-0.8.0.orig/debian/compat +++ kwave-0.8.0/debian/compat @@ -0,0 +1 @@ +4 --- kwave-0.8.0.orig/debian/overrides +++ kwave-0.8.0/debian/overrides @@ -0,0 +1,4 @@ +# KDE menu +kwave: menu-item-contains-unknown-tag kderemove /usr/share/menu/kwave:9 +kwave: package-name-doesnt-match-sonames libkwavegui0 libkwave0 + --- kwave-0.8.0.orig/debian/docs +++ kwave-0.8.0/debian/docs @@ -0,0 +1,2 @@ +README +TODO --- kwave-0.8.0.orig/debian/kwave.1 +++ kwave-0.8.0/debian/kwave.1 @@ -0,0 +1,65 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH KWAVE 1 "April 7, 2002" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +kwave \- A sound editor for KDE2 +.SH SYNOPSIS +.B kwave +.RI [ options ] " files" ... +.SH DESCRIPTION +"Kwave" is a simple sound editor for KDE2. Its features include: + * simple cut, copy and paste functions + * undo/redo + * simple filter design tools + * a small editor for additive synthesis + * labeling of signals + * some analysis functions such as Sonagram or Fourier Transformation + * internally uses 24 bit integer sample data + * free selectable sample rates + * support for editing of multi-channel files + * playback of multi-channel audio files (audio output will be mixed down to mono or stereo) + * extendible through an easy-to-use plugin interface + +.SH OPTIONS +A summary of options are included below. +.TP +.B \-\-help +Show summary of options. +.TP +.B \-\-help\-qt +Show Qt specific options +.TP +.B \-\-help\-kde +Show KDE specific options +.TP +.B \-\-help\-all +Show all options +.TP +.B \-\-author +Show author information +.TP +.B \-v, \-\-version +Show version of program. +.TP +.B \-\-license +Show license information +.SH AUTHOR +.B Kwave +was written by Thomas Eschenbacher . +.br +This manual page was written by Aurelien Jarno , +for the Debian GNU/Linux system (but may be used by others). --- kwave-0.8.0.orig/debian/changelog +++ kwave-0.8.0/debian/changelog @@ -0,0 +1,514 @@ +kwave (0.8.0-0ubuntu1) intrepid; urgency=low + + * New Upstream version (closes LP: #271630 and LP: #258667) + + -- Fabrice Coutadeur Sat, 04 Oct 2008 09:03:50 +0000 + +kwave (0.7.10-1.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/rules: + + Fix bashism (Closes: #459104). + * debian/control: + + Bump Standards-Version to 3.7.3 (no changes needed). + + Add Homepage field. + * debian/menu: + + Change Apps to Applications. + + -- Marco Rodrigues Thu, 24 Jan 2008 20:43:49 +0000 + +kwave (0.7.10-1) unstable; urgency=low + + * New upstream version. + * New maintainer (closes: #393172). + + -- Bertrand Songis Mon, 27 Aug 2007 15:14:39 +0200 + +kwave (0.7.7-3) unstable; urgency=low + + * QA upload. + * Add in dpatch. + * Re-run aclocal and autoconf after patching. + * Run dh_iconcache if it exists. + * Add a hand-picked patch from upstream SVN to fix FTBFS. + (Closes: #426668, #427747, #431199) + + -- Steve Kowalik Sun, 8 Jul 2007 19:22:58 +1000 + +kwave (0.7.7-2) unstable; urgency=low + + * Orphaning this package, setting maintainer field to + packages@qa.debian.org. + + -- Aurelien Jarno Sun, 15 Oct 2006 02:28:59 +0200 + +kwave (0.7.7-1) unstable; urgency=low + + * New upstream version. + + -- Aurelien Jarno Tue, 19 Sep 2006 17:14:56 +0200 + +kwave (0.7.6-1) unstable; urgency=low + + * New upstream version: + - Fix detection of recording devices when kwave is started for the first + time or if a recording device is removed from the system (closes: bug# + 351533). + - Sampling rate in record mode is now fixed (closes: #365771). + * Bumped Standards-Version to 3.7.2 (no changes). + + -- Aurelien Jarno Tue, 6 Jun 2006 01:30:51 +0200 + +kwave (0.7.5-2) unstable; urgency=low + + * Simple rebuild against KDE 3.5.1, as it seems one of the libraries + of KDE 3.5.1 is not compatible with the KDE 3.4.3 version + (closes: bug#351533). + + -- Aurelien Jarno Sun, 5 Feb 2006 17:21:31 +0100 + +kwave (0.7.5-1) unstable; urgency=low + + * New upstream version. + + -- Aurelien Jarno Tue, 3 Jan 2006 11:29:36 +0100 + +kwave (0.7.4-2) unstable; urgency=low + + * Build with g++-4.0 now that c++/21123 is fixed (closes: bug#343001). + + -- Aurelien Jarno Mon, 12 Dec 2005 03:48:06 +0100 + +kwave (0.7.4-1) unstable; urgency=low + + * New upstream version. + + -- Aurelien Jarno Sun, 16 Oct 2005 20:02:34 +0200 + +kwave (0.7.3-6) unstable; urgency=low + + * Build-dep on g++-3.4 on arm, hppa and m68k. + + -- Aurelien Jarno Wed, 5 Oct 2005 17:58:45 +0200 + +kwave (0.7.3-5) unstable; urgency=low + + * x86_64 processors always have the cpuid instruction, so don't check + for it (closes: bug#327501). + + -- Aurelien Jarno Tue, 13 Sep 2005 18:51:44 +0200 + +kwave (0.7.3-4) unstable; urgency=low + + * Added a patch to make Kwave buildable on GNU/kFreeBSD. + + -- Aurelien Jarno Wed, 7 Sep 2005 20:13:45 +0200 + +kwave (0.7.3-3) unstable; urgency=low + + * C++ transition: tightened build-dependency on libflac++-dev, + kdemultimedia-dev, libid3-3.8.3-dev (closes: bug#325943). + * Pulled a patch from CVS to support new libFLAC++ 1.1.2 API. + * Pulled a patch from CVS to support amd64 with gcc-4.0. + * Bumped Standards-Version to 3.6.2 (no changes). + + -- Aurelien Jarno Sun, 4 Sep 2005 01:11:41 +0200 + +kwave (0.7.3-2) unstable; urgency=low + + * Fixed German translations (closes: bug#313790, bug#314000). + + -- Aurelien Jarno Thu, 16 Jun 2005 15:06:53 +0200 + +kwave (0.7.3-1) unstable; urgency=low + + * New upstream version. + + -- Aurelien Jarno Fri, 3 Jun 2005 19:30:11 +0200 + +kwave (0.7.2-5) unstable; urgency=low + + * Fix an FTBFS with gcc-4.0. Thanks to Andreas Jochens for the patch + (closes: bug#298474) . + + -- Aurelien Jarno Mon, 7 Mar 2005 21:37:27 +0100 + +kwave (0.7.2-4) unstable; urgency=high + + * Call aclocal-1.7 instead of automake-1.7 in Makefile.dist (closes: + bug#294525). + + -- Aurelien Jarno Thu, 10 Feb 2005 08:15:40 +0100 + +kwave (0.7.2-3) unstable; urgency=high + + * Rebuilt against libflac++-dev (>= 1.1.1-3) and kdemultimedia + (>= 3.3.1-2) (Closes: bug#289953). + + -- Aurelien Jarno Fri, 14 Jan 2005 08:37:22 +0100 + +kwave (0.7.2-2) unstable; urgency=low + + * Added a patch from Kurt Roeckx to fix build on amd64 arches. Thanks + (closes: bug#288781). + + -- Aurelien Jarno Wed, 5 Jan 2005 18:30:15 +0100 + +kwave (0.7.2-1) unstable; urgency=low + + * New upstream version. + + -- Aurelien Jarno Sun, 2 Jan 2005 01:07:10 +0100 + +kwave (0.7.1-1) unstable; urgency=low + + * New upstream version. + + -- Aurelien Jarno Sun, 11 Jul 2004 01:11:22 +0200 + +kwave (0.7.0-1-4) unstable; urgency=low + + * Fixed acinclude.m4 (closes: bug#244149). + + -- Aurelien Jarno Sat, 1 May 2004 11:16:04 +0200 + +kwave (0.7.0-1-3) unstable; urgency=low + + * Libtool update (closes: bug#244149). + + -- Aurelien Jarno Sat, 17 Apr 2004 02:12:41 +0200 + +kwave (0.7.0-1-2) unstable; urgency=low + + * Fixed mcopidl flags (closes: bug#243199). + + -- Aurelien Jarno Tue, 13 Apr 2004 17:24:44 +0200 + +kwave (0.7.0-1-1) unstable; urgency=low + + * New upstream version. + * Bumped Standards-Version to 3.6.1 (no changes). + + -- Aurelien Jarno Fri, 5 Dec 2003 00:09:13 +0100 + +kwave (0.6.7-2) unstable; urgency=low + + * Run automake-1.6 and autoconf-1.6 instead of automake and autoconf to + avoid calling another version if it is installed. + + -- Aurelien Jarno Tue, 1 Jul 2003 17:03:10 +0200 + +kwave (0.6.7-1) unstable; urgency=low + + * New upstream version. + * Bumped Standards-Version to 3.5.10. + + -- Aurelien Jarno Sun, 29 Jun 2003 16:01:18 +0200 + +kwave (0.6.6-6) unstable; urgency=low + + * Changed mime type of Ogg bitstream to application/ogg conforming + to RF3534. + + -- Aurelien Jarno Sun, 18 May 2003 17:43:04 +0200 + +kwave (0.6.6-5) unstable; urgency=low + + * Bumped Standards-Version to 3.5.9. + * Changed section from x11 to kde. + + -- Aurelien Jarno Sat, 19 Apr 2003 15:09:24 +0200 + +kwave (0.6.6-4) unstable; urgency=low + + * Fixed the link /usr/share/doc/kde/HTML/{fr,de}/kwave/common + (closes: bug#186170). + + -- Aurelien Jarno Tue, 25 Mar 2003 02:36:02 +0100 + +kwave (0.6.6-3) unstable; urgency=low + + * Rebuild against new libvorbis0a package. + + -- Aurelien Jarno Wed, 12 Mar 2003 23:46:23 +0100 + +kwave (0.6.6-2) unstable; urgency=low + + * Don't depend on both xlibs (>> 4.1.0) and xlibs (>> 4.2.0). + * Depends on ${misc:Depends}. + * Uses autotools-dev to update config.{guess,sub}. + * Uses debian/compat instead of DH_COMPAT. + + -- Aurelien Jarno Thu, 6 Mar 2003 11:49:18 +0100 + +kwave (0.6.6-1) unstable; urgency=low + + * New upstream version. + + -- Aurelien Jarno Sun, 2 Mar 2003 01:25:59 +0100 + +kwave (0.6.5-9) unstable; urgency=low + + * Removed icons from /usr/share/kwave + * Used system libmad, linked dynamically. + * Fixed a typo in the description. + * Added Author and Homepage to the description. + + -- Aurelien Jarno Sun, 23 Feb 2003 18:35:46 +0100 + +kwave (0.6.5-8) unstable; urgency=low + + * Build-depends on libqt3-compat-headers (closes: bug#181658). + * Linked libid3, libogg and libvorbis dynamically. + + -- Aurelien Jarno Fri, 21 Feb 2003 16:39:38 +0100 + +kwave (0.6.5-7) unstable; urgency=low + + * Fixed a bug added by the previous patch. + + -- Aurelien Jarno Fri, 14 Feb 2003 09:56:32 +0100 + +kwave (0.6.5-6) unstable; urgency=low + + * Automatically start the aRts daemon if it is not running + (closes: bug#180351). + + -- Aurelien Jarno Mon, 10 Feb 2003 00:28:11 +0100 + +kwave (0.6.5-5) unstable; urgency=low + + * Lowered the build-depency on poxml as it also works with poxml 2.2. + + -- Aurelien Jarno Sun, 9 Feb 2003 12:12:12 +0100 + +kwave (0.6.5-4) unstable; urgency=low + + * Build Kwave's libmad with -fPIC. + + -- Aurelien Jarno Sun, 9 Feb 2003 02:58:51 +0100 + +kwave (0.6.5-3) unstable; urgency=low + + * Pulled some .ui files from CVS. + * Built with system libaudiofile instead of builtin libaudiofile. + + -- Aurelien Jarno Sat, 8 Feb 2003 11:21:36 +0100 + +kwave (0.6.5-2) unstable; urgency=low + + * Fixed plugins/about/KwaveAboutDialogBase.ui + + -- Aurelien Jarno Sat, 8 Feb 2003 03:35:58 +0100 + +kwave (0.6.5-1) unstable; urgency=low + + * New upstream version. + Changelog: + - MP3 import with ID3 tag support + - Ogg/Vorbis import and export (only ABR mode) + - new plugin "volume" + - show selected range as time + - support for saving compressed .wav files + - playback plugin: enabled the "select..." button for choosing + other playback devices + * Built for KDE 3.1. + + -- Aurelien Jarno Wed, 5 Feb 2003 23:35:47 +0100 + +kwave (0.6.4-3-8) unstable; urgency=low + + * Fixed char signedness in libgui/OverViewCache.cpp (closes: #177398). + + -- Aurelien Jarno Sun, 19 Jan 2003 13:45:43 +0100 + +kwave (0.6.4-3-7) unstable; urgency=low + + * Force build with gcc-2.95 on most archs, gcc-2.96 on ia64 and gcc-3.0 + on hppa. + + -- Aurelien Jarno Wed, 8 Jan 2003 18:22:31 +0100 + +kwave (0.6.4-3-6) unstable; urgency=low + + * Fixed description + * Changed icon to 24 colors to follow the menu policy. + * Standard version bumped to 3.5.8 + + -- Aurelien Jarno Fri, 20 Dec 2002 13:38:18 +0100 + +kwave (0.6.4-3-5) unstable; urgency=low + + * Change Build-Depency from nas-dev to libaudio-dev as the package name + changed. + + -- Aurelien Jarno Thu, 7 Nov 2002 07:20:06 +0100 + +kwave (0.6.4-3-4) unstable; urgency=low + + * Updated admin directory from ftp.gnu.org. Should now build on mipsel. + + -- Aurelien Jarno Sat, 2 Nov 2002 22:00:54 +0100 + +kwave (0.6.4-3-3) unstable; urgency=low + + * Configure script don't fail anymore on warnings when checking for + artsflow.idl (closes: bug#166791). + + -- Aurelien Jarno Wed, 30 Oct 2002 23:55:13 +0100 + +kwave (0.6.4-3-2) unstable; urgency=low + + * Build-Depends on autoconf2.13 instead of autoconf (closes: + bug#166597). + * Updated Policy standard compliance to 3.5.7 + + -- Aurelien Jarno Mon, 28 Oct 2002 13:52:18 +0100 + +kwave (0.6.4-3-1) unstable; urgency=low + + * New upstream version. + Changelog: + - Update of the French translation and documentation. + * Fix a bug with KDE 2.2 causes a very long starting delay. + * Removed the patch concerning a KDE 2.2 as it is included in upstream. + * Removed .la files in /usr/lib + + -- Aurelien Jarno Thu, 11 Jul 2002 22:47:45 +0200 + +kwave (0.6.4-1-2) unstable; urgency=low + + * Added textutils to Build-Depends (fix build error on hppa and mipsel). + + -- Aurelien Jarno Sat, 6 Jul 2002 19:49:11 +0200 + +kwave (0.6.4-1-1) unstable; urgency=low + + * New upstream version + Changelog: + - support for different file formats / integrated libaudiofile + - auto-repair for structurally damaged wav files + - using time instead of zoom factor (e.g. set zoom to "1 minute") + - menu entries for playback control + - some more icons in the menues + - added a little chapter about digital audio basics to online help + - added "select range" plugin + For more information, please see the full Changelog in + /usr/share/doc/kwave + * The problem concerning long time help generation has been solved by + upstream, so kwave-doc-en, kwave-doc-de and kwave-doc-fr are merged + again in kwave. This should reduce the Packages.gz file a little :-) + * The support of automake1.6 is include in upstream. + * Fix a bug with KDE 2.2 causes a very long starting delay. + + -- Aurelien Jarno Sat, 6 Jul 2002 16:54:18 +0200 + +kwave (0.6.3-12) unstable; urgency=low + + * Fixed package description. (closes: bug#149484) + + -- Aurelien Jarno Mon, 10 Jun 2002 00:06:45 +0200 + +kwave (0.6.3-11) unstable; urgency=low + + * .note and .comment sections of plugins files are now stripped. + + -- Aurelien Jarno Sun, 14 Apr 2002 18:51:20 +0200 + +kwave (0.6.3-10) unstable; urgency=low + + * Fixed the "Maintainer" field in the .changes file (problem in my + ~/.pbuilderrc file). + + -- Aurelien Jarno Wed, 10 Apr 2002 23:48:04 +0200 + +kwave (0.6.3-9) unstable; urgency=low + + * Fixed build errors on hppa architecture. + + -- Aurelien Jarno Sun, 7 Apr 2002 12:51:37 +0200 + +kwave (0.6.3-8) unstable; urgency=low + + * Don't build help on build-arch target. + * Fixed build errors on hppa architecture. + + -- Aurelien Jarno Sat, 6 Apr 2002 19:46:13 +0200 + +kwave (0.6.3-7) unstable; urgency=low + + * Fixed package description. (closes: Bug#141310) + + -- Aurelien Jarno Fri, 5 Apr 2002 20:33:40 +0200 + +kwave (0.6.3-6) unstable; urgency=low + + * Help files splited off into separate packages (kwave-doc-en, + kwave-doc-de, kwave-doc-fr), to avoid very long time compilation + on some architectures. + + -- Aurelien Jarno Tue, 2 Apr 2002 12:41:47 +0200 + +kwave (0.6.3-5) unstable; urgency=low + + * Fixed build error on hppa architecture. + + -- Aurelien Jarno Sun, 31 Mar 2002 12:19:10 +0200 + +kwave (0.6.3-4) unstable; urgency=low + + * Fixed build error on big endian architectures. + + -- Aurelien Jarno Fri, 29 Mar 2002 12:54:03 +0100 + +kwave (0.6.3-3) unstable; urgency=low + + * Added imagemagick to Build-Depends. + + -- Aurelien Jarno Mon, 25 Mar 2002 12:12:16 +0100 + +kwave (0.6.3-2) unstable; urgency=low + + * Initial Debian upload. (closes: Bug#130088) + * Changed my maintainer e-mail address to . :) + + -- Aurelien Jarno Mon, 18 Mar 2002 21:46:16 +0100 + +kwave (0.6.3-1) unstable; urgency=low + + * New upstream version. + Changelog : + - simple drag and drop + - french translation + - handling of "signal modified" + - shows error message and aborts if loading failed + + -- Aurelien Jarno Sat, 2 Mar 2002 09:29:22 +0100 + +kwave (0.6.2-4) unstable; urgency=low + + * Generation of HTML help. + + -- Aurelien Jarno Sun, 27 Jan 2002 10:11:26 +0100 + +kwave (0.6.2-3) unstable; urgency=low + + * Added Build-Depends. + + -- Aurelien Jarno Thu, 24 Jan 2002 15:34:01 +0100 + +kwave (0.6.2-2) unstable; urgency=low + + * Added mime-type to conform debian-policy. + + -- Aurelien Jarno Mon, 21 Jan 2002 20:14:05 +0100 + +kwave (0.6.2-1) unstable; urgency=low + + * Initial Release. + + -- Aurelien Jarno Thu, 10 Jan 2002 13:43:55 +0100 + +Local variables: +mode: debian-changelog +End: --- kwave-0.8.0.orig/debian/copyright +++ kwave-0.8.0/debian/copyright @@ -0,0 +1,130 @@ +This package was debianized by Aurelien Jarno on +Thu, 10 Jan 2002 13:43:55 +0100. + +It was downloaded from http://kwave.sourceforge.net + +Upstream Author: Thomas Eschenbacher + +Copyright: + + * GPL2 - GNU General Public License, version 2 or newer + - kwave, libgui, libkwave, mt and many others... + => this is Kwave's default license ! + => the intention of the authors is to keep Kwave under the GPL + + * GPL2 with exception: same license as the application + if autoconf / automake is used + - admin/compile + - admin/depcomp + - admin/libtool.m4.in + - admin/missing + - admin/ylwrap + + * LGPL2 - GNU Library General Public License, version 2 or newer + - acinclude.m4 + - admin/acinclude.m4.in + - admin/conf.change.pl + - admin/config.pl + - admin/configure.in.min + + * FDL - Free Documentation License + - documentation in doc + - screenshots + + * BSD + - admin/cvs-clean.pl + + * free, MIT + - admin/install-sh + + * public domain, by statement in file header + - admin/mkinstalldirs (Noah Friedman ) + + * free, by statement in file header + - admin/am_edit + +LICENSE ISSUES +============== + +issue #1: license of the icons +------------------------------ + -> maybe most are LGPL, but might depend from case to case !!! + +# doc/en/audio-1.png ??? UNKNOWN ??? + -> kdeclassic/32x32/apps/kblackbox.png + + kdeclassic/64x64/mimetypes/binary2.png + + kdeclassic/32x32/apps/kmix.png + + kdeclassic/32x32/actions/forward.png + + ??? + + ??? +# doc/en/audio2signal.png ??? UNKNOWN ??? + -> kdeclassic/32x32/apps/kmix.png + + kdeclassic/32x32/actions/forward.png + + ??? + + ??? + +# doc/en/caution.png ??? UNKNOWN ??? -> ksgmltools +# doc/en/important.png ??? UNKNOWN ??? -> ksgmltools +# doc/en/note.png ??? UNKNOWN ??? -> ksgmltools +# doc/en/tip.png ??? UNKNOWN ??? -> ksgmltools +# doc/en/warning.png ??? UNKNOWN ??? -> ksgmltools + +# doc/en/in-progress.png ??? UNKNOWN ??? +# doc/en/krec_record.png ??? UNKNOWN ??? -> krecord ? +# doc/en/logotp3.png ??? UNKNOWN ??? -> KDE 2 ? +# doc/en/nonlinear.png ??? UNKNOWN ??? + -> kdeclassic/32x32/actions/forward.png +# doc/en/record_new.png ??? UNKNOWN ??? -> KDE ? + -> kdeclassic/16x16/actions/14_layer_newlayer.png +# doc/en/under-construction.png ??? UNKNOWN ??? + +# kwave/pics/lspeaker.xpm ??? UNKNOWN ??? -> KDE ? +# kwave/pics/minifont.xpm ??? UNKNOWN ??? -> KDE ? +# kwave/pics/rspeaker.xpm ??? UNKNOWN ??? -> KDE ? + + kwave/pics/sound_arts.png free / KDE + -> icons/Locolor/16x16/apps/arts.png + +# kwave/pics/sound_card.png ??? UNKNOWN ??? -> KDE ? + + kwave/pics/sound_device.png free / KDE + -> icons/Locolor/32x32/mimetypes/sound.png + kwave/pics/sound_note.png free / KDE + -> icons/Locolor/16x16/apps/kcm_note.png + +# kwave/pics/sound_subdevice.png ??? UNKNOWN ??? -> KDE ? +# kwave/pics/xspeaker.xpm ??? UNKNOWN ??? -> KDE ? + +issue #2: license of some files is unknown or problematic / author known +------------------------------------------------------------------------ + +# admin/gsl.m4 ??? UNKNOWN ??? -> author: Christopher R. Gabriel +# admin/Makefile.common ??? UNKNOWN ??? / KDE developers ? +# kwave/pics/kwave-splash.png ??? UNKNOWN ??? / Gilles Caulier +# mt/Asynchronous_Object.h ??? UNKNOWN ??? / Oliver M. Kellogg +# mt/AsyncSync.cpp ??? / Brian Theodore +# mt/AsyncSync.h ??? / Brian Theodore +# mt/Thread.cpp ??? / Oliver M. Kellogg + +issue #3: some files have neither license nor author +---------------------------------------------------- + +# stamp-h.in ??? UNKNOWN ??? +# admin/bcheck.pl ??? UNKNOWN ??? +# admin/configure.in.bot.end ??? UNKNOWN ??? +# admin/cvs.sh ??? UNKNOWN ??? +# admin/debianrules ??? UNKNOWN ??? +# admin/deps.am ??? UNKNOWN ??? +# admin/detect-autoconf.sh ??? UNKNOWN ??? +# admin/Doxyfile.am ??? UNKNOWN ??? +# admin/Doxyfile.global ??? UNKNOWN ??? +# admin/libFLAC.m4 ??? UNKNOWN ??? +# admin/libFLAC++.m4 ??? UNKNOWN ??? +# admin/nmcheck ??? UNKNOWN ??? + +You are free to distribute this software under the terms of the GNU General +Public License. On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL file. + +This software comes with no warranty. + --- kwave-0.8.0.orig/debian/patches/fix_link_errors +++ kwave-0.8.0/debian/patches/fix_link_errors @@ -0,0 +1,55 @@ +Index: kwave-0.8.0/CMakeLists.txt +=================================================================== +--- kwave-0.8.0.orig/CMakeLists.txt 2008-10-05 05:04:19.000000000 +0000 ++++ kwave-0.8.0/CMakeLists.txt 2008-10-05 05:06:47.000000000 +0000 +@@ -161,7 +161,8 @@ + ${KDE4_KDECORE_LIBS} + ${KDE4_KDEUI_LIBRARY} + ${KDE4_KIO_LIBRARY} +- ${KDE4_KDE3SUPPORT_LIBRARY} ++ pthread ++ dl + ) + + INCLUDE_DIRECTORIES( +Index: kwave-0.8.0/kwave/CMakeLists.txt +=================================================================== +--- kwave-0.8.0.orig/kwave/CMakeLists.txt 2008-10-05 05:04:59.000000000 +0000 ++++ kwave-0.8.0/kwave/CMakeLists.txt 2008-10-05 05:09:58.000000000 +0000 +@@ -117,8 +117,8 @@ + TARGET_LINK_LIBRARIES(kwave_core + kwavegui + kwave +- ${QT_AND_KDECORE_LIBS} + ${AUDIOFILE_LIBS} ++ ${QT_AND_KDECORE_LIBS} + ) + + ADD_DEPENDENCIES(kwave_core libkwavegui libkwave) +Index: kwave-0.8.0/libkwave/CMakeLists.txt +=================================================================== +--- kwave-0.8.0.orig/libkwave/CMakeLists.txt 2008-10-05 05:04:48.000000000 +0000 ++++ kwave-0.8.0/libkwave/CMakeLists.txt 2008-10-05 05:10:35.000000000 +0000 +@@ -109,7 +109,6 @@ + TARGET_LINK_LIBRARIES(libkwave + audiofile + ${QT_AND_KDECORE_LIBS} +- dl + ) + + ############################################################################# +Index: kwave-0.8.0/plugins/CMakeLists.txt +=================================================================== +--- kwave-0.8.0.orig/plugins/CMakeLists.txt 2008-10-05 05:04:38.000000000 +0000 ++++ kwave-0.8.0/plugins/CMakeLists.txt 2008-10-05 05:11:11.000000000 +0000 +@@ -36,9 +36,8 @@ + TARGET_LINK_LIBRARIES(plugin_${_plugin} + kwavegui + kwave +- ${QT_AND_KDECORE_LIBS} + ${plugin_${_plugin}_LIBS} +- dl ++ ${QT_AND_KDECORE_LIBS} + ) + + SET_TARGET_PROPERTIES(plugin_${_plugin} PROPERTIES PREFIX "") --- kwave-0.8.0.orig/debian/patches/series +++ kwave-0.8.0/debian/patches/series @@ -0,0 +1 @@ +fix_link_errors