diff options
author | Alexis Ballier <aballier@gentoo.org> | 2006-10-22 13:46:11 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2006-10-22 13:46:11 +0000 |
commit | ca09032d65998faa34a7518aab81dcf33f01a33b (patch) | |
tree | f80a081b9c6dd67553784fe7cb2bc8591a14e217 /media-sound/rezound/rezound-0.12.2_beta-r2.ebuild | |
parent | Add ~amd64 keyword. Bug #111243. (diff) | |
download | gentoo-2-ca09032d65998faa34a7518aab81dcf33f01a33b.tar.gz gentoo-2-ca09032d65998faa34a7518aab81dcf33f01a33b.tar.bz2 gentoo-2-ca09032d65998faa34a7518aab81dcf33f01a33b.zip |
Lot of bugfixes
(Portage version: 2.1.2_pre3-r6)
Diffstat (limited to 'media-sound/rezound/rezound-0.12.2_beta-r2.ebuild')
-rw-r--r-- | media-sound/rezound/rezound-0.12.2_beta-r2.ebuild | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/media-sound/rezound/rezound-0.12.2_beta-r2.ebuild b/media-sound/rezound/rezound-0.12.2_beta-r2.ebuild new file mode 100644 index 000000000000..ebb93f9950b0 --- /dev/null +++ b/media-sound/rezound/rezound-0.12.2_beta-r2.ebuild @@ -0,0 +1,90 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/rezound/rezound-0.12.2_beta-r2.ebuild,v 1.1 2006/10/22 13:46:11 aballier Exp $ + +inherit eutils autotools + +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 + mirror://gentoo/${P}-patches.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="16bittmp alsa flac jack nls oss portaudio soundtouch vorbis" + +RDEPEND="=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.2 ) + jack? ( media-sound/jack-audio-connection-kit ) + portaudio? ( >=media-libs/portaudio-18 ) + soundtouch? ( >=media-libs/libsoundtouch-1.2.1 ) + vorbis? ( media-libs/libvorbis media-libs/libogg )" + +# 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_unpack() { + unpack ${A} + cd "${S}" + + EPATCH_SOURCE="${WORKDIR}" EPATCH_SUFFIX="patch"\ + EPATCH_FORCE="yes" epatch + + AT_M4DIR="config/m4" eautoreconf + elibtoolize +} + +src_compile() { + # fix compilation errors on ppc, where some + # of the required functions aren't defined + use ppc && epatch ${FILESDIR}/undefined-functions.patch + + # following features can't be disabled if already installed: + # -> flac, oggvorbis, soundtouch + local sampletype="--enable-internal-sample-type=float" + use 16bittmp && sampletype="--enable-internal-sample-type=int16" + + econf \ + $(use_enable alsa) \ + $(use_enable jack) \ + $(use_enable nls) \ + $(use_enable oss) \ + $(use_enable portaudio) \ + ${sampletype} \ + --enable-ladspa \ + --enable-largefile \ + || die "configure failed" + + emake || die "make failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + + # remove wrong doc directory + rm -rf "${D}/usr/doc" + + dodoc docs/{AUTHORS,NEWS,README*} + dodoc docs/{TODO_FOR_USERS_TO_READ,*.txt} + newdoc README README.rezound + + docinto code + dodoc docs/code/* +} |