From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2D34913881D for ; Wed, 23 Sep 2015 14:23:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40655E0863; Wed, 23 Sep 2015 14:23:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95666E0855 for ; Wed, 23 Sep 2015 14:23:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4F9B33408B8 for ; Wed, 23 Sep 2015 14:23:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56674207 for ; Wed, 23 Sep 2015 14:23:28 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1443018202.d05671f5c4950295e3a11d5e37a851c1b181a290.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/rubberband/rubberband-1.8.1-r1.ebuild X-VCS-Directories: media-libs/rubberband/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: d05671f5c4950295e3a11d5e37a851c1b181a290 X-VCS-Branch: master Date: Wed, 23 Sep 2015 14:23:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fcacc333-2495-4509-8e94-4b9295ea3cf8 X-Archives-Hash: 8330db399494d453632510fdc322287d commit: d05671f5c4950295e3a11d5e37a851c1b181a290 Author: Alexis Ballier gentoo org> AuthorDate: Wed Sep 23 14:17:21 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Wed Sep 23 14:23:22 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d05671f5 media-libs/rubberband: Convert to multilib. Package-Manager: portage-2.2.21 media-libs/rubberband/rubberband-1.8.1-r1.ebuild | 47 ++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/media-libs/rubberband/rubberband-1.8.1-r1.ebuild b/media-libs/rubberband/rubberband-1.8.1-r1.ebuild new file mode 100644 index 0000000..45423a7 --- /dev/null +++ b/media-libs/rubberband/rubberband-1.8.1-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit multilib multilib-minimal + +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/34/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86" +IUSE="static-libs" + +RDEPEND="media-libs/vamp-plugin-sdk[${MULTILIB_USEDEP}] + media-libs/libsamplerate[${MULTILIB_USEDEP}] + media-libs/libsndfile + media-libs/ladspa-sdk + sci-libs/fftw:3.0[${MULTILIB_USEDEP}]" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + if ! use static-libs ; then + sed -e '/^all:/s/$(STATIC_TARGET)//' \ + -e '/^\tcp $(STATIC_TARGET)/d' \ + -i Makefile.in || die + fi + multilib_copy_sources +} + +multilib_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 +} + +multilib_src_install_all() { + dodoc CHANGELOG README.txt +}