From fd2b6fc74418e147b222a038f85c3912c9164c9c Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Wed, 3 Mar 2004 04:11:26 +0000 Subject: Version bump closes bug #43496. --- media-sound/amsynth/amsynth-1.0.0.ebuild | 54 ++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 media-sound/amsynth/amsynth-1.0.0.ebuild (limited to 'media-sound/amsynth/amsynth-1.0.0.ebuild') diff --git a/media-sound/amsynth/amsynth-1.0.0.ebuild b/media-sound/amsynth/amsynth-1.0.0.ebuild new file mode 100644 index 000000000000..b6a81f5e3705 --- /dev/null +++ b/media-sound/amsynth/amsynth-1.0.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.0.0.ebuild,v 1.1 2004/03/03 04:11:26 eradicator Exp $ + +MY_P=${P/_rc/-rc} +MY_P=${MY_P/amsynth/amSynth} + +DESCRIPTION="A retro analogue - modelling softsynth" +HOMEPAGE="http://amsynthe.sourceforge.net/" +SRC_URI="mirror://sourceforge/amsynthe/${MY_P}.tar.gz" +RESTRICT="nomirror" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="oss alsa jack" + +# libsndfile support is actually optional, but IMHO this package should have it +DEPEND="=dev-cpp/gtkmm-1.2* \ + media-libs/libsndfile \ + alsa? ( media-libs/alsa-lib \ + media-sound/alsa-utils ) \ + jack? ( virtual/jack )" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + cd ${S} + + sed -i "/#include /i\\#define ALSA_PCM_OLD_HW_PARAMS_API 1\\" src/drivers/ALSAmmapAudioDriver.h + sed -i "/#include /i\\#define ALSA_PCM_OLD_HW_PARAMS_API 1\\" src/drivers/ALSAAudioDriver.h +} + +src_compile() { + econf `use_with oss` `use_with alsa` `use_with jack` || die "configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die +} + +pkg_postinst() { + einfo "" + einfo "amSynth has been installed normally." + einfo "If you would like to use the virtual" + einfo "keyboard option, then do" + einfo "emerge vkeybd" + einfo "and make sure you emerged amSynth" + einfo "with alsa support (USE=alsa)" + einfo "" +} -- cgit v1.2.3-65-gdbad