Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.3.ebuild ChangeLog
Date: Sun, 31 Oct 2010 13:12:58
Message-Id: 20101031131254.CA0B320051@flycatcher.gentoo.org
1 ssuominen 10/10/31 13:12:54
2
3 Modified: ChangeLog
4 Added: fluidsynth-1.1.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha1/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.60 media-sound/fluidsynth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 13 Oct 2010 06:18:29 -0000 1.59
24 +++ ChangeLog 31 Oct 2010 13:12:54 -0000 1.60
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/fluidsynth
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.59 2010/10/13 06:18:29 radhermit Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.60 2010/10/31 13:12:54 ssuominen Exp $
30 +
31 +*fluidsynth-1.1.3 (31 Oct 2010)
32 +
33 + 31 Oct 2010; Samuli Suominen <ssuominen@g.o>
34 + +fluidsynth-1.1.3.ebuild:
35 + Version bump.
36
37 13 Oct 2010; Tim Harder <radhermit@g.o> fluidsynth-1.0.9.ebuild,
38 fluidsynth-1.1.0.ebuild, fluidsynth-1.1.1.ebuild:
39
40
41
42 1.1 media-sound/fluidsynth/fluidsynth-1.1.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fluidsynth-1.1.3.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.3.ebuild,v 1.1 2010/10/31 13:12:54 ssuominen Exp $
52
53 EAPI=2
54 inherit cmake-utils
55
56 DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications."
57 HOMEPAGE="http://www.fluidsynth.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="LGPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE="alsa dbus debug examples jack ladspa lash portaudio pulseaudio readline sndfile"
64
65 RDEPEND=">=dev-libs/glib-2.6.5:2
66 alsa? ( media-libs/alsa-lib
67 lash? ( >=media-sound/lash-0.5 ) )
68 dbus? ( >=sys-apps/dbus-1.0.0 )
69 jack? ( media-sound/jack-audio-connection-kit )
70 ladspa? ( >=media-libs/ladspa-sdk-1.12
71 >=media-libs/ladspa-cmt-1.15 )
72 pulseaudio? ( >=media-sound/pulseaudio-0.9.8 )
73 portaudio? ( >=media-libs/portaudio-19_pre )
74 readline? ( sys-libs/readline )
75 sndfile? ( >=media-libs/libsndfile-1.0.18 )"
76 DEPEND="${RDEPEND}
77 dev-util/pkgconfig"
78
79 src_configure() {
80 mycmakeargs=(
81 $(cmake-utils_use alsa enable-alsa)
82 $(cmake-utils_use dbus enable-dbus)
83 $(cmake-utils_use debug enable-debug)
84 $(cmake-utils_use jack enable-jack)
85 -Denable-ladcca=OFF
86 $(cmake-utils_use ladspa enable-ladspa)
87 $(cmake-utils_use sndfile enable-libsndfile)
88 $(cmake-utils_use portaudio enable-portaudio)
89 $(cmake-utils_use pulseaudio enable-pulseaudio)
90 $(cmake-utils_use readline enable-readline)
91 )
92
93 if use alsa; then
94 mycmakeargs+=( $(cmake-utils_use lash enable-lash) )
95 else
96 mycmakeargs+=( -Denable-lash=OFF )
97 fi
98
99 cmake-utils_src_configure
100 }
101
102 src_install() {
103 cmake-utils_src_install
104
105 dodoc AUTHORS NEWS README THANKS TODO doc/*.txt
106
107 insinto /usr/share/doc/${PF}/pdf
108 doins doc/*.pdf
109
110 if use examples; then
111 insinto /usr/share/doc/${PF}/examples
112 doins doc/*.c
113 fi
114 }