diff options
author | 2005-05-28 15:27:16 +0000 | |
---|---|---|
committer | 2005-05-28 15:27:16 +0000 | |
commit | 32cf878f296d14c8a7611c4d52b12ccde8f63af1 (patch) | |
tree | 63d873737aeac46cf05144762e1437f8e2b52442 /media-sound/rezound | |
parent | Dont make use of the deprecated oggvorbis useflag any longer, see #94254. Add... (diff) | |
download | gentoo-2-32cf878f296d14c8a7611c4d52b12ccde8f63af1.tar.gz gentoo-2-32cf878f296d14c8a7611c4d52b12ccde8f63af1.tar.bz2 gentoo-2-32cf878f296d14c8a7611c4d52b12ccde8f63af1.zip |
Dont make use of the deprecated oggvorbis useflag any longer, see #94254.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'media-sound/rezound')
-rw-r--r-- | media-sound/rezound/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/rezound/files/digest-rezound-0.11.1_beta | 1 | ||||
-rw-r--r-- | media-sound/rezound/rezound-0.11.1_beta.ebuild | 80 |
3 files changed, 5 insertions, 82 deletions
diff --git a/media-sound/rezound/ChangeLog b/media-sound/rezound/ChangeLog index 84f3cb254bfa..3063b859ea27 100644 --- a/media-sound/rezound/ChangeLog +++ b/media-sound/rezound/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/rezound # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v 1.23 2005/05/27 17:06:07 luckyduck Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/ChangeLog,v 1.24 2005/05/28 15:27:16 luckyduck Exp $ + + 28 May 2005; Jan Brinkmann <luckyduck@gentoo.org> + -rezound-0.11.1_beta.ebuild: + Dont make use of the deprecated oggvorbis useflag any longer, see #94254. 27 May 2005; Jan Brinkmann <luckyduck@gentoo.org> rezound-0.12.0_beta.ebuild: diff --git a/media-sound/rezound/files/digest-rezound-0.11.1_beta b/media-sound/rezound/files/digest-rezound-0.11.1_beta deleted file mode 100644 index 3725c25d0d82..000000000000 --- a/media-sound/rezound/files/digest-rezound-0.11.1_beta +++ /dev/null @@ -1 +0,0 @@ -MD5 3da346718a3ec77a4357c2bf1ab734bf rezound-0.11.1beta.tar.gz 1487896 diff --git a/media-sound/rezound/rezound-0.11.1_beta.ebuild b/media-sound/rezound/rezound-0.11.1_beta.ebuild deleted file mode 100644 index 9fe90c5e8166..000000000000 --- a/media-sound/rezound/rezound-0.11.1_beta.ebuild +++ /dev/null @@ -1,80 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/rezound-0.11.1_beta.ebuild,v 1.5 2005/05/21 09:38:00 luckyduck Exp $ - -IUSE="alsa oggvorbis jack nls oss portaudio flac soundtouch" - -inherit eutils - -MY_P="${P/_/}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="Sound editor and recorder" -HOMEPAGE="http://rezound.sourceforge.net" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc x86" - -RDEPEND="virtual/x11 - =sci-libs/fftw-2* - >=x11-libs/fox-1.2.4 - >=media-libs/audiofile-0.2.3 - >=media-libs/ladspa-sdk-1.12 - >=media-libs/ladspa-cmt-1.15 - alsa? ( >=media-libs/alsa-lib-1.0 ) - flac? ( >=media-libs/flac-1.1.0 ) - oggvorbis? ( media-libs/libvorbis media-libs/libogg ) - jack? ( media-sound/jack-audio-connection-kit ) - portaudio? ( >=media-libs/portaudio-18 ) - soundtouch? ( >=media-libs/libsoundtouch-1.2.1 )" - -# optional packages (don't need to be installed during emerge): -# -# >=media-sound/lame-3.92 -# app-cdr/cdrdao - -DEPEND="${RDEPEND} - sys-devel/autoconf - sys-devel/automake - sys-devel/bison - sys-devel/flex" - -src_compile() { - local myconf="" - - # enforce minimum defaults - myconf="${myconf} --enable-ladspa" - myconf="${myconf} --enable-largefile" - myconf="${myconf} --enable-internal-sample-type=float" - - # enable/disable depending on USE flags - myconf="${myconf} `use_enable nls`" - myconf="${myconf} `use_enable alsa`" - myconf="${myconf} `use_enable oss`" - myconf="${myconf} `use_enable jack`" - myconf="${myconf} `use_enable portaudio`" - - # fix compilation errors on ppc, where some - # of the required functions aren't defined - test "${ARCH}" = ppc && epatch ${FILESDIR}/undefined-functions.patch - - # following features can't be disabled if already installed: - # -> flac, oggvorbis, soundtouch - - econf ${myconf} || die - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die - - # remove wrong doc directory - rm -rf ${D}/usr/doc/${PN} - # install docs manually, but don't install - # COPYING, since this is obsolete ($LICENCE is enough) - dodoc ABOUT-NLS docs/{AUTHORS,*INSTALL,NEWS,README*,TODO_FOR_USERS_TO_READ,*.txt} - docinto code - dodoc docs/code/* -} |