diff options
Diffstat (limited to 'media-libs/spandsp')
-rw-r--r-- | media-libs/spandsp/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/spandsp/spandsp-0.0.5_pre3.ebuild | 45 |
2 files changed, 52 insertions, 1 deletions
diff --git a/media-libs/spandsp/ChangeLog b/media-libs/spandsp/ChangeLog index fd77154b60ab..8646dee2ec93 100644 --- a/media-libs/spandsp/ChangeLog +++ b/media-libs/spandsp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/spandsp # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.11 2008/06/20 10:08:31 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.12 2008/06/24 16:15:41 drac Exp $ + +*spandsp-0.0.5_pre3 (24 Jun 2008) + + 24 Jun 2008; Samuli Suominen <drac@gentoo.org> +spandsp-0.0.5_pre3.ebuild: + Committing _pre3 as it's the required version for callweaver-1.2.0.1 which + might get added into Sunrise. *spandsp-0.0.5_pre4 (20 Jun 2008) diff --git a/media-libs/spandsp/spandsp-0.0.5_pre3.ebuild b/media-libs/spandsp/spandsp-0.0.5_pre3.ebuild new file mode 100644 index 000000000000..6c26f8e6663b --- /dev/null +++ b/media-libs/spandsp/spandsp-0.0.5_pre3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/spandsp-0.0.5_pre3.ebuild,v 1.1 2008/06/24 16:15:41 drac Exp $ + +inherit versionator + +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" +# test" + +RDEPEND="media-libs/audiofile + media-libs/tiff + =sci-libs/fftw-3*" +# test? ( x11-libs/libXft +# x11-libs/libXext +# x11-libs/libX11 +# dev-libs/libxml2 +# x11-libs/fltk )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen + dev-libs/libxslt )" + +S=${WORKDIR}/${PN}-$(get_version_component_range 1-3) + +src_compile() { + econf --disable-dependency-tracking \ + $(use_enable doc) \ + $(use_enable mmx) \ + $(use_enable sse) +# $(use_enable test tests) \ +# $(use_enable test test-data) + emake || die "emake failed." +} + +src_install () { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS NEWS README + use doc && dohtml -r doc/{api/html/*,t38_manual} +} |