diff options
author | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-24 12:04:23 +0000 |
---|---|---|
committer | Mounir Lamouri <volkmar@gentoo.org> | 2009-07-24 12:04:23 +0000 |
commit | 150a8a23cbf4d51428f43e045f1bf33133350d58 (patch) | |
tree | 20f307a2dd02e2bffbb462ef17562ec212de4676 /media-libs/spandsp | |
parent | Disable telx when zvbi is enabled. (diff) | |
download | gentoo-2-150a8a23cbf4d51428f43e045f1bf33133350d58.tar.gz gentoo-2-150a8a23cbf4d51428f43e045f1bf33133350d58.tar.bz2 gentoo-2-150a8a23cbf4d51428f43e045f1bf33133350d58.zip |
As 0.0.6_pre7 is now unmasked, removing 0.0.6_pre3 which doesn't work with amd64
Fix bug 271932
(Portage version: 13845-svn/cvs/Linux i686)
Diffstat (limited to 'media-libs/spandsp')
-rw-r--r-- | media-libs/spandsp/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/spandsp/spandsp-0.0.6_pre3.ebuild | 41 |
2 files changed, 6 insertions, 42 deletions
diff --git a/media-libs/spandsp/ChangeLog b/media-libs/spandsp/ChangeLog index 9c5bda2869d6..548b2ef29357 100644 --- a/media-libs/spandsp/ChangeLog +++ b/media-libs/spandsp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/spandsp # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.16 2009/03/18 18:34:34 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/spandsp/ChangeLog,v 1.17 2009/07/24 12:04:23 volkmar Exp $ + + 24 Jul 2009; Mounir Lamouri <volkmar@gentoo.org> + -spandsp-0.0.6_pre3.ebuild: + As 0.0.6_pre7 is now unmasked, removing 0.0.6_pre3 which doesn't work with + amd64. Fix bug 271932 *spandsp-0.0.6_pre7 (18 Mar 2009) diff --git a/media-libs/spandsp/spandsp-0.0.6_pre3.ebuild b/media-libs/spandsp/spandsp-0.0.6_pre3.ebuild deleted file mode 100644 index 80e4bbf50255..000000000000 --- a/media-libs/spandsp/spandsp-0.0.6_pre3.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# 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_pre3.ebuild,v 1.2 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} -} |