diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-05-05 07:25:39 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-05-05 07:25:39 +0000 |
commit | 2667b5babcb1d528b5105295bbbd13abc24b1f81 (patch) | |
tree | c2e31f8a224aef5a22bf3a8c25f289cee2ff1853 /media-libs | |
parent | remove old (diff) | |
download | gentoo-2-2667b5babcb1d528b5105295bbbd13abc24b1f81.tar.gz gentoo-2-2667b5babcb1d528b5105295bbbd13abc24b1f81.tar.bz2 gentoo-2-2667b5babcb1d528b5105295bbbd13abc24b1f81.zip |
version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/rubberband/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/rubberband/rubberband-1.5.0.ebuild | 35 |
2 files changed, 43 insertions, 2 deletions
diff --git a/media-libs/rubberband/ChangeLog b/media-libs/rubberband/ChangeLog index b7f7f7bba35d..79ddd76e8f13 100644 --- a/media-libs/rubberband/ChangeLog +++ b/media-libs/rubberband/ChangeLog @@ -1,6 +1,12 @@ # 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.11 2009/09/26 13:22:11 aballier Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/ChangeLog,v 1.12 2010/05/05 07:25:38 aballier Exp $ + +*rubberband-1.5.0 (05 May 2010) + + 05 May 2010; Alexis Ballier <aballier@gentoo.org> + +rubberband-1.5.0.ebuild: + version bump *rubberband-1.4 (26 Sep 2009) diff --git a/media-libs/rubberband/rubberband-1.5.0.ebuild b/media-libs/rubberband/rubberband-1.5.0.ebuild new file mode 100644 index 000000000000..3adae98e3d37 --- /dev/null +++ b/media-libs/rubberband/rubberband-1.5.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/rubberband/rubberband-1.5.0.ebuild,v 1.1 2010/05/05 07:25:39 aballier Exp $ + +EAPI=2 +inherit multilib + +DESCRIPTION="An audio time-stretching and pitch-shifting library and utility program" +HOMEPAGE="http://www.breakfastquay.com/rubberband/" +SRC_URI="http://code.breakfastquay.com/attachments/download/1/${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_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 "emake install failed" + dodoc CHANGELOG +} |