diff options
author | Frank van de Pol <fvdpol@gentoo.org> | 2004-06-29 20:15:08 +0000 |
---|---|---|
committer | Frank van de Pol <fvdpol@gentoo.org> | 2004-06-29 20:15:08 +0000 |
commit | 15745eb3cc318411577f38e7228892b2ae419529 (patch) | |
tree | afb08d4374649ee782c94f2ca789d0a17efdc1df /media-sound/specimen/specimen-0.4.1.ebuild | |
parent | sync IUSE (missing) (Manifest recommit) (diff) | |
download | gentoo-2-15745eb3cc318411577f38e7228892b2ae419529.tar.gz gentoo-2-15745eb3cc318411577f38e7228892b2ae419529.tar.bz2 gentoo-2-15745eb3cc318411577f38e7228892b2ae419529.zip |
New ebuild donated by mikael soderholm <gnarlie@ihku.org>, closing bug #55340.
Diffstat (limited to 'media-sound/specimen/specimen-0.4.1.ebuild')
-rw-r--r-- | media-sound/specimen/specimen-0.4.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/media-sound/specimen/specimen-0.4.1.ebuild b/media-sound/specimen/specimen-0.4.1.ebuild new file mode 100644 index 000000000000..56c8ffbe0b2c --- /dev/null +++ b/media-sound/specimen/specimen-0.4.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/specimen/specimen-0.4.1.ebuild,v 1.1 2004/06/29 20:15:08 fvdpol Exp $ + +DESCRIPTION="A Midi Controllable Audio Sampler" +HOMEPAGE="http://www.gazuga.net" +SRC_URI="http://www.gazuga.net/files/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="ladcca debug" + +DEPEND="virtual/jack + virtual/alsa + media-libs/libsamplerate + media-libs/libsndfile + dev-libs/libxml2 + >x11-libs/gtk+-2* + gnome-base/libgnomecanvas + ladcca? ( media-libs/ladcca )" + +src_compile() { + local myconf; + use ladcca || myconf="${myconf} --disable-ladcca" + use debug || myconf="${myconf} --disable-debug" + econf ${myconf} || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + #dobin src/specimen + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} |