diff options
Diffstat (limited to 'media-sound/rezound/rezound-0.9.0_beta.ebuild')
-rw-r--r-- | media-sound/rezound/rezound-0.9.0_beta.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/media-sound/rezound/rezound-0.9.0_beta.ebuild b/media-sound/rezound/rezound-0.9.0_beta.ebuild new file mode 100644 index 000000000000..4719039cd9e4 --- /dev/null +++ b/media-sound/rezound/rezound-0.9.0_beta.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# 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.1 2003/12/19 18:46:03 mholzer 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" + +RDEPEND="virtual/x11 + jack? ( virtual/jack ) + oggvorbis? ( media-libs/libvorbis media-libs/libogg ) + cdr? ( app-cdr/cdrdao ) + >=dev-libs/fftw-2.1.5 + >=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" + +DEPEND=${RDEPEND} + +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 +} + |