Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: fluidsynth-1.1.6-r1.ebuild ChangeLog
Date: Sat, 03 May 2014 09:44:15
Message-Id: 20140503094412.28FB22004E@flycatcher.gentoo.org
1 mgorny 14/05/03 09:44:12
2
3 Modified: ChangeLog
4 Added: fluidsynth-1.1.6-r1.ebuild
5 Log:
6 Enable multilib support.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.78 media-sound/fluidsynth/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.78&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.78&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/ChangeLog?r1=1.77&r2=1.78
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
20 retrieving revision 1.77
21 retrieving revision 1.78
22 diff -u -r1.77 -r1.78
23 --- ChangeLog 27 Dec 2012 08:17:26 -0000 1.77
24 +++ ChangeLog 3 May 2014 09:44:11 -0000 1.78
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/fluidsynth
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.77 2012/12/27 08:17:26 armin76 Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.78 2014/05/03 09:44:11 mgorny Exp $
31 +
32 +*fluidsynth-1.1.6-r1 (03 May 2014)
33 +
34 + 03 May 2014; Michał Górny <mgorny@g.o> +fluidsynth-1.1.6-r1.ebuild:
35 + Enable multilib support.
36
37 27 Dec 2012; Raúl Porcel <armin76@g.o> fluidsynth-1.1.6.ebuild:
38 alpha/sparc stable wrt #444388
39
40
41
42 1.1 media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.1.6-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fluidsynth-1.1.6-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 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.6-r1.ebuild,v 1.1 2014/05/03 09:44:11 mgorny Exp $
52
53 EAPI=5
54 inherit cmake-multilib flag-o-matic
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[${MULTILIB_USEDEP}]
66 alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}]
67 lash? ( >=media-sound/lash-0.5[${MULTILIB_USEDEP}] ) )
68 dbus? ( >=sys-apps/dbus-1.0.0[${MULTILIB_USEDEP}] )
69 jack? ( media-sound/jack-audio-connection-kit[${MULTILIB_USEDEP}] )
70 ladspa? ( >=media-libs/ladspa-sdk-1.12[${MULTILIB_USEDEP}]
71 >=media-libs/ladspa-cmt-1.15[${MULTILIB_USEDEP}] )
72 pulseaudio? ( >=media-sound/pulseaudio-0.9.8[${MULTILIB_USEDEP}] )
73 portaudio? ( >=media-libs/portaudio-19_pre[${MULTILIB_USEDEP}] )
74 readline? ( sys-libs/readline[${MULTILIB_USEDEP}] )
75 sndfile? ( >=media-libs/libsndfile-1.0.18[${MULTILIB_USEDEP}] )"
76 DEPEND="${RDEPEND}
77 virtual/pkgconfig[${MULTILIB_USEDEP}]"
78
79 src_configure() {
80 # autotools based build system has AC_CHECK_LIB(pthread, pthread_create) wrt
81 # bug #436762
82 append-flags -pthread
83
84 mycmakeargs=(
85 $(cmake-utils_use alsa enable-alsa)
86 $(cmake-utils_use dbus enable-dbus)
87 $(cmake-utils_use debug enable-debug)
88 $(cmake-utils_use jack enable-jack)
89 -Denable-ladcca=OFF
90 $(cmake-utils_use ladspa enable-ladspa)
91 $(cmake-utils_use sndfile enable-libsndfile)
92 $(cmake-utils_use portaudio enable-portaudio)
93 $(cmake-utils_use pulseaudio enable-pulseaudio)
94 $(cmake-utils_use readline enable-readline)
95 )
96
97 if use alsa; then
98 mycmakeargs+=( $(cmake-utils_use lash enable-lash) )
99 else
100 mycmakeargs+=( -Denable-lash=OFF )
101 fi
102
103 cmake-multilib_src_configure
104 }
105
106 src_install() {
107 cmake-multilib_src_install
108
109 dodoc AUTHORS NEWS README THANKS TODO doc/*.txt
110
111 docinto pdf
112 dodoc doc/*.pdf
113
114 if use examples; then
115 docinto examples
116 dodoc doc/*.c
117 fi
118 }