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/audacity: audacity-1.3.4.ebuild ChangeLog audacity-1.3.2-r1.ebuild audacity-1.3.3.ebuild
Date: Sun, 18 Nov 2007 20:28:38
Message-Id: E1Itqkq-0004nz-Nb@stork.gentoo.org
1 aballier 07/11/18 20:28:32
2
3 Modified: audacity-1.3.4.ebuild ChangeLog
4 audacity-1.3.2-r1.ebuild audacity-1.3.3.ebuild
5 Log:
6 add a check for flac cxx use flag, FLAC++ is needed here
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.3 media-sound/audacity/audacity-1.3.4.ebuild
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.4.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.4.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.4.ebuild?r1=1.2&r2=1.3
15
16 Index: audacity-1.3.4.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.4.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- audacity-1.3.4.ebuild 18 Nov 2007 17:07:29 -0000 1.2
23 +++ audacity-1.3.4.ebuild 18 Nov 2007 20:28:32 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2007 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.4.ebuild,v 1.2 2007/11/18 17:07:29 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.4.ebuild,v 1.3 2007/11/18 20:28:32 aballier Exp $
29
30 inherit eutils wxwidgets
31
32 @@ -33,6 +33,14 @@
33
34 S="${WORKDIR}/${MY_P}-beta"
35
36 +pkg_setup() {
37 + if use flac && ! built_with_use --missing true media-libs/flac cxx; then
38 + eerror "To build ${PN} with flac support you need the C++ bindings for flac."
39 + eerror "Please enable the cxx USE flag for media-libs/flac"
40 + die "Missing FLAC C++ bindings."
41 + fi
42 +}
43 +
44 src_unpack() {
45 unpack ${A}
46
47
48
49
50 1.71 media-sound/audacity/ChangeLog
51
52 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.71&view=markup
53 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?rev=1.71&content-type=text/plain
54 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/ChangeLog?r1=1.70&r2=1.71
55
56 Index: ChangeLog
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v
59 retrieving revision 1.70
60 retrieving revision 1.71
61 diff -u -r1.70 -r1.71
62 --- ChangeLog 18 Nov 2007 14:36:03 -0000 1.70
63 +++ ChangeLog 18 Nov 2007 20:28:32 -0000 1.71
64 @@ -1,6 +1,10 @@
65 # ChangeLog for media-sound/audacity
66 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
67 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.70 2007/11/18 14:36:03 aballier Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/ChangeLog,v 1.71 2007/11/18 20:28:32 aballier Exp $
69 +
70 + 18 Nov 2007; Alexis Ballier <aballier@g.o>
71 + audacity-1.3.2-r1.ebuild, audacity-1.3.3.ebuild, audacity-1.3.4.ebuild:
72 + add a check for flac cxx use flag, FLAC++ is needed here
73
74 *audacity-1.3.4 (18 Nov 2007)
75
76
77
78
79 1.12 media-sound/audacity/audacity-1.3.2-r1.ebuild
80
81 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.2-r1.ebuild?rev=1.12&view=markup
82 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.2-r1.ebuild?rev=1.12&content-type=text/plain
83 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.2-r1.ebuild?r1=1.11&r2=1.12
84
85 Index: audacity-1.3.2-r1.ebuild
86 ===================================================================
87 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.2-r1.ebuild,v
88 retrieving revision 1.11
89 retrieving revision 1.12
90 diff -u -r1.11 -r1.12
91 --- audacity-1.3.2-r1.ebuild 17 May 2007 04:32:08 -0000 1.11
92 +++ audacity-1.3.2-r1.ebuild 18 Nov 2007 20:28:32 -0000 1.12
93 @@ -1,6 +1,6 @@
94 # Copyright 1999-2007 Gentoo Foundation
95 # Distributed under the terms of the GNU General Public License v2
96 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.2-r1.ebuild,v 1.11 2007/05/17 04:32:08 josejx Exp $
97 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.2-r1.ebuild,v 1.12 2007/11/18 20:28:32 aballier Exp $
98
99 inherit eutils autotools wxwidgets
100
101 @@ -30,6 +30,14 @@
102
103 S="${WORKDIR}/${MY_P}-beta"
104
105 +pkg_setup() {
106 + if use flac && ! built_with_use --missing true media-libs/flac cxx; then
107 + eerror "To build ${PN} with flac support you need the C++ bindings for flac."
108 + eerror "Please enable the cxx USE flag for media-libs/flac"
109 + die "Missing FLAC C++ bindings."
110 + fi
111 +}
112 +
113 src_unpack() {
114 unpack ${A}
115
116
117
118
119 1.5 media-sound/audacity/audacity-1.3.3.ebuild
120
121 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.3.ebuild?rev=1.5&view=markup
122 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.3.ebuild?rev=1.5&content-type=text/plain
123 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacity/audacity-1.3.3.ebuild?r1=1.4&r2=1.5
124
125 Index: audacity-1.3.3.ebuild
126 ===================================================================
127 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.3.ebuild,v
128 retrieving revision 1.4
129 retrieving revision 1.5
130 diff -u -r1.4 -r1.5
131 --- audacity-1.3.3.ebuild 28 Sep 2007 23:58:25 -0000 1.4
132 +++ audacity-1.3.3.ebuild 18 Nov 2007 20:28:32 -0000 1.5
133 @@ -1,6 +1,6 @@
134 # Copyright 1999-2007 Gentoo Foundation
135 # Distributed under the terms of the GNU General Public License v2
136 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.3.ebuild,v 1.4 2007/09/28 23:58:25 dirtyepic Exp $
137 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacity/audacity-1.3.3.ebuild,v 1.5 2007/11/18 20:28:32 aballier Exp $
138
139 WANT_AUTOCONF=latest
140 WANT_AUTOMAKE=latest
141 @@ -34,6 +34,14 @@
142
143 S="${WORKDIR}/${MY_P}-beta"
144
145 +pkg_setup() {
146 + if use flac && ! built_with_use --missing true media-libs/flac cxx; then
147 + eerror "To build ${PN} with flac support you need the C++ bindings for flac."
148 + eerror "Please enable the cxx USE flag for media-libs/flac"
149 + die "Missing FLAC C++ bindings."
150 + fi
151 +}
152 +
153 src_unpack() {
154 unpack ${A}
155
156
157
158
159 --
160 gentoo-commits@g.o mailing list