# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/freeverb3/freeverb3-2.6.4.ebuild,v 1.1 2011/12/31 16:56:45 sping Exp $ EAPI=2 inherit multilib versionator DESCRIPTION="High Quality Reverb and Impulse Response Convolution library including XMMS/Audacious Effect plugins" HOMEPAGE="http://freeverb3.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="audacious avx jack plugdouble sse sse2 sse3 sse4 3dnow forcefpu" RDEPEND=">=sci-libs/fftw-3.0.1 audacious? ( =2.6.0) to the outside econf \ --enable-release \ --disable-bmp \ --disable-pluginit \ $(use_enable audacious) \ $(use_enable jack) \ $(use_enable plugdouble) \ --disable-autocflags \ $(use_enable 3dnow) \ $(use_enable sse) \ $(use_enable sse2) \ $(use_enable sse3) \ $(use_enable sse4) \ $(use_enable avx) \ --disable-fma \ --disable-fma4 \ $(use_enable forcefpu) \ || die "econf failed" } src_install() { emake DESTDIR="${D}" install || die "emake install failed" dodoc ChangeLog README || die 'dodoc failed' if use audacious ; then find "${D}/usr/$(get_libdir)/audacious/" -name '*.la' -print -delete || die fi insinto /usr/share/${PN}/samples/IR doins samples/IR/*.wav || die }