diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-23 21:13:56 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-23 21:13:56 +0000 |
commit | 49818129fb6a24f79066eece246e182a8bd5f41a (patch) | |
tree | ed9ce51090f6775efa07761c4ad0e06073726171 | |
parent | Version bump (#275168). Add pcre USE flag. (diff) | |
download | gentoo-2-49818129fb6a24f79066eece246e182a8bd5f41a.tar.gz gentoo-2-49818129fb6a24f79066eece246e182a8bd5f41a.tar.bz2 gentoo-2-49818129fb6a24f79066eece246e182a8bd5f41a.zip |
remove old
(Portage version: 2.2_rc33/cvs/Linux x86_64)
-rw-r--r-- | media-libs/rubberband/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/rubberband/files/rubberband-1.0.1-gcc43.patch | 91 | ||||
-rw-r--r-- | media-libs/rubberband/files/rubberband-1.2-gcc43.patch | 12 | ||||
-rw-r--r-- | media-libs/rubberband/rubberband-1.0.1.ebuild | 39 | ||||
-rw-r--r-- | media-libs/rubberband/rubberband-1.2.ebuild | 40 |
5 files changed, 6 insertions, 183 deletions
diff --git a/media-libs/rubberband/ChangeLog b/media-libs/rubberband/ChangeLog index ce41ba16c942..54cc6f1f908e 100644 --- a/media-libs/rubberband/ChangeLog +++ b/media-libs/rubberband/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/rubberband # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/ChangeLog,v 1.9 2009/06/11 21:06:42 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/ChangeLog,v 1.10 2009/06/23 21:13:56 aballier Exp $ + + 23 Jun 2009; Alexis Ballier <aballier@gentoo.org> + -rubberband-1.0.1.ebuild, -files/rubberband-1.0.1-gcc43.patch, + -rubberband-1.2.ebuild, -files/rubberband-1.2-gcc43.patch: + remove old 11 Jun 2009; Markus Meier <maekke@gentoo.org> rubberband-1.3.ebuild: amd64 stable, bug #273092 diff --git a/media-libs/rubberband/files/rubberband-1.0.1-gcc43.patch b/media-libs/rubberband/files/rubberband-1.0.1-gcc43.patch deleted file mode 100644 index 3bd531c7696c..000000000000 --- a/media-libs/rubberband/files/rubberband-1.0.1-gcc43.patch +++ /dev/null @@ -1,91 +0,0 @@ -diff -NrU5 rubberband-1.0.1.orig/src/FFT.cpp rubberband-1.0.1/src/FFT.cpp ---- rubberband-1.0.1.orig/src/FFT.cpp 2007-12-13 23:15:03.000000000 +0100 -+++ rubberband-1.0.1/src/FFT.cpp 2008-04-27 23:40:14.000000000 +0200 -@@ -21,10 +21,11 @@ - #include <cmath> - #include <iostream> - #include <map> - #include <cstdio> - #include <vector> -+#include <cstdlib> - - namespace RubberBand { - - class FFTImpl - { -diff -NrU5 rubberband-1.0.1.orig/src/main.cpp rubberband-1.0.1/src/main.cpp ---- rubberband-1.0.1.orig/src/main.cpp 2007-12-13 23:15:03.000000000 +0100 -+++ rubberband-1.0.1/src/main.cpp 2008-04-27 23:42:16.000000000 +0200 -@@ -13,10 +13,12 @@ - */ - - #include "RubberBandStretcher.h" - - #include <iostream> -+#include <cstring> -+#include <cstdlib> - #include <sndfile.h> - #include <cmath> - #include <sys/time.h> - #include <time.h> - #include "sysutils.h" -diff -NrU5 rubberband-1.0.1.orig/src/RingBuffer.h rubberband-1.0.1/src/RingBuffer.h ---- rubberband-1.0.1.orig/src/RingBuffer.h 2007-12-13 23:15:03.000000000 +0100 -+++ rubberband-1.0.1/src/RingBuffer.h 2008-04-27 23:15:08.000000000 +0200 -@@ -14,10 +14,11 @@ - - #ifndef _RUBBERBAND_RINGBUFFER_H_ - #define _RUBBERBAND_RINGBUFFER_H_ - - #include <sys/types.h> -+#include <cstring> - - #ifndef _WIN32 - #include <sys/mman.h> - #endif - -diff -NrU5 rubberband-1.0.1.orig/src/StretchCalculator.cpp rubberband-1.0.1/src/StretchCalculator.cpp ---- rubberband-1.0.1.orig/src/StretchCalculator.cpp 2007-12-13 23:15:03.000000000 +0100 -+++ rubberband-1.0.1/src/StretchCalculator.cpp 2008-04-27 23:38:56.000000000 +0200 -@@ -17,10 +17,11 @@ - #include <math.h> - #include <iostream> - #include <deque> - #include <set> - #include <cassert> -+#include <algorithm> - - namespace RubberBand - { - - StretchCalculator::StretchCalculator(size_t sampleRate, -diff -NrU5 rubberband-1.0.1.orig/src/Thread.cpp rubberband-1.0.1/src/Thread.cpp ---- rubberband-1.0.1.orig/src/Thread.cpp 2007-12-13 23:15:03.000000000 +0100 -+++ rubberband-1.0.1/src/Thread.cpp 2008-04-27 23:41:09.000000000 +0200 -@@ -13,10 +13,11 @@ - */ - - #include "Thread.h" - - #include <iostream> -+#include <cstdlib> - - #include <sys/time.h> - #include <time.h> - - //#define DEBUG_THREAD 1 -diff -NrU5 rubberband-1.0.1.orig/src/Window.h rubberband-1.0.1/src/Window.h ---- rubberband-1.0.1.orig/src/Window.h 2007-12-13 23:15:03.000000000 +0100 -+++ rubberband-1.0.1/src/Window.h 2008-04-27 23:35:43.000000000 +0200 -@@ -16,10 +16,11 @@ - #define _RUBBERBAND_WINDOW_H_ - - #include <cmath> - #include <iostream> - #include <map> -+#include <cstdlib> - - namespace RubberBand { - - enum WindowType { - RectangularWindow, diff --git a/media-libs/rubberband/files/rubberband-1.2-gcc43.patch b/media-libs/rubberband/files/rubberband-1.2-gcc43.patch deleted file mode 100644 index eafa0924e12c..000000000000 --- a/media-libs/rubberband/files/rubberband-1.2-gcc43.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: rubberband-1.2/src/sysutils.cpp -=================================================================== ---- rubberband-1.2.orig/src/sysutils.cpp -+++ rubberband-1.2/src/sysutils.cpp -@@ -26,6 +26,7 @@ - #endif /* !_WIN32 */ - - #include <iostream> -+#include <cstdlib> - - - namespace RubberBand { diff --git a/media-libs/rubberband/rubberband-1.0.1.ebuild b/media-libs/rubberband/rubberband-1.0.1.ebuild deleted file mode 100644 index 0d71865f47ad..000000000000 --- a/media-libs/rubberband/rubberband-1.0.1.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/rubberband-1.0.1.ebuild,v 1.6 2008/05/15 10:33:17 corsair Exp $ - -inherit eutils multilib - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="http://www.breakfastquay.com/rubberband/" -SRC_URI="http://www.breakfastquay.com/rubberband/files/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="media-libs/vamp-plugin-sdk - media-libs/libsamplerate - media-libs/libsndfile - media-libs/ladspa-sdk - =sci-libs/fftw-3*" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc43.patch -} - -src_install() { - emake INSTALL_BINDIR="${D}/usr/bin" \ - INSTALL_INCDIR="${D}/usr/include/rubberband" \ - INSTALL_LIBDIR="${D}/usr/$(get_libdir)" \ - INSTALL_VAMPDIR="${D}/usr/$(get_libdir)/vamp" \ - INSTALL_LADSPADIR="${D}/usr/$(get_libdir)/ladspa" \ - INSTALL_PKGDIR="${D}/usr/$(get_libdir)/pkgconfig" \ - install || die "make install failed" - dodoc README -} diff --git a/media-libs/rubberband/rubberband-1.2.ebuild b/media-libs/rubberband/rubberband-1.2.ebuild deleted file mode 100644 index 60526d4da38b..000000000000 --- a/media-libs/rubberband/rubberband-1.2.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/rubberband-1.2.ebuild,v 1.1 2008/07/11 16:14:43 aballier Exp $ - -inherit eutils multilib - -DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" -HOMEPAGE="http://www.breakfastquay.com/rubberband/" -SRC_URI="http://www.breakfastquay.com/rubberband/files/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -RDEPEND="media-libs/vamp-plugin-sdk - media-libs/libsamplerate - media-libs/libsndfile - media-libs/ladspa-sdk - =sci-libs/fftw-3*" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-gcc43.patch -} - -src_install() { - emake INSTALL_BINDIR="${D}/usr/bin" \ - INSTALL_INCDIR="${D}/usr/include/rubberband" \ - INSTALL_LIBDIR="${D}/usr/$(get_libdir)" \ - INSTALL_VAMPDIR="${D}/usr/$(get_libdir)/vamp" \ - INSTALL_LADSPADIR="${D}/usr/$(get_libdir)/ladspa" \ - INSTALL_LRDFDIR="${D}/usr/share/ladspa/rdf" \ - INSTALL_PKGDIR="${D}/usr/$(get_libdir)/pkgconfig" \ - install || die "make install failed" - dodoc README -} |