summaryrefslogtreecommitdiff
blob: 1d8b1386c50a97158a92744dba5371b08a8436a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright 1999-2006 Gentoo Foundation
# 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.18 2007/06/26 02:13:57 mr_bones_ Exp $

inherit flag-o-matic eutils

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 ppc amd64"

IUSE="alsa jack sse ladcca"

DEPEND="jack? ( media-sound/jack-audio-connection-kit )
	media-libs/ladspa-sdk
	ladcca? ( =media-libs/ladcca-0.3* )
	alsa? ( media-libs/alsa-lib )"

# ladcca-0.4 support is broken.  bug #46916

src_unpack() {
	unpack ${A}

	cd ${S}
	epatch ${FILESDIR}/${PV}-nonx86.patch
}

src_compile() {
	local myconf
	myconf="--enable-ladspa"
	#use ladcca || myconf="--disable-ladcca ${myconf}"
	use amd64 && myconf="`use_enable ladcca` ${myconf}" \
		|| 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
}