diff options
author | Steve Dibb <beandog@gentoo.org> | 2009-05-29 14:39:41 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2009-05-29 14:39:41 +0000 |
commit | 81adcfc952c6d79a831028c11b3d7af122bd2bd3 (patch) | |
tree | 4cc8df7f95ea463a5c9ff474200a545e904a9e2a /media-libs/speex/speex-1.1.12.ebuild | |
parent | Remove security vulnerable version. Fixes bug #271706. (diff) | |
download | historical-81adcfc952c6d79a831028c11b3d7af122bd2bd3.tar.gz historical-81adcfc952c6d79a831028c11b3d7af122bd2bd3.tar.bz2 historical-81adcfc952c6d79a831028c11b3d7af122bd2bd3.zip |
remove old
Package-Manager: portage-2.2_rc33/cvs/Linux x86_64
Diffstat (limited to 'media-libs/speex/speex-1.1.12.ebuild')
-rw-r--r-- | media-libs/speex/speex-1.1.12.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/media-libs/speex/speex-1.1.12.ebuild b/media-libs/speex/speex-1.1.12.ebuild deleted file mode 100644 index b46a7593594c..000000000000 --- a/media-libs/speex/speex-1.1.12.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/speex/speex-1.1.12.ebuild,v 1.13 2008/01/10 15:00:52 drac Exp $ - -inherit eutils autotools libtool - -DESCRIPTION="Speech encoding library" -HOMEPAGE="http://www.speex.org" -SRC_URI="http://downloads.xiph.org/releases/speex/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="ogg sse vorbis-psy" - -RDEPEND="ogg? ( >=media-libs/libogg-1.0 )" -DEPEND="${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # This is needed to fix parallel make issues. - # As this changes the Makefile.am, need to rebuild autotools. - sed -i -e 's:\$(top_builddir)/libspeex/libspeex.la:libspeex.la:' \ - "${S}"/libspeex/Makefile.am - - epatch "${FILESDIR}/${P}-malloc.patch" - - eautoreconf - - # Better being safe - elibtoolize -} - -src_compile() { - # FIXME: ogg autodetect only - econf \ - $(use_enable vorbis-psy) \ - $(use_enable sse) \ - || die "econf failed." - emake || die "emake failed." -} - -src_install () { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc AUTHORS ChangeLog README* TODO NEWS -} |