diff options
author | Alexis Ballier <aballier@gentoo.org> | 2006-12-08 17:02:23 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2006-12-08 17:02:23 +0000 |
commit | ea5489174b353a7fc3379aef68da02d8920f475a (patch) | |
tree | 9d4bee2cd3a0e265b9179ae2683bf76621fde394 /media-libs/libsamplerate/libsamplerate-0.1.2-r1.ebuild | |
parent | Stable on ppc wrt bug 157356 (diff) | |
download | gentoo-2-ea5489174b353a7fc3379aef68da02d8920f475a.tar.gz gentoo-2-ea5489174b353a7fc3379aef68da02d8920f475a.tar.bz2 gentoo-2-ea5489174b353a7fc3379aef68da02d8920f475a.zip |
Fixing automagic dep on libsndfile, bug #155025
(Portage version: 2.1.2_rc2-r5)
Diffstat (limited to 'media-libs/libsamplerate/libsamplerate-0.1.2-r1.ebuild')
-rw-r--r-- | media-libs/libsamplerate/libsamplerate-0.1.2-r1.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/media-libs/libsamplerate/libsamplerate-0.1.2-r1.ebuild b/media-libs/libsamplerate/libsamplerate-0.1.2-r1.ebuild new file mode 100644 index 000000000000..3a74834c9244 --- /dev/null +++ b/media-libs/libsamplerate/libsamplerate-0.1.2-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.2-r1.ebuild,v 1.1 2006/12/08 17:02:23 aballier Exp $ + +WANT_AUTOCONF=2.5 +WANT_AUTOMAKE=1.7 + +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 fftw" + +RDEPEND="fftw? ( >=sci-libs/fftw-3.0.1 ) + sndfile? ( >=media-libs/libsndfile-1.0.2 )" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.14.0" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}/${P}-automagic.patch" + eautoreconf +} + +src_compile() { + local myconf + + use fftw || myconf="${myconf} --disable-fftw" + + econf \ + ${myconf} \ + $(use_enable sndfile) \ + --disable-dependency-tracking \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog NEWS README + dohtml doc/*.html doc/*.css doc/*.png +} |