summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-06 09:37:57 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-06 09:37:57 +0000
commit5a97d0e7eb0761b90a67174c790da43102d95150 (patch)
tree399ea6391bde55c681e71a9300bbd1d7eca4e26a /media-sound
parentRemove old. (diff)
downloadgentoo-2-5a97d0e7eb0761b90a67174c790da43102d95150.tar.gz
gentoo-2-5a97d0e7eb0761b90a67174c790da43102d95150.tar.bz2
gentoo-2-5a97d0e7eb0761b90a67174c790da43102d95150.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/wavplay/ChangeLog8
-rw-r--r--media-sound/wavplay/files/wavplay-1.4-gcc34.patch12
-rw-r--r--media-sound/wavplay/wavplay-1.4.ebuild38
3 files changed, 6 insertions, 52 deletions
diff --git a/media-sound/wavplay/ChangeLog b/media-sound/wavplay/ChangeLog
index 72c8c81d2426..98fa451566f0 100644
--- a/media-sound/wavplay/ChangeLog
+++ b/media-sound/wavplay/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for media-sound/wavplay
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/wavplay/ChangeLog,v 1.16 2012/02/16 18:56:53 phajdan.jr Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/wavplay/ChangeLog,v 1.17 2015/05/06 09:37:57 mrueg Exp $
+
+ 06 May 2015; Manuel Rüger <mrueg@gentoo.org> -files/wavplay-1.4-gcc34.patch,
+ -wavplay-1.4.ebuild:
+ Remove old.
16 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> wavplay-2.0.ebuild:
x86 stable wrt bug #397113
diff --git a/media-sound/wavplay/files/wavplay-1.4-gcc34.patch b/media-sound/wavplay/files/wavplay-1.4-gcc34.patch
deleted file mode 100644
index c1f6cef79273..000000000000
--- a/media-sound/wavplay/files/wavplay-1.4-gcc34.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur wavplay-1.4.orig/wavplay.h wavplay-1.4/wavplay.h
---- wavplay-1.4.orig/wavplay.h 1999-12-04 01:06:42.000000000 +0100
-+++ wavplay-1.4/wavplay.h 2004-09-06 19:57:03.741888416 +0200
-@@ -500,7 +500,7 @@
- extern int UnlockDSP(int ipc,int playrecx,ErrFunc erf);
-
- extern WAVFILE *WavOpenForRead(const char *Pathname,ErrFunc erf);
--extern WAVFILE *WavOpenForWrite(const char *Pathname,OprMode m,UInt32 sample_rate,UInt16 bits,UInt32 samples,ErrFunc erf);
-+extern WAVFILE *WavOpenForWrite(const char *Pathname,Chan chmode,UInt32 sample_rate,UInt16 bits, UInt32 samples,ErrFunc erf);
- extern void WavReadOverrides(WAVFILE *wfile,WavPlayOpts *wavopts);
- extern int WavClose(WAVFILE *wfile,ErrFunc erf);
-
diff --git a/media-sound/wavplay/wavplay-1.4.ebuild b/media-sound/wavplay/wavplay-1.4.ebuild
deleted file mode 100644
index 8b68cf19b427..000000000000
--- a/media-sound/wavplay/wavplay-1.4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/wavplay/wavplay-1.4.ebuild,v 1.16 2010/04/10 02:57:12 vapier Exp $
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="A command line player/recorder for wav files"
-HOMEPAGE="http://sourceforge.net/projects/wavplay/"
-SRC_URI="http://ibiblio.org/pub/linux/apps/sound/players/${P}.tar.gz
- mirror://gentoo/${P}.patch"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-amd64 -sparc x86"
-IUSE=""
-
-src_unpack() {
- unpack ${P}.tar.gz
- cd "${S}"
- epatch "${DISTDIR}"/${P}.patch
- epatch "${FILESDIR}"/${P}-gcc34.patch
- sed -i -e 's:ln :ln -s :' Makefile
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" CP="$(tc-getCXX)" \
- CFLAGS="${CFLAGS}" CCFLAGS="${CXXFLAGS}" LDOPTS="${LDFLAGS}" no_x || die
-}
-
-src_install() {
- dodir /usr/bin
- emake INSTDIR="${D}/usr/bin" install_no_x || die
- # the motif frontend crashes and there are nicer player
- # for X anyway
- # no suid root install for old packages which use strcpy
- dodoc BUGS README
- doman *.1
-}