[Demudi-commits] r49 - in mcp-plugins/trunk: . debian debian/patches
Free Ekanayaka
free-guest@haydn.debian.org
Sat, 30 Oct 2004 06:32:18 -0600
Author: free-guest
Date: 2004-10-30 06:31:48 -0600 (Sat, 30 Oct 2004)
New Revision: 49
Added:
mcp-plugins/trunk/.#Makefile.1.2
mcp-plugins/trunk/debian/
mcp-plugins/trunk/debian/changelog
mcp-plugins/trunk/debian/control
mcp-plugins/trunk/debian/copyright
mcp-plugins/trunk/debian/dirs
mcp-plugins/trunk/debian/docs
mcp-plugins/trunk/debian/patches/
mcp-plugins/trunk/debian/patches/00list
mcp-plugins/trunk/debian/patches/10install_with_destdir.dpatch
mcp-plugins/trunk/debian/patches/11mvclpf24.dpatch
mcp-plugins/trunk/debian/rules
mcp-plugins/trunk/debian/watch
mcp-plugins/trunk/mcp-plugins.1
Log:
Load newtrunk into mcp-plugins/trunk.
Added: mcp-plugins/trunk/.#Makefile.1.2
===================================================================
--- mcp-plugins/trunk/.#Makefile.1.2 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/.#Makefile.1.2 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,35 @@
+
+CPPFLAGS += -I. -fPIC -D_REENTRANT -Wall -O2
+
+
+all: moogvcf.so cs_phaser.so cs_chorus.so
+
+
+moogvcf.so: moogvcf.o moogvcf_if.o exp2ap.o
+ g++ -shared moogvcf.o moogvcf_if.o exp2ap.o -o moogvcf.so
+
+moogvcf.o: ladspaplugin.h moogvcf.h
+moogvcf_if.o: ladspaplugin.h moogvcf.h
+
+
+cs_phaser.so: cs_phaser.o cs_phaser_if.o exp2ap.o
+ g++ -shared cs_phaser.o cs_phaser_if.o exp2ap.o -o cs_phaser.so
+
+cs_phaser.o: ladspaplugin.h cs_phaser.h
+cs_phaser_if.o: ladspaplugin.h cs_phaser.h
+
+
+cs_chorus.so: cs_chorus.o cs_chorus_if.o exp2ap.o
+ g++ -shared cs_chorus.o cs_chorus_if.o exp2ap.o -o cs_chorus.so
+
+cs_chorus.o: ladspaplugin.h cs_chorus.h
+cs_chorus_if.o: ladspaplugin.h cs_chorus.h
+
+
+
+install:
+ cp *.so $(DESTDIR)/usr/lib/ladspa
+
+clean:
+ rm -f *~ *.o *.so
+
Added: mcp-plugins/trunk/debian/changelog
===================================================================
--- mcp-plugins/trunk/debian/changelog 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/changelog 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,46 @@
+mcp-plugins (0.3.0-1) unstable; urgency=low
+
+ * New upstream release
+ * Updated to Standards-Version 3.6.1.1
+ * First Debian upload (closes: #203903), sponsored by
+ Cosimo Alfarano <kalfa@debian.org>
+
+ -- Free Ekanayaka <free@agnula.org> Wed, 1 Sep 2004 13:20:35 +0200
+
+mcp-plugins (0.2.1b-0test1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Free Ekanayaka <free@agnula.org> Tue, 30 Dec 2003 11:31:17 +0100
+
+mcp-plugins (0.0.3-test1) unstable; urgency=low
+
+ * New upstream imported.
+
+ -- Free Ekanayaka <free@agnula.org> Tue, 2 Dec 2003 18:58:50 +0600
+
+mcp-plugins (0.0.20030828-0test1) unstable; urgency=low
+
+ * Repackaged with the new versioning scheme.
+ * Using dpatch instead of directly hacking on upstream code.
+
+ -- Andrea Glorioso <andrea.glorioso@agnula.org> Thu, 20 Nov 2003 10:04:44 +0100
+
+mcp-plugins (0.0.2-1.agnula-2) unstable; urgency=low
+
+ * debian/control: slightly reformatted text.
+
+ -- Andrea Glorioso <andrea.glorioso@binary-only.com> Sat, 26 Jul 2003 18:04:18 +0200
+
+mcp-plugins (0.0.2-1.agnula-1) unstable; urgency=low
+
+ * Repackaged for AGNULA.
+
+ -- Free Ekanayaka <free@centrotemporeale.it> Tue, 22 Jul 2003 11:45:09 +0200
+
+mcp-plugins (0.0.2-1) unstable; urgency=low
+
+ * Initial Release.
+
+ -- Free Ekanayaka <free@centrotemporeale.it> Sun, 13 Jul 2003 14:52:28 +0200
+
Added: mcp-plugins/trunk/debian/control
===================================================================
--- mcp-plugins/trunk/debian/control 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/control 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,24 @@
+Source: mcp-plugins
+Section: sound
+Priority: optional
+Maintainer: Free Ekanayaka <free@agnula.org>
+Build-Depends: debhelper (>> 3.0.0), ladspa-sdk, dpatch, docbook-to-man
+Standards-Version: 3.6.1.1
+
+Package: mcp-plugins
+Architecture: any
+Depends: ${shlibs:Depends}
+Suggests: ams
+Description: LADSPA plugins designed for Alsa Modular Synth
+ MCP plugins implement a set of LADSPA plugins that vastly improve
+ the sound of AlsaModularSynth.
+ .
+ Currently they consist of these plugins:
+ * Moog VCF (1-3): Moog lowpass filters that quite successfully
+ emulate the properties of the analogue circuit. Version 3 of
+ these filters is recommended.
+ * Phaser1: A phaser with up to 30 all-pass filters in series.
+ * Phaser1+LFO: The same as above, but with built-in LFO. LFO
+ waveform can be continuosly changed from saw down to triangle
+ and saw up.
+ * Chorus (1,2): Two chorus plugins.
Added: mcp-plugins/trunk/debian/copyright
===================================================================
--- mcp-plugins/trunk/debian/copyright 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/copyright 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,15 @@
+This package was debianized by Free Ekanayaka <free@agnula.org> and
+Andrea Glorioso <andrea.glorioso@agnula.org on
+Wed, 25 Sep 2002 12:14:00 +0000.
+
+It was downloaded from http://users.skynet.be/solaris/linuxaudio/
+
+Upstream Author: Fons Adriaensen <fons.adriaensen@alcatel.be>
+
+Copyright:
+
+This software is copyright by Fons Adriaensen <fons.adriaensen@alcatel.be>
+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.
Added: mcp-plugins/trunk/debian/dirs
===================================================================
--- mcp-plugins/trunk/debian/dirs 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/dirs 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,4 @@
+usr/bin
+usr/sbin
+usr/share/ams
+usr/lib/ladspa
Added: mcp-plugins/trunk/debian/docs
===================================================================
--- mcp-plugins/trunk/debian/docs 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/docs 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1 @@
+README
Added: mcp-plugins/trunk/debian/patches/00list
===================================================================
--- mcp-plugins/trunk/debian/patches/00list 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/patches/00list 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1 @@
+10install_with_destdir
Added: mcp-plugins/trunk/debian/patches/10install_with_destdir.dpatch
===================================================================
--- mcp-plugins/trunk/debian/patches/10install_with_destdir.dpatch 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/patches/10install_with_destdir.dpatch 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,37 @@
+#!/bin/sh -e
+## install_with_destdir.dpatch by Andrea Glorioso <andrea.glorioso@binary-only.com>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+if [ $# -ne 1 ]; then
+ echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+ exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
+
+case "$1" in
+ -patch) patch $patch_opts -p1 < $0;;
+ -unpatch) patch $patch_opts -p1 -R < $0;;
+ *)
+ echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+ exit 1;;
+esac
+
+exit 0
+
+@DPATCH@
+diff -urNad /var/home/sama/tmp/mcp-plugins/mcp-plugins-20030828/Makefile mcp-plugins-20030828/Makefile
+--- /var/home/sama/tmp/mcp-plugins/mcp-plugins-20030828/Makefile 2003-07-29 01:16:09.000000000 +0200
++++ mcp-plugins-20030828/Makefile 2003-11-20 10:06:57.000000000 +0100
+@@ -28,7 +28,7 @@
+
+
+ install:
+- cp *.so /usr/lib/ladspa
++ cp *.so $(DESTDIR)/usr/lib/ladspa
+
+ clean:
+ rm -f *~ *.o *.so
Added: mcp-plugins/trunk/debian/patches/11mvclpf24.dpatch
===================================================================
--- mcp-plugins/trunk/debian/patches/11mvclpf24.dpatch 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/patches/11mvclpf24.dpatch 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,37 @@
+#!/bin/sh -e
+## 11mvclpf24.dpatch by Free Ekanayaka <free@agnula.org>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
+if [ $# -ne 1 ]; then
+ echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+ exit 1
+fi
+
+[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
+patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
+
+case "$1" in
+ -patch) patch $patch_opts -p1 < $0;;
+ -unpatch) patch $patch_opts -p1 -R < $0;;
+ *)
+ echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
+ exit 1;;
+esac
+
+exit 0
+
+@DPATCH@
+diff -urNad /home/demudi/buster/mcp-plugins/mcp-plugins-0.0.3/mvclpf24_if.cc mcp-plugins-0.0.3/mvclpf24_if.cc
+--- /home/demudi/buster/mcp-plugins/mcp-plugins-0.0.3/mvclpf24_if.cc 2003-12-02 19:04:49.000000000 +0600
++++ mcp-plugins-0.0.3/mvclpf24_if.cc 2003-12-02 19:07:47.000000000 +0600
+@@ -192,7 +192,7 @@
+ { LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE, 0, 10 },
+ { LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE, 0, 1 },
+ { LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE, 0, 1 },
+- { LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE, 0, 4 },
++ { LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE | LADSPA_HINT_INTEGER, 0, 4 },
+ { LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE | LADSPA_HINT_DEFAULT_0, -15, 15 },
+ };
+
Added: mcp-plugins/trunk/debian/rules
===================================================================
--- mcp-plugins/trunk/debian/rules 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/rules 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,94 @@
+#!/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
+
+# This is the debhelper compatibility version to use.
+export DH_COMPAT=3
+
+include /usr/share/dpatch/dpatch.make
+
+ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -g
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+ INSTALL_PROGRAM += -s
+endif
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ # Add here commands to configure the package.
+
+ touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp patch-stamp
+ dh_testdir
+
+ # Add here commands to compile the package.
+ $(MAKE)
+ #/usr/bin/docbook-to-man debian/mcp-plugins.sgml > mcp-plugins.1
+
+ touch build-stamp
+
+clean: unpatch
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp configure-stamp
+
+ # Add here commands to clean up after the build process.
+ -$(MAKE) clean
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package into debian/mcp-plugins.
+ $(MAKE) install DESTDIR=$(CURDIR)/debian/mcp-plugins
+
+
+# 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
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_installinit
+ dh_installcron
+ dh_installman
+ dh_installinfo
+# dh_undocumented
+ dh_installchangelogs
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_makeshlibs
+ dh_installdeb
+# dh_perl
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure patch-stamp unpatch
Property changes on: mcp-plugins/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: mcp-plugins/trunk/debian/watch
===================================================================
--- mcp-plugins/trunk/debian/watch 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/debian/watch 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,4 @@
+version=2
+
+# Pattern
+http://users.skynet.be/solaris/linuxaudio/index.html downloads/MCP-plugins-(.*)\.tar\.bz2 debian uupdate
Added: mcp-plugins/trunk/mcp-plugins.1
===================================================================
--- mcp-plugins/trunk/mcp-plugins.1 2004-10-30 12:28:42 UTC (rev 48)
+++ mcp-plugins/trunk/mcp-plugins.1 2004-10-30 12:31:48 UTC (rev 49)
@@ -0,0 +1,51 @@
+...\" $Header: /aolnet/dev/src/CVS/sgml/docbook-to-man/cmd/docbook-to-man.sh,v 1.1.1.1 1998/11/13 21:31:59 db3l Exp $
+...\"
+...\" transcript compatibility for postscript use.
+...\"
+...\" synopsis: .P! <file.ps>
+...\"
+.de P!
+.fl
+\!!1 setgray
+.fl
+\\&.\"
+.fl
+\!!0 setgray
+.fl \" force out current output buffer
+\!!save /psv exch def currentpoint translate 0 0 moveto
+\!!/showpage{}def
+.fl \" prolog
+.sy sed -e 's/^/!/' \\$1\" bring in postscript file
+\!!psv restore
+.
+.de pF
+.ie \\*(f1 .ds f1 \\n(.f
+.el .ie \\*(f2 .ds f2 \\n(.f
+.el .ie \\*(f3 .ds f3 \\n(.f
+.el .ie \\*(f4 .ds f4 \\n(.f
+.el .tm ? font overflow
+.ft \\$1
+..
+.de fP
+.ie !\\*(f4 \{\
+. ft \\*(f4
+. ds f4\"
+' br \}
+.el .ie !\\*(f3 \{\
+. ft \\*(f3
+. ds f3\"
+' br \}
+.el .ie !\\*(f2 \{\
+. ft \\*(f2
+. ds f2\"
+' br \}
+.el .ie !\\*(f1 \{\
+. ft \\*(f1
+. ds f1\"
+' br \}
+.el .tm ? font underflow
+..
+.ds f1\"
+.ds f2\"
+.ds f3\"
+.ds f4\"