debian/0000755000000000000000000000000012277357344007204 5ustar debian/watch0000644000000000000000000000007112277357043010227 0ustar version=3 http://sf.net/abgate/abGate-([\d\.]+)\.tar\.gz debian/copyright0000644000000000000000000000444412277357043011141 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: abGate Upstream-Contact: Antanas Bružas Source: http://sourceforge.net/projects/abgate/files/ Files: * Copyright: 2011-2012 Antanas Bružas License: LGPL-3+ Files: ui.h Copyright: 2009-2010 David Robillard 2006 Steve Harris, David Robillard 2000-2002 Richard W.E. Furse, Paul Barton-Davis 2006-2008 Lars Luthman License: LGPL-2.1+ Files: debian/* Copyright: Alessio Treglia License: LGPL-3+ License: LGPL-3+ This library 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 3 of the License, or (at your option) any later version. . This library 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. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Comment: On Debian system, the full text of the GNU Lesser General Public License version 3 can be found in `/usr/share/common-licenses/LGPL-3'. License: LGPL-2.1+ This library 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 library 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. . You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Comment: On Debian system, the full text of the GNU Lesser General Public License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1'. debian/changelog0000644000000000000000000000162412277357400011052 0ustar abgate (1.1.7-1) unstable; urgency=low * New upstream release. * Bump Standards. * Set dh/compat 9. * Patch refreshed. * Update VCS urls. -- Jaromír Mikeš Sat, 01 Feb 2014 21:44:38 +0100 abgate (1.1.6-1) unstable; urgency=low * New upstream release. * Build-Depends on libqt4-dev, qt4-dev-tools. * Add patch to port abGate to the LV2's new release. * Replace lv2core with lv2-dev. * Bump Standards. * Update debian/copyright. -- Alessio Treglia Mon, 14 May 2012 18:19:46 +0200 abgate (1.1.3-1) unstable; urgency=low * New upstream bugfix release. * Drop 0001-buildsystem.patch patch, accepted upstream. -- Alessio Treglia Mon, 11 Apr 2011 09:27:28 +0200 abgate (1.1.2-1) unstable; urgency=low * Initial release. (Closes: #616395) -- Alessio Treglia Fri, 04 Mar 2011 01:31:19 +0100 debian/control0000644000000000000000000000170312277357043010604 0ustar Source: abgate Priority: optional Section: sound Maintainer: Debian Multimedia Maintainers Uploaders: Alessio Treglia , Jaromír Mikeš Build-Depends: debhelper (>= 9), libgtkmm-2.4-dev, libqt4-dev, lv2-dev, pkg-config, qt4-dev-tools Standards-Version: 3.9.5 Vcs-Git: git://anonscm.debian.org/pkg-multimedia/abgate.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-multimedia/abgate.git Homepage: http://abgate.sourceforge.net Package: abgate Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Provides: lv2-plugin Description: LV2 noise gate plugin abGate is a LV2 noise gate plugin in the LV2 format to manage noise. A noise gate is a component which attenuates an audio signal when it falls below a set threshold, so it can be applied to an audio track which has one or more periods of silence where no noise should be apparent. debian/compat0000644000000000000000000000000212277357043010376 0ustar 9 debian/rules0000755000000000000000000000007012277357043010255 0ustar #!/usr/bin/make -f LDFLAGS+=-Wl,--as-needed %: dh $@ debian/source/0000755000000000000000000000000012277357043010500 5ustar debian/source/format0000644000000000000000000000001412277357043011706 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000005712277357043010621 0ustar [DEFAULT] pristine-tar = True sign-tags = True debian/patches/0000755000000000000000000000000012277357043010627 5ustar debian/patches/series0000644000000000000000000000003212277357043012037 0ustar 0001-lv2core_to_lv2.patch debian/patches/0001-lv2core_to_lv2.patch0000644000000000000000000000250212277357043015066 0ustar Description: Port to LV2's new release. Author: Alessio Treglia Forwarded: Antanas Bružas --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Index: abgate/Makefile =================================================================== --- abgate.orig/Makefile 2014-02-01 21:48:06.998316241 +0100 +++ abgate/Makefile 2014-02-01 21:48:06.994316226 +0100 @@ -13,10 +13,10 @@ cd abGateQt; qmake-qt4; make gate.so: gate.cpp - g++ $(LDFLAGS) -O3 -shared -fPIC -DPIC gate.cpp `pkg-config --cflags --libs lv2core` -o gate.so + g++ $(LDFLAGS) -O3 -shared -fPIC -DPIC gate.cpp `pkg-config --cflags --libs lv2` -o gate.so gate_gui.so: gate_gui.cpp main_window.cpp main_window.h knob.cpp knob.h toggle.cpp toggle.h preset_widget.cpp preset_widget.h presets.cpp presets.h preset.cpp preset.h gate_const.h ui.h plugin_configuration.h - g++ $(LDFLAGS) -O3 -shared -fPIC -DPIC gate_gui.cpp main_window.cpp knob.cpp toggle.cpp preset_widget.cpp presets.cpp preset.cpp `pkg-config --cflags gtkmm-2.4 --libs lv2core gthread-2.0` -o gate_gui.so + g++ $(LDFLAGS) -O3 -shared -fPIC -DPIC gate_gui.cpp main_window.cpp knob.cpp toggle.cpp preset_widget.cpp presets.cpp preset.cpp `pkg-config --cflags gtkmm-2.4 --libs lv2 gthread-2.0` -o gate_gui.so install: $(BUNDLE) mkdir -p $(INSTALL_DIR)