You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/freeverb3/freeverb3-2.5.13-r2.ebuild

59 lines
1.6 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=2
inherit eutils autotools versionator
MY_PV=$(replace_version_separator 3 '')
DESCRIPTION="High Quality Reverb and Impulse Response Convolution library including XMMS/Audacious Effect plugins"
HOMEPAGE="http://freeverb3.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="audacious jack plugdouble cpu_flags_x86_sse cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_sse4_1 cpu_flags_x86_3dnow forcefpu"
RDEPEND=">=sci-libs/fftw-3.0.1
audacious? ( <media-sound/audacious-2.5
media-libs/libsndfile )
jack? ( media-sound/jack-audio-connection-kit
media-libs/libsndfile )"
DEPEND=${RDEPEND}
S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"
src_prepare() {
epatch "${FILESDIR}"/${P}-respect-disable-sse.patch
eautoreconf
epatch "${FILESDIR}"/${P}-fix-sse1v2-assembly.patch
}
src_configure() {
econf \
--enable-release \
--disable-bmp \
--disable-pluginit \
$(use_enable audacious) \
$(use_enable jack) \
$(use_enable plugdouble) \
$(use_enable cpu_flags_x86_3dnow 3dnow) \
$(use_enable cpu_flags_x86_sse sse) \
$(use_enable cpu_flags_x86_sse2 sse2) \
$(use_enable cpu_flags_x86_sse3 sse3) \
$(use_enable cpu_flags_x86_sse4_1 sse4) \
$(use_enable forcefpu) \
|| die "econf failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog README || die 'dodoc failed'
insinto /usr/share/${PN}/samples/IR
doins samples/IR/*.wav || die
}