diff options
author | Samuli Suominen <drac@gentoo.org> | 2007-04-14 12:38:36 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2007-04-14 12:38:36 +0000 |
commit | 58236994575e477a84af83619f936b93cd0ded77 (patch) | |
tree | eeb9ca27990f5d5928f63099713d05738ac0de29 /media-libs/libsoundtouch | |
parent | Close bug 148695 (again) (diff) | |
download | gentoo-2-58236994575e477a84af83619f936b93cd0ded77.tar.gz gentoo-2-58236994575e477a84af83619f936b93cd0ded77.tar.bz2 gentoo-2-58236994575e477a84af83619f936b93cd0ded77.zip |
Punt old version too.
(Portage version: 2.1.2.3)
Diffstat (limited to 'media-libs/libsoundtouch')
3 files changed, 0 insertions, 66 deletions
diff --git a/media-libs/libsoundtouch/files/1.3.1-respect-cflags.patch b/media-libs/libsoundtouch/files/1.3.1-respect-cflags.patch deleted file mode 100644 index fe4de1a69009..000000000000 --- a/media-libs/libsoundtouch/files/1.3.1-respect-cflags.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -urN soundtouch-1.3.1.orig/source/SoundTouch/Makefile.am soundtouch-1.3.1/source/SoundTouch/Makefile.am ---- soundtouch-1.3.1.orig/source/SoundTouch/Makefile.am 2006-08-22 15:19:12.000000000 -0700 -+++ soundtouch-1.3.1/source/SoundTouch/Makefile.am 2006-08-22 15:19:29.000000000 -0700 -@@ -35,7 +35,7 @@ -
- # ??? test for -fcheck-new in configure.ac
- # other compiler flags to add
--AM_CXXFLAGS=-O3 -msse -fcheck-new -I../../include
-+AM_CXXFLAGS=-fcheck-new -I../../include
-
- # other linking flags to add
- #libSoundTouch_la_LIBADD=
diff --git a/media-libs/libsoundtouch/files/digest-libsoundtouch-1.3.1 b/media-libs/libsoundtouch/files/digest-libsoundtouch-1.3.1 deleted file mode 100644 index 4cc1082213e1..000000000000 --- a/media-libs/libsoundtouch/files/digest-libsoundtouch-1.3.1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 5e0185e81dbba2f2eed8581b7664ab04 soundtouch-1.3.1.tar.gz 314641 -RMD160 713526a201e8ba3e3180718ebf2cccdb285a9e1e soundtouch-1.3.1.tar.gz 314641 -SHA256 f268fb05200fc55e50e88772765a822628f1a0157a4a57cc9545ac50a0d4fd9c soundtouch-1.3.1.tar.gz 314641 diff --git a/media-libs/libsoundtouch/libsoundtouch-1.3.1.ebuild b/media-libs/libsoundtouch/libsoundtouch-1.3.1.ebuild deleted file mode 100644 index e9a9ab4635f2..000000000000 --- a/media-libs/libsoundtouch/libsoundtouch-1.3.1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.3.1.ebuild,v 1.5 2007/03/30 19:41:15 grobian Exp $ - -inherit autotools toolchain-funcs - -IUSE="static sse" - -MY_P="${P/lib}" - -DESCRIPTION="Audio processing library for changing tempo, pitch and playback rates." -HOMEPAGE="http://www.surina.net/soundtouch/" -SRC_URI="http://www.surina.net/soundtouch/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" - -RDEPEND="virtual/libc" -DEPEND="app-arch/unzip" - -S="${WORKDIR}/${MY_P}" - -pkg_setup() { - if [[ $(tc-arch) == "x86" ]] && ! use sse; then - eerror "You asked not to use SSE, but this package cannot be compiled on" - eerror "your architecture without those instructions enabled." - die "We're sorry, but you cannot use this package without SSE." - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PV}-respect-cflags.patch - eautoreconf -} - -src_compile() { - econf $myconf \ - $(use_enable static) \ - --disable-integer-samples \ - --with-pic || die "./configure failed" - # fixes C(XX)FLAGS from configure, so we can use *ours* - emake CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" || die "emake failed" -} - -src_install() { - make DESTDIR="${D}" pkgdocdir="/usr/share/doc/${PF}" install || die - rm -f ${D}/usr/share/doc/${PF}/COPYING.TXT # remove obsolete LICENCE file -} |