summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2013-01-03 05:52:25 +0000
committerTim Harder <radhermit@gentoo.org>2013-01-03 05:52:25 +0000
commit28ab49771cd32c79444fbc24a84efccfec95002b (patch)
tree4edc11db78e1a17c6a981f85e782d456257a2488 /media-libs/libsoundtouch
parentVersion bump. (diff)
downloadgentoo-2-28ab49771cd32c79444fbc24a84efccfec95002b.tar.gz
gentoo-2-28ab49771cd32c79444fbc24a84efccfec95002b.tar.bz2
gentoo-2-28ab49771cd32c79444fbc24a84efccfec95002b.zip
Remove old.
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-libs/libsoundtouch')
-rw-r--r--media-libs/libsoundtouch/ChangeLog6
-rw-r--r--media-libs/libsoundtouch/files/libsoundtouch-1.6.0-flags.patch25
-rw-r--r--media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild48
3 files changed, 5 insertions, 74 deletions
diff --git a/media-libs/libsoundtouch/ChangeLog b/media-libs/libsoundtouch/ChangeLog
index a083c2e1cc6b..6e74cb40fe5d 100644
--- a/media-libs/libsoundtouch/ChangeLog
+++ b/media-libs/libsoundtouch/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-libs/libsoundtouch
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.63 2013/01/03 05:50:52 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/ChangeLog,v 1.64 2013/01/03 05:52:25 radhermit Exp $
+
+ 03 Jan 2013; Tim Harder <radhermit@gentoo.org> -libsoundtouch-1.6.0.ebuild,
+ -files/libsoundtouch-1.6.0-flags.patch:
+ Remove old.
*libsoundtouch-1.7.1 (03 Jan 2013)
diff --git a/media-libs/libsoundtouch/files/libsoundtouch-1.6.0-flags.patch b/media-libs/libsoundtouch/files/libsoundtouch-1.6.0-flags.patch
deleted file mode 100644
index 94c37dbbe409..000000000000
--- a/media-libs/libsoundtouch/files/libsoundtouch-1.6.0-flags.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- soundtouch.orig/source/SoundStretch/Makefile.am
-+++ soundtouch/source/SoundStretch/Makefile.am
-@@ -43,11 +43,5 @@
- ## linker.
- soundstretch_LDADD=../SoundTouch/libSoundTouch.la -lm
-
--## linker flags
--soundstretch_LDFLAGS=-s
--
--## additional compiler flags
--soundstretch_CXXFLAGS=-O3
--
- #clean-local:
- # -rm -f additional-files-to-remove-on-make-clean
---- soundtouch.orig/source/SoundTouch/Makefile.am
-+++ soundtouch/source/SoundTouch/Makefile.am
-@@ -36,7 +36,7 @@
- # Note by authore: '-msse2' might not work in non-X86 compilations. If someone can
- # fix this script to automatically check for CPU architecture, please submit a patch
- # to me.
--AM_CXXFLAGS=-O3 -msse2 -fcheck-new -I../../include
-+AM_CXXFLAGS=-fcheck-new -I../../include
-
-
- # other linking flags to add
diff --git a/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild b/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
deleted file mode 100644
index d9020b2971db..000000000000
--- a/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsoundtouch/libsoundtouch-1.6.0.ebuild,v 1.14 2012/08/06 00:52:47 blueness Exp $
-
-EAPI=4
-inherit autotools eutils flag-o-matic
-
-MY_PN=${PN/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/${P/lib}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 x86"
-IUSE="sse2 static-libs"
-
-S=${WORKDIR}/${MY_PN}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-flags.patch
- sed -i -e "s:^\(pkgdoc_DATA=\)COPYING.TXT :\1:" Makefile.am || die
- eautoreconf
-
- if use sse2; then
- append-flags -msse2
- else
- sed -i -e '/#define SOUNDTOUCH_ALLOW_X86_OPTIMIZATIONS/d' \
- include/STTypes.h || die
- fi
-}
-
-src_configure() {
- econf \
- --enable-shared \
- --disable-integer-samples \
- $(use_enable static-libs static)
-}
-
-src_compile() {
- emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
-}
-
-src_install() {
- emake DESTDIR="${D}" pkgdocdir="${EPREFIX}/usr/share/doc/${PF}/html" install
- find "${ED}" -name '*.la' -exec rm -f {} +
-}