Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/fluidsynth: ChangeLog fluidsynth-1.0.8.ebuild
Date: Mon, 28 Jan 2008 18:51:15
Message-Id: E1JJZ4Z-0000h7-VZ@stork.gentoo.org
1 aballier 08/01/28 18:51:11
2
3 Modified: ChangeLog
4 Added: fluidsynth-1.0.8.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.4)
8
9 Revision Changes Path
10 1.36 media-sound/fluidsynth/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 22 Nov 2007 19:00:24 -0000 1.35
23 +++ ChangeLog 28 Jan 2008 18:51:11 -0000 1.36
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/fluidsynth
26 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.35 2007/11/22 19:00:24 armin76 Exp $
28 +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/fluidsynth/ChangeLog,v 1.36 2008/01/28 18:51:11 aballier Exp $
30 +
31 +*fluidsynth-1.0.8 (28 Jan 2008)
32 +
33 + 28 Jan 2008; Alexis Ballier <aballier@g.o>
34 + +fluidsynth-1.0.8.ebuild:
35 + version bump
36
37 22 Nov 2007; Raúl Porcel <armin76@g.o> fluidsynth-1.0.7a.ebuild:
38 sparc/x86 stable wrt #199999
39
40
41
42 1.1 media-sound/fluidsynth/fluidsynth-1.0.8.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/fluidsynth/fluidsynth-1.0.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fluidsynth-1.0.8.ebuild
48 ===================================================================
49 # Copyright 1999-2008 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.0.8.ebuild,v 1.1 2008/01/28 18:51:11 aballier Exp $
52
53 inherit flag-o-matic eutils libtool
54
55 IUSE="alsa debug jack ladspa lash oss readline"
56
57 DESCRIPTION="Fluidsynth is a software real-time synthesizer based on the Soundfont 2 specifications."
58 HOMEPAGE="http://www.fluidsynth.org/"
59 SRC_URI="http://savannah.nongnu.org/download/fluid/${P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
64
65 DEPEND="jack? ( media-sound/jack-audio-connection-kit )
66 ladspa? ( >=media-libs/ladspa-sdk-1.12
67 >=media-libs/ladspa-cmt-1.15 )
68 alsa? ( media-libs/alsa-lib
69 lash? ( >=media-sound/lash-0.5 ) )
70 readline? ( sys-libs/readline )"
71
72 S="${WORKDIR}/${P/7a/7}"
73
74 # Alsa is required for lash support in this package.
75 pkg_setup() {
76 if use lash && ! use alsa; then
77 ewarn "ALSA support is required for lash support to be enabled."
78 ewarn "Continuing with lash support disabled."
79 fi
80
81 if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
82 eerror ""
83 eerror "To be able to build Fluidsynth with ALSA support you need"
84 eerror "to have built media-libs/alsa-lib with midi USE flag."
85 die "Missing midi USE flag on media-libs/alsa-lib"
86 fi
87 }
88
89 src_compile() {
90 local myconf
91
92 if use alsa; then
93 myconf="${myconf} $(use_enable lash)"
94 else
95 myconf="--disable-lash"
96 fi
97
98 elibtoolize
99 # ladcca support is deprecated in place of lash
100 econf \
101 --disable-ladcca \
102 --disable-dependency-tracking \
103 $(use_enable ladspa) \
104 $(use_enable jack jack-support) \
105 $(use_enable oss oss-support) \
106 $(use_enable alsa alsa-support) \
107 $(use_enable lash) \
108 $(use_enable debug) \
109 $(use_with readline) \
110 ${myconf} || die "./configure failed"
111
112 emake || die "make failed"
113 }
114
115 src_install() {
116 emake DESTDIR="${D}" install || die "make install failed"
117 dodoc AUTHORS NEWS README THANKS TODO
118 }
119
120
121
122 --
123 gentoo-commits@l.g.o mailing list