diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-02-08 09:41:03 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-02-08 09:41:03 +0000 |
commit | 27d1741de91a0509819457b23ff49f38116a988d (patch) | |
tree | 250dc3ae2247598f187c9d9ac8ea575c4984179e | |
parent | Version bump (diff) | |
download | gentoo-2-27d1741de91a0509819457b23ff49f38116a988d.tar.gz gentoo-2-27d1741de91a0509819457b23ff49f38116a988d.tar.bz2 gentoo-2-27d1741de91a0509819457b23ff49f38116a988d.zip |
version bump, by Tim Harder <thorium90@gmail.com>, bug #257870
(Portage version: 2.2_rc23/cvs/Linux x86_64)
-rw-r--r-- | media-libs/libsamplerate/ChangeLog | 10 | ||||
-rw-r--r-- | media-libs/libsamplerate/libsamplerate-0.1.6.ebuild | 44 |
2 files changed, 52 insertions, 2 deletions
diff --git a/media-libs/libsamplerate/ChangeLog b/media-libs/libsamplerate/ChangeLog index 3e5ee8f9213d..5d6625c6095d 100644 --- a/media-libs/libsamplerate/ChangeLog +++ b/media-libs/libsamplerate/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/libsamplerate -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.58 2008/09/18 12:44:12 ranger Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.59 2009/02/08 09:41:03 aballier Exp $ + +*libsamplerate-0.1.6 (08 Feb 2009) + + 08 Feb 2009; Alexis Ballier <aballier@gentoo.org> + +libsamplerate-0.1.6.ebuild: + version bump, by Tim Harder <thorium90@gmail.com>, bug #257870 18 Sep 2008; Brent Baude <ranger@gentoo.org> libsamplerate-0.1.4.ebuild: stable ppc64, bug 237037 diff --git a/media-libs/libsamplerate/libsamplerate-0.1.6.ebuild b/media-libs/libsamplerate/libsamplerate-0.1.6.ebuild new file mode 100644 index 000000000000..dd1d004230b2 --- /dev/null +++ b/media-libs/libsamplerate/libsamplerate-0.1.6.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.6.ebuild,v 1.1 2009/02/08 09:41:03 aballier Exp $ + +inherit eutils autotools + +DESCRIPTION="Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio" +HOMEPAGE="http://www.mega-nerd.com/SRC/" +SRC_URI="http://www.mega-nerd.com/SRC/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="sndfile" + +RDEPEND="sndfile? ( >=media-libs/libsndfile-1.0.2 )" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.14" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.1.3-dontbuild-tests-examples.patch + + # Fix for autoconf 2.62 + sed -i -e '/AC_MSG_WARN(\[\[/d' \ + "${S}/acinclude.m4" + + eautoreconf +} + +src_compile() { + econf \ + --disable-fftw \ + $(use_enable sndfile) \ + --disable-dependency-tracking + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README + dohtml doc/*.html doc/*.css doc/*.png +} |