diff options
author | John J. Ellis <jje@gentoo.org> | 2003-09-21 02:23:39 +0000 |
---|---|---|
committer | John J. Ellis <jje@gentoo.org> | 2003-09-21 02:23:39 +0000 |
commit | 621cd87b315add314b3491b16e6918cee07448b5 (patch) | |
tree | 9d22cef0e4e1b6cab06a093813f8fa93bfcd8b94 /media-sound/fluidsynth | |
parent | Version bump and improvements. Close #27039. (diff) | |
download | historical-621cd87b315add314b3491b16e6918cee07448b5.tar.gz historical-621cd87b315add314b3491b16e6918cee07448b5.tar.bz2 historical-621cd87b315add314b3491b16e6918cee07448b5.zip |
Version bump and improvements. Close #27039.
Diffstat (limited to 'media-sound/fluidsynth')
-rw-r--r-- | media-sound/fluidsynth/Manifest | 4 | ||||
-rw-r--r-- | media-sound/fluidsynth/files/digest-fluidsynth-1.0.3 | 1 | ||||
-rw-r--r-- | media-sound/fluidsynth/fluidsynth-1.0.3.ebuild | 51 |
3 files changed, 54 insertions, 2 deletions
diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest index eab07e296c1d..664a106dc905 100644 --- a/media-sound/fluidsynth/Manifest +++ b/media-sound/fluidsynth/Manifest @@ -1,5 +1,5 @@ MD5 f4fe95939ff66d3ebd2975d889f71ba1 fluidsynth-1.0.1.ebuild 1392 -MD5 ce3e185dcf6cf833c99def777a8febc0 ChangeLog 393 -MD5 8fb3a3d5ab6e55e0cd171ef577e83ac8 fluidsynth-1.0.3.ebuild 1451 +MD5 6e0058af30013ebf1fd99d89aab6f5b7 ChangeLog 719 +MD5 704bf16f675107d9ef40d9a2ec46a786 fluidsynth-1.0.3.ebuild 1450 MD5 76597f227dd6266c408aab1d4f58da85 files/digest-fluidsynth-1.0.1 68 MD5 751ab7ab31fc6b9ccf266a683545b750 files/digest-fluidsynth-1.0.3 68 diff --git a/media-sound/fluidsynth/files/digest-fluidsynth-1.0.3 b/media-sound/fluidsynth/files/digest-fluidsynth-1.0.3 new file mode 100644 index 000000000000..291e1112ceeb --- /dev/null +++ b/media-sound/fluidsynth/files/digest-fluidsynth-1.0.3 @@ -0,0 +1 @@ +MD5 fbdccd05e538626888e27b58d3bdbc2b fluidsynth-1.0.3.tar.gz 867788 diff --git a/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild b/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild new file mode 100644 index 000000000000..ac4ea3dc5212 --- /dev/null +++ b/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.3.ebuild,v 1.1 2003/09/21 02:23:34 jje Exp $ + +inherit flag-o-matic + +DESCRIPTION="IIWU Synth is a software real-time synthesizer based on the +Soundfont 2 specifications." +HOMEPAGE="http://www.fluidsynth.org/" +SRC_URI="http://savannah.nongnu.org/download/fluid/stable.pkg/${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="alsa ladcca jack sse" + +DEPEND="ladcca? ( media-libs/ladcca ) \ + jack? ( virtual/jack ) \ + media-libs/ladspa-sdk \ + alsa? ( media-sound/alsa-driver \ + media-libs/alsa-lib \ + media-sound/alsa-utils )" + +src_compile() { + local myconf + myconf="--enable-ladspa" + use ladcca || myconf="--disable-ladcca ${myconf}" + use alsa || myconf="--disable-alsa ${myconf}" + use jack || myconf="--disable-jack-support ${myconf}" + if [ `use sse` ]; then + myconf="--enable-SSE ${myconf}" + # If your CFLAGS include optimizations for sse, ie: + # -march=pentium4 -mfpmath=sse -msse2 + # AND your USE flags include sse, ie: USE=sse, + # the sounds with fluidsynth will be distorted. + if [ `is-flag "-march=pentium4"` ]; then + filter-flags "-msse2" + filter-flags "-mfpmath=sse" + fi + fi + econf ${myconf} || die "./configure failed" + emake || die +} + +src_install() { + einstall || die + dodoc AUTHORS COPYING INSTALL NEWS README THANKS TODO +} + + |