summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2004-11-17 06:30:55 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2004-11-17 06:30:55 +0000
commit62c48847391364612c997e20ab61741df726db08 (patch)
tree9973fdef9443fd889ed2dc596b20cd720a9d2a7b /media-sound/rezound/rezound-0.9.0_beta.ebuild
parentDon't generate a static lib. (diff)
downloadhistorical-62c48847391364612c997e20ab61741df726db08.tar.gz
historical-62c48847391364612c997e20ab61741df726db08.tar.bz2
historical-62c48847391364612c997e20ab61741df726db08.zip
0.10 stable x86. Version bump now with alsa support.
Diffstat (limited to 'media-sound/rezound/rezound-0.9.0_beta.ebuild')
-rw-r--r--media-sound/rezound/rezound-0.9.0_beta.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/media-sound/rezound/rezound-0.9.0_beta.ebuild b/media-sound/rezound/rezound-0.9.0_beta.ebuild
deleted file mode 100644
index 357c396e9088..000000000000
--- a/media-sound/rezound/rezound-0.9.0_beta.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/rezound-0.9.0_beta.ebuild,v 1.6 2004/06/25 00:19:55 agriffis Exp $
-
-MY_P="${P/_/}"
-DESCRIPTION="Sound editor and recorder"
-HOMEPAGE="http://rezound.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-RESTRICT="nomirror"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86"
-
-IUSE="oggvorbis jack nls static oss cdr"
-
-DEPEND="virtual/x11
- jack? ( media-sound/jack-audio-connection-kit )
- oggvorbis? ( media-libs/libvorbis media-libs/libogg )
- cdr? ( app-cdr/cdrdao )
- =dev-libs/fftw-2*
- >=x11-libs/fox-1.0.40
- >=media-libs/ladspa-sdk-1.12
- >=media-libs/ladspa-cmt-1.15
- >=media-libs/portaudio-18
- >=media-libs/flac-1.1.0"
-
-S="${WORKDIR}/${MY_P}"
-
-src_compile() {
- local myconf="--prefix=/usr --host=${CHOST} --with-gnu-ld"
- use jack || myconf="${myconf} --disable-jack"
- use static && myconf="${myconf} --enable-standalone"
- use oss && myconf="${myconf} --enable-oss"
- use nls || myconf="${myconf} --disable-nls"
-
- ./configure ${myconf} || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS COPYRIGHT ChangeLog FAQ README TODO
-}
-