debian/0000755000000000000000000000000011561741413007171 5ustar debian/compat0000644000000000000000000000000211561732351010370 0ustar 6 debian/patches/0000755000000000000000000000000011561741104010615 5ustar debian/patches/1002_compile_with_-fPIC.patch0000644000000000000000000000174411561732351015713 0ustar Index: jamin/controller/Makefile.am =================================================================== --- jamin.orig/controller/Makefile.am +++ jamin/controller/Makefile.am @@ -1,14 +1,12 @@ -plugin_LTLIBRARIES = jamincont_1912.la -plugindir = @prefix@/lib/ladspa -jamincont_1912_la_CFLAGS = @OSC_CFLAGS@ -I../src -jamincont_1912_la_LIBADD = @OSC_LIBS@ -jamincont_1912_la_LDFLAGS = -module -avoid-version -Wc,-nostartfiles -jamincont_1912_la_SOURCES = jamincont_1912.c +pkgbin_PROGRAMS = jamincont_1912.so +pkgbindir = @prefix@/lib/ladspa +jamincont_1912_so_CFLAGS = @OSC_CFLAGS@ -I../src -fPIC +jamincont_1912_so_LDADD = @OSC_LIBS@ -EXTRA_DIST = jamincont_1912.xml ladspa-swh.dtd xml2c.pl jamincont_1912.c -#LINK = gcc -nostartfiles -shared -Wl,-Bsymbolic -lc -o $@ +EXTRA_DIST = jamincont_1912.xml ladspa-swh.dtd xml2c.pl +LINK = gcc -nostartfiles -shared -Wl,-Bsymbolic -lc -o $@ -%.c: %.xml - ./xml2c.pl $*.xml > $*.c +%.so.c: %.xml + ./xml2c.pl $*.xml > $*.so.c .PRECIOUS: %.c debian/patches/series0000644000000000000000000000023211561740413012031 0ustar #1001_use_AM_CFLAGS_for_CFLAGS.patch #1002_compile_with_-fPIC.patch 1003_add_dynamic_linking.patch 1004_install_correct_dir.patch 1005_desktop_file.patch debian/patches/1004_install_correct_dir.patch0000644000000000000000000000113311561736753016343 0ustar Description: Install files into /usr/lib instead of /usr/lib64. Author: Alexander Reichle-Schmehl Bug-Debian: http://bugs.debian.org/588554 Forwarded: no --- configure.in | 7 ------- 1 file changed, 7 deletions(-) --- jamin.orig/configure.in +++ jamin/configure.in @@ -97,13 +97,6 @@ AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GE AM_GLIB_GNU_GETTEXT libnn=lib -case "${host_os}" in - linux*) - case "${host_cpu}" in - x86_64|mips64|ppc64|sparc64|s390x) - libnn=lib64 - esac -esac if test "${libdir}" = '${exec_prefix}/lib'; then libdir='${exec_prefix}/'${libnn} debian/patches/1001_use_AM_CFLAGS_for_CFLAGS.patch0000644000000000000000000000153311561732351016362 0ustar Index: jamin/configure.in =================================================================== --- jamin.orig/configure.in +++ jamin/configure.in @@ -24,7 +24,8 @@ AC_PROG_INTLTOOL CFLAGS_OPT=$CFLAGS -CFLAGS=$USER_CFLAGS +AM_CFLAGS=$USER_CFLAGS +AC_SUBST(AM_CFLAGS) AC_SUBST(CFLAGS_OPT) AC_ARG_ENABLE(double-fft, [ --enable-double-fft Enable double precision fourier transform code - not recommended]) Index: jamin/src/Makefile.am =================================================================== --- jamin.orig/src/Makefile.am +++ jamin/src/Makefile.am @@ -3,7 +3,8 @@ INCLUDES = \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ - @PACKAGE_CFLAGS@ @JAMIN_CFLAGS@ + @PACKAGE_CFLAGS@ \ + @AM_CFLAGS@ # use a convenience library to build non-optimized sources. noinst_LIBRARIES = libnopt.a debian/patches/1005_desktop_file.patch0000644000000000000000000000100311561740656014760 0ustar Subject: Fix desktop file as Freedesktop.org's per-spec. Author: Alessio Treglia Forwarded: no --- data/jamin.desktop.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- jamin.orig/data/jamin.desktop.in +++ jamin/data/jamin.desktop.in @@ -1,9 +1,8 @@ [Desktop Entry] -Encoding=UTF-8 _Name=JAMin _GenericName= _Comment=JACK Audio Mastering interface -Categories=Application;AudioVideo; +Categories=AudioVideo;Audio; Exec=jamin Icon=jamin.svg MimeType=application/x-jamin; debian/patches/1003_add_dynamic_linking.patch0000644000000000000000000000117111561741217016255 0ustar Description: Link with -ldl to prevent FTBFS with binutils-gold. Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=554928 Author: Jonas Smedegaard --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- jamin.orig/configure.in +++ jamin/configure.in @@ -109,7 +109,7 @@ if test "${libdir}" = '${exec_prefix}/li libdir='${exec_prefix}/'${libnn} fi -JAMIN_LIBS="$FFTW_LIBS $XML_LIBS $JACK_LIBS $OSC_LIBS" +JAMIN_LIBS="$FFTW_LIBS $XML_LIBS $JACK_LIBS $OSC_LIBS -ldl" AC_SUBST(JAMIN_LIBS) JAMIN_CFLAGS="-g $FFTW_CFLAGS $JACK_CFAGS $XML_CFLAGS $OSC_CFLAGS" AC_SUBST(JAMIN_CFLAGS) debian/rules0000755000000000000000000000360711561733314010260 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright © 2003-2005 Robert Jordens # Copyright © 2010 Jonas Smedegaard # Description: Main Debian packaging script for JAMin # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . DEB_AUTO_UPDATE_LIBTOOL = pre DEB_AUTO_UPDATE_AUTOCONF = 2.65 DEB_AUTO_UPDATE_AUTOHEADER = 2.65 DEB_AUTO_UPDATE_ACLOCAL = 1.11 DEB_AUTO_UPDATE_AUTOMAKE = 1.11 -include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/debhelper.mk # Suppress optional build-dependencies, to ease backporting CDBS_BUILD_DEPENDS_rules_utils_copyright-check = CDBS_BUILD_DEPENDS_rules_utils_buildinfo = debian/stamp-autotools-files: debian/stamp-intltoolize debian/stamp-intltoolize: intltoolize -c -f touch $@ clean:: rm -f debian/stamp-intltoolize # Avoid graphics and sound files upsetting dpkg-source DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^\./(pixmaps/.*\.(png|jpg)|test/files/junk\.jam|debian/(changelog|copyright(|_hints|_newhints)))$ clean:: rm -f Makefile.in controller/Makefile.in data/Makefile.in examples/Makefile.in pixmaps/Makefile.in src/Makefile.in rm -f po/Makefile.in.in aclocal.m4 config.h.in configure controller/jamincont_1912.c ltmain.sh binary-install/jamin:: find $(CURDIR)/debian/jamin -type f -name '*.la*' -delete debian/control0000644000000000000000000000256311561737150010605 0ustar Source: jamin Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Jonas Smedegaard Build-Depends: cdbs, autotools-dev, libtool, automake1.11, autoconf, debhelper (>= 6), dh-buildinfo, docbook-to-man, fftw3-dev, indent, intltool, ladspa-sdk, libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libgtk2.0-dev, libjack-dev, liblo-dev, libxml2-dev, libxml-parser-perl, swh-plugins Homepage: http://jamin.sourceforge.net/ Standards-Version: 3.9.2 Vcs-Git: git://git.debian.org/git/pkg-multimedia/jamin.git Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/jamin.git;a=summary Package: jamin Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, swh-plugins, jackd Description: Audio mastering from a mixed down multitrack source with JACK JAM is a tool for producing audio masters from a mixed down multitrack source. It runs in the JACK Audio Connection Kit, and uses LADSPA for its backend DSP work, specifically the swh plugins created by Steve Harris, JAM's main author. . Features: * Linear filters * JACK I/O * 30 band graphic EQ * 1023 band hand drawn EQ with parametric controls * Spectrum analyser * 3 band peak compressor * Lookahead brickwall limiter * Multiband stereo processing * Presets and scenes * Loudness maximiser debian/jamin.links0000644000000000000000000000010311561732351011324 0ustar usr/share/man/man1/jamin.1.gz usr/share/man/man1/jamin-scene.1.gz debian/examples0000644000000000000000000000002511561732351010730 0ustar examples/default.jam debian/changelog0000644000000000000000000002017411561741413011047 0ustar jamin (0.97.14~cvs~81203-4) unstable; urgency=low * Team upload. * ACK NMU (bug#588554), thanks to Alexander Reichle-Schmehl for the good job: - debian/patches/1004_install_correct_dir.patch: Install files into /usr/lib instead of /usr/lib64. * Fix desktop file as Freedesktop.org's per-spec: - Remove deprecated Encoding key. - Remove deprecated Application from Categories field. - Append Audio to Categories field. * jamin.1 documents both 'jamin' and 'jamin-scene' commands, link jamin.1.gz to jamin-scene.1.gz; thanks to Nicholas Humfrey for the report (Closes: #329960). * Get rid of unneeded *.la files (Closes: #621646). * Add DEP-3 compliant header to the patches. * debian/copyright: - Fix small typo in the source URL. * debian/control: - Add Homepage field. - Bump Standards. -- Alessio Treglia Mon, 09 May 2011 12:32:14 +0200 jamin (0.97.14~cvs~81203-3.1) unstable; urgency=low * Non-maintainer upload. * debian/patches/1004_install_correct_dir.patch: Install files into /usr/lib instead of /usr/lib64 (Closes: #588554) -- Alexander Reichle-Schmehl Thu, 15 Jul 2010 15:00:24 +0200 jamin (0.97.14~cvs~81203-3) unstable; urgency=low * Revert to depend (not just recommend) swh-plugins. Thanks to Jaromír MikeÅ¡. * Refresh patch, using compacting quilt options --no-timestamps --no-index -pab. -- Jonas Smedegaard Fri, 02 Apr 2010 21:20:49 +0200 jamin (0.97.14~cvs~81203-2) unstable; urgency=low * Update feature list in long description to match website. Closes: bug#412091, thanks to Mike O'Connor. -- Jonas Smedegaard Fri, 12 Mar 2010 19:32:59 +0100 jamin (0.97.14~cvs~81203-1) unstable; urgency=low * Friendly takeover: Maintain in Debian Multimedia Team, with myself as Uploader. Thanks for your contributions, Robert. * New upstream development snapshot. * Use dpkg source format "3.0 (quilt)". * Revert packaging cruft. * Isolate patches: + 1001: use AM_FLAGS for CFLAGS. + 1002: compile with fPIC against renamed jamincont_1912.c. Disable both patches (but keep in source). * Add patch 1003 to add dynamic linking. Hopefully closes: bug#554928, thanks to Peter Fritzsche. * Enable CDBS autoreconf. * Enable CDBS conditional control file updating. * Enable CDBS copyright check. * Rewrite watch file. Closes: bug#449805, thanks to Raphael Geissert. * Update section name in menu file. Quote strings. * Drop superfluous dirs and docs files. * Bump debhelper compat level to 6. Tighten build-dependency accordingly. * Drop superfluous build-dependency on perl-base. * Build-depend on libjack-dev (not libjack0.100.0-dev). Closes: bug#527420, thanks to Felipe Sateler. * Build-depend on liblo-dev (not liblo0-dev). * Build-depend on intltool, needed for our autotools bootstrapping. * Build-depend unversioned on swh-plugins (satisified in oldstable). * Make binary dependencies unversioned (satisified in oldstable). * Recommend (not depend on) swh-plugins, and fallback to virtual ladspa-plugin. * Add proper licensing header to rules file. * Rewrite copyright file as draft DEP5 rev. 135 format. Closes: bug#412110, thanks to Mike O'Connor. * Bump Standards-Version to 3.8.4. * Drop no longer relevant README.Debian. * Packaging maintained in Git: Add Vcs-* stanzas to control file. * Add git-buildpackage config, enabling tag signing and pristine-tar. -- Jonas Smedegaard Fri, 12 Mar 2010 13:06:51 +0100 jamin (0.95.0-4) unstable; urgency=low * Porter NMU. * Don't depends on libasound2-dev on non-linux architectures. closes: #327647. -- Aurelien Jarno Sun, 10 Dec 2006 21:24:20 +0100 jamin (0.95.0-3) unstable; urgency=low * rebuild against jack 0.100.0 for unstable -- Robert Jordens Sat, 2 Jul 2005 14:47:32 +0200 jamin (0.95.0-2) experimental; urgency=low * rebuild against jack 0.100.0 -- Robert Jordens Tue, 21 Jun 2005 22:52:20 +0200 jamin (0.95.0-1) unstable; urgency=low * new upstream release -- Robert Jordens Thu, 28 Apr 2005 21:09:29 +0200 jamin (0.9.0+0.95.0rc3-1) unstable; urgency=low * new upstream release candidate -- Robert Jordens Sun, 3 Apr 2005 12:06:31 +0200 jamin (0.9.0+0.95.0rc2-1) unstable; urgency=low * new upstream prerelease -- Robert Jordens Thu, 24 Mar 2005 17:08:30 +0100 jamin (0.9.0+0.95.0beta6-1) unstable; urgency=low * new upstream release * debian/control: added libxml-parser-perl to b-d, needed for intltool -- Robert Jordens Fri, 11 Feb 2005 22:24:25 +0100 jamin (0.9.0-7) unstable; urgency=low * configure.in: gettext fix; closes: Bug#288154: jamin: contains po file under /usr/lib/locale installed as mo file -- Robert Jordens Mon, 3 Jan 2005 20:35:51 +0100 jamin (0.9.0-6) unstable; urgency=high * urgency high because this fixes an RC bug * src/{jamin-scene.c,main.c}, controller/jamincont_1912.so.c: liblo0-dev's lo.h has moved; closes: Bug#282363 -- Robert Jordens Sun, 21 Nov 2004 23:31:24 +0100 jamin (0.9.0-5) unstable; urgency=medium * urgency medium because this fixes an RC bug * controller/Makefile*: _compile_ with -fPIC, not link; really closes: Bug#269781 -- Robert Jordens Fri, 3 Sep 2004 16:06:25 +0200 jamin (0.9.0-4) unstable; urgency=medium * urgency medium because this fixes an RC bug * controller/Makefile*: compile with -fPIC; closes: Bug#269781 -- Robert Jordens Fri, 3 Sep 2004 14:43:20 +0200 jamin (0.9.0-3) unstable; urgency=low * upload 0.9.0-2 from experimental unchanged to unstable (changes: build with liblo0's OSC support) -- Robert Jordens Thu, 2 Sep 2004 18:19:53 +0200 jamin (0.9.0-2) experimental; urgency=medium * upload to experimental to not hinder transition to testing * debian/control: build with liblo0-dev's OSC support since liblo0 is now in unstable -- Robert Jordens Fri, 6 Aug 2004 20:47:58 +0200 jamin (0.9.0-1) unstable; urgency=low * new upstream release -- Robert Jordens Fri, 6 Aug 2004 19:09:49 +0200 jamin (0.8.0+0.9.0beta10-1) unstable; urgency=low * debian/watch: added * new upstream snapshot (version 0.9.0beta10): + debian/control: needs newer swh-plugins (>= 0.4.6), and doesn't use plugins from old ones anymore: closes: Bug#260220 + although this is only a snapshot, it's still better than a non-working package -- Robert Jordens Sat, 31 Jul 2004 22:44:30 +0200 jamin (0.8.0-1) unstable; urgency=low * new upstream release * build against libjack0.80.0-dev -- Robert Jordens Sat, 17 Jan 2004 12:14:37 +0100 jamin (0.7.0+cvs031231-1) experimental; urgency=low * new upstream release, upload to experimental -- Robert Jordens Wed, 31 Dec 2003 14:45:27 +0100 jamin (0.5.17+cvs030927-1) experimental; urgency=low * new upstream release, upload to experimental -- Robert Jordens Sat, 27 Sep 2003 01:54:08 +0200 jamin (0.5.14+cvs030914-2) unstable; urgency=low * debian/control: add the missing comma between ${shlibs:Depends} and ${misc:Depends}; closes: Bug#211453 -- Robert Jordens Wed, 17 Sep 2003 23:51:17 +0200 jamin (0.5.14+cvs030914-1) unstable; urgency=low * new upstream release from CVS * debian/menu: added hints * debian/README.Debian: added with hint about possible file format change * debian/jamin.sgml is now GPL -- Robert Jordens Sun, 14 Sep 2003 22:02:29 +0200 jamin (0.5.12+cvs030908-1) unstable; urgency=low * Initial Release; closes: Bug#209178 (the ITP) * configure.in: use AM_CFLAGS for CFLAGS * added src/state-vars.txt from cvs * renewed config.{guess,sub} * debian/jamin.sgml: wrote manpage * src/plugin.c: adjusted plugin_path to /usr/lib/ladspa -- Robert Jordens Mon, 8 Sep 2003 10:23:43 +0200 debian/control.in0000644000000000000000000000243711561737071011214 0ustar Source: jamin Section: sound Priority: optional Maintainer: Debian Multimedia Maintainers Uploaders: Jonas Smedegaard Build-Depends: @cdbs@, docbook-to-man, fftw3-dev, indent, intltool, ladspa-sdk, libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386], libgtk2.0-dev, libjack-dev, liblo-dev, libxml2-dev, libxml-parser-perl, swh-plugins Homepage: http://jamin.sourceforge.net/ Standards-Version: 3.9.2 Vcs-Git: git://git.debian.org/git/pkg-multimedia/jamin.git Vcs-Browser: http://git.debian.org/?p=pkg-multimedia/jamin.git;a=summary Package: jamin Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, swh-plugins, jackd Description: Audio mastering from a mixed down multitrack source with JACK JAM is a tool for producing audio masters from a mixed down multitrack source. It runs in the JACK Audio Connection Kit, and uses LADSPA for its backend DSP work, specifically the swh plugins created by Steve Harris, JAM's main author. . Features: * Linear filters * JACK I/O * 30 band graphic EQ * 1023 band hand drawn EQ with parametric controls * Spectrum analyser * 3 band peak compressor * Lookahead brickwall limiter * Multiband stereo processing * Presets and scenes * Loudness maximiser debian/gbp.conf0000644000000000000000000000014611561732351010612 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/copyright_hints0000644000000000000000000001607111561732351012337 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135 X-Draft: Autogenerated by CDBS snippet copyright-check.mk Files: ./AUTHORS, ./ChangeLog, ./Makefile.am, ./NEWS, ./README, ./acconfig.h, ./autogen.sh, ./configure.in, ./controller/Makefile.am, ./controller/jamincont_1912.xml, ./controller/ladspa-swh.dtd, ./data/Makefile.am, ./data/jamin.desktop.in, ./data/jamin.svg, ./data/jamin.xml.in, ./debian/compat, ./debian/control, ./debian/control.in, ./debian/examples, ./debian/gbp.conf, ./debian/menu, ./debian/patches/1001_use_AM_CFLAGS_for_CFLAGS.patch, ./debian/patches/1002_compile_with_-fPIC.patch, ./debian/patches/1003_add_dynamic_linking.patch, ./debian/patches/series, ./debian/source/format, ./debian/watch, ./examples/Makefile.am, ./examples/RIAA_EQ.jam, ./examples/default.jam, ./examples/jamin_ui.in, ./examples/marble_jamin_ui.in, ./fix-m2s.sh, ./jam-ui.gladep, ./mkinstalldirs, ./pixmaps/JAMin_icon.xpm, ./pixmaps/LED_green_off.xpm, ./pixmaps/LED_green_on.xpm, ./pixmaps/LED_red.xpm, ./pixmaps/LED_yellow.xpm, ./pixmaps/Makefile.am, ./po/ChangeLog, ./po/POTFILES.in, ./src/Makefile.am, ./src/biquad.h, ./src/callbacks.h, ./src/constants.h, ./src/denormal-kill.h, ./src/interface.h, ./src/jamin.1.in, ./src/mk-stateh.pl, ./src/rms.h, ./src/state-vars.txt, ./src/state.h, ./src/support.c, ./src/support.h, ./test/files/default-bad-numbers.jam, ./test/files/default-mangled.jam, ./test/files/default-noheader.jam, ./test/files/default-uncompressed.jam, ./test/files/default-unknown-element.jam, ./test/files/default-withcomment.jam, ./test/files/default.jam Copyright: *No copyright* License: UNKNOWN FIXME Files: ./src/compressor-ui.c, ./src/compressor-ui.h, ./src/compressor.h, ./src/db.h, ./src/geq.c, ./src/gtkmeter.c, ./src/gtkmeter.h, ./src/gtkmeterscale.c, ./src/gtkmeterscale.h, ./src/intrim.c, ./src/intrim.h, ./src/jamin-scene.c, ./src/limiter-ui.c, ./src/limiter-ui.h, ./src/limiter.h, ./src/plugin.c, ./src/plugin.h, ./src/presets-ui.c, ./src/presets-ui.h, ./src/rms.c, ./src/state.c, ./src/stereo.c, ./src/stereo.h Copyright: 2003, Steve Harris 2004, Steve Harris 2006, Steve Harris License: GPL-2+ FIXME Files: ./src/io.c, ./src/io.h, ./src/jackstatus.h, ./src/resource.c, ./src/resource.h, ./src/status-ui.c, ./src/transport.c, ./src/transport.h Copyright: 2003, Jack O'Quin 2003-2004, Jack O'Quin License: GPL-2+ FIXME Files: ./src/hdeq.c, ./src/hdeq.h, ./src/help.c, ./src/help.h, ./src/preferences.c, ./src/preferences.h, ./src/scenes.c, ./src/spectrum.h Copyright: 2003, Jan C. Depner 2004, Jan C. Depner License: GPL-2+ FIXME Files: ./src/callbacks.c, ./src/debug.h, ./src/main.h, ./src/process.c Copyright: 2003, Jan C. Depner, Jack O'Quin, Steve Harris License: GPL-2+ FIXME Files: ./compile, ./depcomp, ./missing Copyright: 1996-1997, 1999-2000, 2002 Free Software Foundation, Inc 1999-2000, Free Software Foundation, Inc License: GPL FIXME Files: ./src/geq.h, ./src/scenes.h, ./src/spectrum.c Copyright: 2003, Jan C. Depner, Steve Harris License: GPL-2+ FIXME Files: ./config.guess, ./config.sub Copyright: 1992-1999, 1992-2001 License: GPL-2+ FIXME Files: ./src/io-menu.h, ./src/status-ui.h Copyright: 2003, Jan C. Depner, Jack O'Quin License: GPL-2+ FIXME Files: ./src/ringbuffer.c, ./src/ringbuffer.h Copyright: 2000, Paul Davis 2003, Rohan Drape License: LGPL-2.1+ FIXME Files: ./intltool-merge.in Copyright: 2000, 2003 Free Software Foundation 2000-2001, Eazel, Inc 2000-2003, Free Software Foundation, Inc License: GPL FIXME Files: ./intltool-update.in Copyright: 2000-2003, Free Software Foundation 2000-2003, Free Software Foundation, Inc License: GPL FIXME Files: ./debian/rules Copyright: 2003-2005, Robert Jordens 2010, Jonas Smedegaard License: GPL FIXME Files: ./po/fr.po Copyright: (en s):" 2003, J. Depner, S. Harris, J. O'Quin, R. Parker, and P. Shirkey. \n" 2003-2005, J. Depner, S. Harris, J. O'Quin, R. Parker and P. Shirkey\n" 2003-2005, J. Depner, S. Harris, J. O'Quin, R. Parker et P. Shirkey\n" 2007-2008, d'un " dans les prÃfÃrences)" pour " pour les changements de scène" | some CPU | some frames | 96000 Hz | Focus - something" License: GPL-2+ FIXME Files: ./COPYING Copyright: 1989, 1991 Free Software Foundation, Inc HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR HOLDERS AND/OR OTHER PARTIES disclaimer" for the program, if holder saying it may be distributed holder who places the Program under this License interest in the program law: the software, and year name of author License: GPL-2+ FIXME Files: ./intltool-extract.in Copyright: 2000, 2003 Free Software Foundation, Inc 2000-2001, 2003 Free Software Foundation License: GPL-2+ FIXME Files: ./po/ru.po Copyright: 2003, J. Depner, S. Harris, J. O'Quin, R. Parker, and P. Shirkey. \n" 2003, J. Depner, S. Harris, J. O'Quin, R. Parker, и P. " 2003-2005, J. Depner, S. Harris, J. O'Quin, R. Parker and P. Shirkey\n" 2003-2005, J. Depner, S. Harris, J. O'Quin, R. Parker и P. Shirkey\n" YEAR THE PACKAGE'S HOLDER, 2004-2005, License: GPL-2+ FIXME Files: ./src/main.c Copyright: 2003, Jan C. Depner, Jack O'Quin, Steve Harris 2003-2005, J. Depner, S. Harris, J. O'Quin, R. Parker" License: GPL-2+ FIXME Files: ./jam-ui.glade Copyright: 2003, J. Depner, S. Harris, J. O'Quin, R. Parker, and P. Shirkey License: GPL-2+ FIXME Files: ./src/callbacks_help.h Copyright: 2003, J. Depner, S. Harris, J. O'Quin, R. Parker, and P. Shirkey. \n\ 2003, Jan C. Depner License: GPL-2+ FIXME Files: ./src/interface.c Copyright: 2003, J. Depner, S. Harris, J. O'Quin, R. Parker, and P. Shirkey. \n\nThis program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. \n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA."), -1); License: GPL-2+ FIXME Files: ./src/process.h Copyright: 2003, Jack O'Quin, Steve Harris License: GPL-2+ FIXME Files: ./src/io-menu.c Copyright: 2003, Patrick Shirkey, Jack O'Quin License: GPL-2+ FIXME Files: ./src/ladspa.h Copyright: 2000-2002, Richard W.E. Furse, Paul applying to the plugin. If no applies the License: LGPL-2.1+ FIXME Files: ./src/spline.c Copyright: *No copyright* License: Public domain FIXME Files: ./controller/xml2c.pl Copyright: = $global{''}; License: UNKNOWN FIXME Files: ./INSTALL Copyright: 1994-1996, 1999-2002, Free Software License: UNKNOWN FIXME Files: ./TODO Copyright: headers in source code file (2003/11/19) License: UNKNOWN FIXME Files: ./install-sh Copyright: 1991, the Massachusetts Institute of Technology License: UNKNOWN FIXME debian/copyright0000644000000000000000000001301111561732351011121 0ustar Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=135 Name: JAMin Maintainer: Steve Harris Source: http://jamin.sourceforge.net :pserver:anonymous@cvs.sourceforge.net:/cvsroot/jamin Copyright: 2003-2004,2006, Steve Harris License: GPL-2+ Files: ./src/io.c, ./src/io.h, ./src/jackstatus.h, ./src/resource.c, ./src/resource.h, ./src/status-ui.c, ./src/transport.c, ./src/transport.h Copyright: 2003-2004, Jack O'Quin License: GPL-2+ Files: ./src/hdeq.c, ./src/hdeq.h, ./src/help.c, ./src/help.h, ./src/preferences.c, ./src/preferences.h, ./src/scenes.c, ./src/spectrum.h Copyright: 2003-2004, Jan C. Depner License: GPL-2+ Files: ./src/callbacks.c, ./src/debug.h, ./src/main.h, ./src/process.c Copyright: 2003, Jack O'Quin Copyright: 2003, Jan C. Depner Copyright: 2003, Steve Harris License: GPL-2+ Files: ./compile, ./config.guess, ./config.sub ./depcomp, ./intltool-extract.in ./intltool-update.in ./missing Copyright: 1992-2002 Free Software Foundation, Inc. License: GPL-2+ or other-sa-Autoconf Files: ./src/geq.h, ./src/scenes.h, ./src/spectrum.c Copyright: 2003, Jan C. Depner 2003, Steve Harris License: GPL-2+ Files: ./src/io-menu.h, ./src/status-ui.h Copyright: 2003, Jack O'Quin 2003, Jan C. Depner License: GPL-2+ Files: ./src/ringbuffer.c, ./src/ringbuffer.h Copyright: 2000, Paul Davis 2003, Rohan Drape License: LGPL-2.1+ Files: ./intltool-merge.in Copyright: 2000-2003 Free Software Foundation, Inc. 2000-2001, Eazel, Inc License: GPL-2+ or other-sa-Autoconf Files: ./po/fr.po Copyright: 2007, Raphaël Doursenaud 2008, Emmanuel Saracco License: GPL-2+ Files: ./src/main.c ./jam-ui.glade ./src/callbacks_help.h ./src/interface.c Copyright: 2003-2005, Jan C. Depner 2003-2005, Jack O'Quin 2003-2005, Patrick Shirkey 2003-2005, Ron Parker 2003-2005, Steve Harris License: GPL-2+ Files: ./src/process.h Copyright: 2003, Jack O'Quin 2003, Steve Harris License: GPL-2+ Files: ./src/io-menu.c Copyright: 2003, Jack O'Quin 2003, Patrick Shirkey License: GPL-2+ Files: ladspa.h Copyright: 2000-2002, Richard W.E. Furse 2000-2002, Paul Barton-Davis 2000-2002, Stefan Westerfeld License: LGPL-2.1+ Files: ./src/spline.c Copyright: *No copyright* License: other-PD Files: ./INSTALL Copyright: 1994-1996, 1999-2002, Free Software License: other-GAP-INSTALL Files: ./install-sh Copyright: 1991, the Massachusetts Institute of Technology License: other-MIT Files: ./debian/* Copyright: 2003-2005, Robert Jordens 2010, Jonas Smedegaard License: GPL-2+ License: GPL-2+ This file is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . On Debian systems, the complete text of the GNU General Public License (GPL) version 2 can be found an 2/usr/share/common-licenses/GPL-2". . You should have received a copy of the GNU General Public License along with this program. If not, see . License: LGPL-2.1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . On Debian systems, the complete text of the GNU Lesser General Public License (LGPL) version 2.1 can be found at "/usr/share/common-licenses/LGPL-2.1". . You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . License: other-GAP-INSTALL This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. License: other-sa-Autoconf As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. License: other-PD This source is in the public domain. It is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. License: other-MIT Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of M.I.T. not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. M.I.T. makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. debian/source/0000755000000000000000000000000011561732351010472 5ustar debian/source/format0000644000000000000000000000001411561732351011700 0ustar 3.0 (quilt) debian/watch0000644000000000000000000000024411561732351010223 0ustar # Run the "uscan" command to check for upstream updates and more. version=3 # use qa.debian.org redirector; see man uscan http://sf.net/jamin/jamin-(\d.*)\.tar\.gz debian/menu0000644000000000000000000000021011561732351010052 0ustar ?package(jamin):needs="X11" section="Applications/Sound"\ hints="Professional,JACK,LADSPA" \ title="jamin" command="/usr/bin/jamin"