Gentoo Archives: gentoo-commits

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