diff options
author | Blake Matheny <jake@gentoo.org> | 2004-02-11 21:19:33 +0000 |
---|---|---|
committer | Blake Matheny <jake@gentoo.org> | 2004-02-11 21:19:33 +0000 |
commit | 7da49504f2e3b45cecee1997eea3074892af8e50 (patch) | |
tree | 01e4cc89f1e4d942a1b4290641cbf793b6795e22 /media-sound/gnusound/gnusound-0.6.1.ebuild | |
parent | RESTRICT="nomirror" (diff) | |
download | historical-7da49504f2e3b45cecee1997eea3074892af8e50.tar.gz historical-7da49504f2e3b45cecee1997eea3074892af8e50.tar.bz2 historical-7da49504f2e3b45cecee1997eea3074892af8e50.zip |
Initial import for gnusound
Diffstat (limited to 'media-sound/gnusound/gnusound-0.6.1.ebuild')
-rw-r--r-- | media-sound/gnusound/gnusound-0.6.1.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/media-sound/gnusound/gnusound-0.6.1.ebuild b/media-sound/gnusound/gnusound-0.6.1.ebuild new file mode 100644 index 000000000000..d3cdde664f03 --- /dev/null +++ b/media-sound/gnusound/gnusound-0.6.1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/gnusound/gnusound-0.6.1.ebuild,v 1.1 2004/02/11 21:19:33 jake Exp $ + +DESCRIPTION="GNUsound is a sound editor for Linux/x86" +HOMEPAGE="http://gnusound.sourceforge.net/" +SRC_URI="http://gnusound.sourceforge.net/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=gnome-base/libglade-2.0.1 + gnome-base/gnome-libs + >=gnome-base/libgnomeui-2.2.0.1 + >=media-libs/audiofile-0.2.3 + libsamplerate? ( media-libs/libsamplerate )" + +src_unpack() { + unpack ${A} || die "unpack failure" + cd ${S} || die "workdir not found" + rm -f doc/Makefile || die "could not remove doc Makefile" + rm -f modules/Makefile || die "could not remove modules Makefile" + sed -i "s:docrootdir:datadir:" doc/Makefile.in +} + +src_compile() { + local myconf + + myconf="${myconf} --enable-optimization" + + if has_version media-libs/libsamplerate; then + myconf="${myconf} --with-libsamplerate" + fi + econf ${myconf} || die "Configure failure" + + emake || die "Make failure" +} + +src_install() { + einstall || die "make install failure" + dodoc LICENSE README NOTES TODO CHANGES +} |