# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.0_rc4.ebuild,v 1.6 2004/06/24 23:50:30 agriffis Exp $ inherit eutils 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? ( media-sound/jack-audio-connection-kit )" 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 epatch ${FILESDIR}/${PN}-pthread.patch } src_compile() { local myconf use oss || myconf="--without-oss ${myconf}" use alsa || myconf="--without-alsa ${myconf}" use jack || myconf="--without-jack ${myconf}" econf ${myconf} || 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 "" }