Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/amsynth: ChangeLog amsynth-1.2.0.ebuild
Date: Sun, 20 Apr 2008 17:52:09
Message-Id: E1Jndhu-0007J7-HN@stork.gentoo.org
1 flameeyes 08/04/20 17:52:06
2
3 Modified: ChangeLog amsynth-1.2.0.ebuild
4 Log:
5 Add a check for midi USE flag on alsa-lib needed to build, thanks to Patrick for reporting in bug #216890. Also add a patch to build with GCC 4.3.
6 (Portage version: 2.1.5_rc5)
7
8 Revision Changes Path
9 1.26 media-sound/amsynth/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amsynth/ChangeLog?rev=1.26&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amsynth/ChangeLog?rev=1.26&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amsynth/ChangeLog?r1=1.25&r2=1.26
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v
18 retrieving revision 1.25
19 retrieving revision 1.26
20 diff -u -r1.25 -r1.26
21 --- ChangeLog 14 Jan 2008 12:50:19 -0000 1.25
22 +++ ChangeLog 20 Apr 2008 17:52:06 -0000 1.26
23 @@ -1,6 +1,12 @@
24 # ChangeLog for media-sound/amsynth
25 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.25 2008/01/14 12:50:19 flameeyes Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/ChangeLog,v 1.26 2008/04/20 17:52:06 flameeyes Exp $
28 +
29 + 20 Apr 2008; Diego Pettenò <flameeyes@g.o>
30 + +files/amsynth-1.2.0+gcc-4.3.patch, amsynth-1.2.0.ebuild:
31 + Add a check for midi USE flag on alsa-lib needed to build, thanks to
32 + Patrick for reporting in bug #216890. Also add a patch to build with GCC
33 + 4.3.
34
35 14 Jan 2008; Diego Pettenò <flameeyes@g.o> amsynth-1.2.0.ebuild:
36 Add missing pkg-config dependency. Thanks to Patrick in bug #205700.
37
38
39
40 1.4 media-sound/amsynth/amsynth-1.2.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amsynth/amsynth-1.2.0.ebuild?rev=1.4&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amsynth/amsynth-1.2.0.ebuild?rev=1.4&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/amsynth/amsynth-1.2.0.ebuild?r1=1.3&r2=1.4
45
46 Index: amsynth-1.2.0.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.2.0.ebuild,v
49 retrieving revision 1.3
50 retrieving revision 1.4
51 diff -u -r1.3 -r1.4
52 --- amsynth-1.2.0.ebuild 14 Jan 2008 12:50:19 -0000 1.3
53 +++ amsynth-1.2.0.ebuild 20 Apr 2008 17:52:06 -0000 1.4
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.2.0.ebuild,v 1.3 2008/01/14 12:50:19 flameeyes Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/media-sound/amsynth/amsynth-1.2.0.ebuild,v 1.4 2008/04/20 17:52:06 flameeyes Exp $
59
60 IUSE="debug alsa jack sndfile oss"
61
62 @@ -26,6 +26,15 @@
63
64 S="${WORKDIR}/${MY_P}"
65
66 +pkg_setup() {
67 + if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
68 + eerror ""
69 + eerror "To be able to build Fluidsynth with ALSA support you need"
70 + eerror "to have built media-libs/alsa-lib with midi USE flag."
71 + die "Missing midi USE flag on media-libs/alsa-lib"
72 + fi
73 +}
74 +
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78 @@ -33,6 +42,7 @@
79 epatch "${FILESDIR}/${P}-asneeded.patch"
80 epatch "${FILESDIR}/${P}-cflags.patch"
81 epatch "${FILESDIR}/${P}-debug.patch"
82 + epatch "${FILESDIR}/${P}+gcc-4.3.patch"
83 eautoreconf
84 }
85
86
87
88
89 --
90 gentoo-commits@l.g.o mailing list