41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.6_pre7.ebuild,v 1.1 2009/03/18 18:34:34 chainsaw Exp $
|
|
|
|
inherit versionator eutils
|
|
|
|
DESCRIPTION="SpanDSP is a library of DSP functions for telephony."
|
|
HOMEPAGE="http://www.soft-switch.org/"
|
|
SRC_URI="http://www.soft-switch.org/downloads/spandsp/${P/_}.tgz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE="doc mmx sse sse2 sse3 sse4a sse5"
|
|
|
|
RDEPEND="media-libs/audiofile
|
|
media-libs/tiff
|
|
=sci-libs/fftw-3*"
|
|
DEPEND="${RDEPEND}
|
|
doc? ( app-doc/doxygen
|
|
dev-libs/libxslt )"
|
|
|
|
S=${WORKDIR}/${PN}-$(get_version_component_range 1-3)
|
|
|
|
src_compile() {
|
|
econf \
|
|
$(use_enable doc) \
|
|
$(use_enable mmx) \
|
|
$(use_enable sse) \
|
|
$(use_enable sse2) \
|
|
$(use_enable sse3) \
|
|
$(use_enable sse4a sse4a) \
|
|
$(use_enable sse5)
|
|
emake || die "emake failed."
|
|
}
|
|
|
|
src_install () {
|
|
emake DESTDIR="${D}" install || die "emake install failed."
|
|
dodoc AUTHORS NEWS README DueDiligence
|
|
use doc && dohtml -r doc/{api/html/*,t38_manual}
|
|
}
|