diff options
author | Martin Holzer <mholzer@gentoo.org> | 2003-04-09 20:29:00 +0000 |
---|---|---|
committer | Martin Holzer <mholzer@gentoo.org> | 2003-04-09 20:29:00 +0000 |
commit | 44e73c63e378f00231f877f6de9f20c8e9b381b1 (patch) | |
tree | bac43a98695eae3d07d66f047d46eeff9b118538 /media-sound/snd/snd-6.7.ebuild | |
parent | Now corrected. stable release. Closes #7626. (diff) | |
download | historical-44e73c63e378f00231f877f6de9f20c8e9b381b1.tar.gz historical-44e73c63e378f00231f877f6de9f20c8e9b381b1.tar.bz2 historical-44e73c63e378f00231f877f6de9f20c8e9b381b1.zip |
Now corrected. stable release. Closes #7626.
Diffstat (limited to 'media-sound/snd/snd-6.7.ebuild')
-rw-r--r-- | media-sound/snd/snd-6.7.ebuild | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/media-sound/snd/snd-6.7.ebuild b/media-sound/snd/snd-6.7.ebuild new file mode 100644 index 000000000000..f09875d9fcb0 --- /dev/null +++ b/media-sound/snd/snd-6.7.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/snd/snd-6.7.ebuild,v 1.1 2003/04/09 20:28:38 mholzer Exp $ + +IUSE="esd motif guile X gtk ruby alsa" + +S="${WORKDIR}/${P}" +DESCRIPTION="Snd is a sound editor" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +HOMEPAGE="http://snd.sourceforge.net" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86" + +DEPEND="X? ( virtual/x11 ) + dev-libs/gsl + media-libs/ladspa-sdk + media-libs/audiofile + esd? ( media-sound/esound ) + alsa? ( media-libs/alsa-lib ) + gtk? ( x11-libs/gtk+ ) + guile? ( dev-util/guile ) + motif? ( x11-libs/openmotif ) + ruby? ( dev-lang/ruby )" + + +src_compile() { + local myconf + + use alsa \ + && myconf="${myconf} --with-alsa" \ + || myconf="${myconf} --without-alsa" + + use esd \ + && myconf="${myconf} --with-esd" \ + || myconf="${myconf} --without-esd" + + use gtk \ + && myconf="${myconf} --with-gtk" \ + || myconf="${myconf} --without-gtk" + + use guile \ + && myconf="${myconf} --with-guile --with-run" \ + || myconf="${myconf} --without-guile" + + use ruby \ + && myconf="${myconf} --with-ruby" \ + || myconf="${myconf} --without-ruby" + + use X \ + && myconf="${myconf} --with-x" \ + || myconf="${myconf} --without-x" + +# Seems to cause problem I will look into it but for now we will just disable +# use gl \ +# && myconf="${myconf} --with-just-gl" \ +# || myconf="${myconf} --without-gl" + + econf --with-ladspa --with-float-samples \ + --with-float-sample-width ${myconf} || die + + emake || die +} + +src_install () { + + dobin snd + + dodoc COPYING HISTORY.Snd README.Snd TODO.Snd + + cd contrib/tutorial + dohtml * +} |