Gentoo Archives: gentoo-commits

From: "Bernard Cafarelli (voyageur)" <voyageur@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in gnustep-apps/cynthiune/files: cynthiune-0.9.5-NSCellExtensions.patch cynthiune-0.9.5-set-macro.patch cynthiune-0.9.5-gnustep-make-2.patch digest-cynthiune-0.9.5-r1 digest-cynthiune-0.9.4 digest-cynthiune-0.9.5
Date: Mon, 10 Sep 2007 18:35:22
Message-Id: E1IUnuL-0004mA-Cd@stork.gentoo.org
1 voyageur 07/09/10 18:22:49
2
3 Added: cynthiune-0.9.5-NSCellExtensions.patch
4 cynthiune-0.9.5-set-macro.patch
5 cynthiune-0.9.5-gnustep-make-2.patch
6 digest-cynthiune-0.9.5-r1
7 Removed: digest-cynthiune-0.9.4 digest-cynthiune-0.9.5
8 Log:
9 Version bump from the GNUstep overlay
10 (Portage version: 2.1.3.9)
11
12 Revision Changes Path
13 1.1 gnustep-apps/cynthiune/files/cynthiune-0.9.5-NSCellExtensions.patch
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/cynthiune-0.9.5-NSCellExtensions.patch?rev=1.1&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/cynthiune-0.9.5-NSCellExtensions.patch?rev=1.1&content-type=text/plain
17
18 Index: cynthiune-0.9.5-NSCellExtensions.patch
19 ===================================================================
20 diff -Naur Cynthiune-0.9.5.orig/Frameworks/Cynthiune/NSCellExtensions.m Cynthiune-0.9.5/Frameworks/Cynthiune/NSCellExtensions.m
21 --- Cynthiune-0.9.5.orig/Frameworks/Cynthiune/NSCellExtensions.m 2007-06-30 10:06:22.000000000 +0200
22 +++ Cynthiune-0.9.5/Frameworks/Cynthiune/NSCellExtensions.m 2007-06-30 10:06:47.000000000 +0200
23 @@ -20,6 +20,7 @@
24 * Boston, MA 02111-1307, USA.
25 */
26
27 +#import <AppKit/NSAttributedString.h>
28 #import <AppKit/NSStringDrawing.h>
29
30 #import "NSCellExtensions.h"
31
32
33
34 1.1 gnustep-apps/cynthiune/files/cynthiune-0.9.5-set-macro.patch
35
36 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/cynthiune-0.9.5-set-macro.patch?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/cynthiune-0.9.5-set-macro.patch?rev=1.1&content-type=text/plain
38
39 Index: cynthiune-0.9.5-set-macro.patch
40 ===================================================================
41 --- Cynthiune-0.9.5/Bundles/FLACTags/FLACTags.m
42 +++ Cynthiune-0.9.5/Bundles/FLACTags/FLACTags.m
43 @@ -72,7 +72,9 @@
44 value = equalsign + 1;
45 position = keyPositionInArray (key);
46 if (position > -1)
47 - SET (*arrayOfValues[position], [NSString stringWithUTF8String: value]);
48 + {
49 + SET (*arrayOfValues[position], [NSString stringWithUTF8String: value]);
50 + }
51 }
52 free (key);
53 }
54 --- Cynthiune-0.9.5/Bundles/VorbisTags/VorbisTags.m
55 +++ Cynthiune-0.9.5/Bundles/VorbisTags/VorbisTags.m
56 @@ -150,7 +150,9 @@
57 }
58
59 if (cComment)
60 - SET (*string, [NSString stringWithUTF8String: cComment]);
61 + {
62 + SET (*string, [NSString stringWithUTF8String: cComment]);
63 + }
64 }
65 }
66
67 --- Cynthiune-0.9.5/Bundles/XMMSInput/XMMSInput.m
68 +++ Cynthiune-0.9.5/Bundles/XMMSInput/XMMSInput.m
69 @@ -329,7 +329,9 @@
70 // inputPlugin->output->open_audio (FMT_S16_LE,44100, 2);
71 result = (inputPlugin->is_our_file (name) == 1);
72 if (result)
73 - SET (filename, fileName);
74 + {
75 + SET (filename, fileName);
76 + }
77
78 return result;
79 }
80
81
82
83 1.1 gnustep-apps/cynthiune/files/cynthiune-0.9.5-gnustep-make-2.patch
84
85 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/cynthiune-0.9.5-gnustep-make-2.patch?rev=1.1&view=markup
86 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/cynthiune-0.9.5-gnustep-make-2.patch?rev=1.1&content-type=text/plain
87
88 Index: cynthiune-0.9.5-gnustep-make-2.patch
89 ===================================================================
90 diff -Naur Cynthiune-0.9.5.orig/Bundles/aRts/GNUmakefile Cynthiune-0.9.5/Bundles/aRts/GNUmakefile
91 --- Cynthiune-0.9.5.orig/Bundles/aRts/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
92 +++ Cynthiune-0.9.5/Bundles/aRts/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
93 @@ -35,7 +35,7 @@
94 PACKAGE_NAME=aRts
95 BUNDLE_NAME=aRts
96 BUNDLE_EXTENSION=.output
97 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
98 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
99 aRts_PRINCIPAL_CLASS=aRts
100 aRts_LANGUAGES=
101 aRts_LOCALIZED_RESOURCE_FILES=
102 diff -Naur Cynthiune-0.9.5.orig/Bundles/ASFTags/GNUmakefile Cynthiune-0.9.5/Bundles/ASFTags/GNUmakefile
103 --- Cynthiune-0.9.5.orig/Bundles/ASFTags/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
104 +++ Cynthiune-0.9.5/Bundles/ASFTags/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
105 @@ -35,7 +35,7 @@
106 PACKAGE_NAME=ASFTags
107 BUNDLE_NAME=ASFTags
108 BUNDLE_EXTENSION=.tags
109 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
110 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
111 ASFTags_PRINCIPAL_CLASS=ASFTags
112
113 #
114 diff -Naur Cynthiune-0.9.5.orig/Bundles/AudioFile/GNUmakefile Cynthiune-0.9.5/Bundles/AudioFile/GNUmakefile
115 --- Cynthiune-0.9.5.orig/Bundles/AudioFile/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
116 +++ Cynthiune-0.9.5/Bundles/AudioFile/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
117 @@ -24,7 +24,7 @@
118 PACKAGE_NAME=AudioFile
119 BUNDLE_NAME=AudioFile
120 BUNDLE_EXTENSION=.format
121 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
122 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
123 AudioFile_PRINCIPAL_CLASS=AudioFile
124
125 AudioFile_LIBRARIES_DEPEND_UPON +=
126 diff -Naur Cynthiune-0.9.5.orig/Bundles/Esound/GNUmakefile Cynthiune-0.9.5/Bundles/Esound/GNUmakefile
127 --- Cynthiune-0.9.5.orig/Bundles/Esound/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
128 +++ Cynthiune-0.9.5/Bundles/Esound/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
129 @@ -35,7 +35,7 @@
130 PACKAGE_NAME=Esound
131 BUNDLE_NAME=Esound
132 BUNDLE_EXTENSION=.output
133 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
134 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
135 Esound_PRINCIPAL_CLASS=Esound
136 Esound_LANGUAGES=English French
137 Esound_LOCALIZED_RESOURCE_FILES=Localizable.strings
138 diff -Naur Cynthiune-0.9.5.orig/Bundles/FLAC/GNUmakefile Cynthiune-0.9.5/Bundles/FLAC/GNUmakefile
139 --- Cynthiune-0.9.5.orig/Bundles/FLAC/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
140 +++ Cynthiune-0.9.5/Bundles/FLAC/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
141 @@ -35,7 +35,7 @@
142 PACKAGE_NAME=FLAC
143 BUNDLE_NAME=FLAC
144 BUNDLE_EXTENSION=.format
145 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
146 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
147 FLAC_PRINCIPAL_CLASS=FLAC
148
149
150 diff -Naur Cynthiune-0.9.5.orig/Bundles/FLACTags/GNUmakefile Cynthiune-0.9.5/Bundles/FLACTags/GNUmakefile
151 --- Cynthiune-0.9.5.orig/Bundles/FLACTags/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
152 +++ Cynthiune-0.9.5/Bundles/FLACTags/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
153 @@ -35,7 +35,7 @@
154 PACKAGE_NAME=FLACTags
155 BUNDLE_NAME=FLACTags
156 BUNDLE_EXTENSION=.tags
157 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
158 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
159 FLACTags_PRINCIPAL_CLASS=FLACTags
160
161
162 diff -Naur Cynthiune-0.9.5.orig/Bundles/FormatSkeleton/GNUmakefile Cynthiune-0.9.5/Bundles/FormatSkeleton/GNUmakefile
163 --- Cynthiune-0.9.5.orig/Bundles/FormatSkeleton/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
164 +++ Cynthiune-0.9.5/Bundles/FormatSkeleton/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
165 @@ -35,7 +35,7 @@
166 PACKAGE_NAME=$FORMAT$
167 BUNDLE_NAME=$FORMAT$
168 BUNDLE_EXTENSION=.format
169 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
170 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
171 $FORMAT$_PRINCIPAL_CLASS=$FORMAT$
172
173
174 diff -Naur Cynthiune-0.9.5.orig/Bundles/GraphWriter/GNUmakefile Cynthiune-0.9.5/Bundles/GraphWriter/GNUmakefile
175 --- Cynthiune-0.9.5.orig/Bundles/GraphWriter/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
176 +++ Cynthiune-0.9.5/Bundles/GraphWriter/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
177 @@ -35,7 +35,7 @@
178 PACKAGE_NAME=GraphWriter
179 BUNDLE_NAME=GraphWriter
180 BUNDLE_EXTENSION=.output
181 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
182 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
183 GraphWriter_PRINCIPAL_CLASS=GraphWriter
184 GraphWriter_LANGUAGES=
185 GraphWriter_LOCALIZED_RESOURCE_FILES=
186 diff -Naur Cynthiune-0.9.5.orig/Bundles/ID3Tag/GNUmakefile Cynthiune-0.9.5/Bundles/ID3Tag/GNUmakefile
187 --- Cynthiune-0.9.5.orig/Bundles/ID3Tag/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
188 +++ Cynthiune-0.9.5/Bundles/ID3Tag/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
189 @@ -35,7 +35,7 @@
190 PACKAGE_NAME=ID3Tag
191 BUNDLE_NAME=ID3Tag
192 BUNDLE_EXTENSION=.tags
193 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
194 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
195 ID3Tag_PRINCIPAL_CLASS=ID3Tag
196
197 #
198 diff -Naur Cynthiune-0.9.5.orig/Bundles/Mod/GNUmakefile Cynthiune-0.9.5/Bundles/Mod/GNUmakefile
199 --- Cynthiune-0.9.5.orig/Bundles/Mod/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
200 +++ Cynthiune-0.9.5/Bundles/Mod/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
201 @@ -35,7 +35,7 @@
202 PACKAGE_NAME=Mod
203 BUNDLE_NAME=Mod
204 BUNDLE_EXTENSION=.format
205 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
206 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
207 Mod_PRINCIPAL_CLASS=Mod
208
209
210 diff -Naur Cynthiune-0.9.5.orig/Bundles/MP3/GNUmakefile Cynthiune-0.9.5/Bundles/MP3/GNUmakefile
211 --- Cynthiune-0.9.5.orig/Bundles/MP3/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
212 +++ Cynthiune-0.9.5/Bundles/MP3/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
213 @@ -35,7 +35,7 @@
214 PACKAGE_NAME=MP3
215 BUNDLE_NAME=MP3
216 BUNDLE_EXTENSION=.format
217 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
218 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
219 MP3_PRINCIPAL_CLASS=MP3
220
221 #
222 diff -Naur Cynthiune-0.9.5.orig/Bundles/Musepack/GNUmakefile Cynthiune-0.9.5/Bundles/Musepack/GNUmakefile
223 --- Cynthiune-0.9.5.orig/Bundles/Musepack/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
224 +++ Cynthiune-0.9.5/Bundles/Musepack/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
225 @@ -28,7 +28,7 @@
226 PACKAGE_NAME=Musepack
227 BUNDLE_NAME=Musepack
228 BUNDLE_EXTENSION=.format
229 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
230 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
231 Musepack_PRINCIPAL_CLASS=Musepack
232
233 #
234 diff -Naur Cynthiune-0.9.5.orig/Bundles/Ogg/GNUmakefile Cynthiune-0.9.5/Bundles/Ogg/GNUmakefile
235 --- Cynthiune-0.9.5.orig/Bundles/Ogg/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
236 +++ Cynthiune-0.9.5/Bundles/Ogg/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
237 @@ -35,7 +35,7 @@
238 PACKAGE_NAME=Ogg
239 BUNDLE_NAME=Ogg
240 BUNDLE_EXTENSION=.format
241 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
242 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
243 Ogg_PRINCIPAL_CLASS=Ogg
244
245
246 diff -Naur Cynthiune-0.9.5.orig/Bundles/OSS/GNUmakefile Cynthiune-0.9.5/Bundles/OSS/GNUmakefile
247 --- Cynthiune-0.9.5.orig/Bundles/OSS/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
248 +++ Cynthiune-0.9.5/Bundles/OSS/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
249 @@ -35,7 +35,7 @@
250 PACKAGE_NAME=OSS
251 BUNDLE_NAME=OSS
252 BUNDLE_EXTENSION=.output
253 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
254 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
255 OSS_PRINCIPAL_CLASS=OSS
256 OSS_LANGUAGES=English French
257 OSS_LOCALIZED_RESOURCE_FILES=Localizable.strings
258 diff -Naur Cynthiune-0.9.5.orig/Bundles/OutputSkeleton/GNUmakefile Cynthiune-0.9.5/Bundles/OutputSkeleton/GNUmakefile
259 --- Cynthiune-0.9.5.orig/Bundles/OutputSkeleton/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
260 +++ Cynthiune-0.9.5/Bundles/OutputSkeleton/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
261 @@ -35,7 +35,7 @@
262 PACKAGE_NAME=$OUTPUT$
263 BUNDLE_NAME=$OUTPUT$
264 BUNDLE_EXTENSION=.output
265 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
266 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
267 $OUTPUT$_PRINCIPAL_CLASS=$OUTPUT$
268 $OUTPUT$_LANGUAGES=
269 $OUTPUT$_LOCALIZED_RESOURCE_FILES=
270 diff -Naur Cynthiune-0.9.5.orig/Bundles/Taglib/GNUmakefile Cynthiune-0.9.5/Bundles/Taglib/GNUmakefile
271 --- Cynthiune-0.9.5.orig/Bundles/Taglib/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
272 +++ Cynthiune-0.9.5/Bundles/Taglib/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
273 @@ -35,7 +35,7 @@
274 PACKAGE_NAME=Taglib
275 BUNDLE_NAME=Taglib
276 BUNDLE_EXTENSION=.tags
277 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
278 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
279 Taglib_PRINCIPAL_CLASS=Taglib
280
281
282 diff -Naur Cynthiune-0.9.5.orig/Bundles/TagsSkeleton/GNUmakefile Cynthiune-0.9.5/Bundles/TagsSkeleton/GNUmakefile
283 --- Cynthiune-0.9.5.orig/Bundles/TagsSkeleton/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
284 +++ Cynthiune-0.9.5/Bundles/TagsSkeleton/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
285 @@ -35,7 +35,7 @@
286 PACKAGE_NAME=$TAGS$
287 BUNDLE_NAME=$TAGS$
288 BUNDLE_EXTENSION=.tags
289 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
290 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
291 $TAGS$_PRINCIPAL_CLASS=$TAGS$
292
293
294 diff -Naur Cynthiune-0.9.5.orig/Bundles/Timidity/GNUmakefile Cynthiune-0.9.5/Bundles/Timidity/GNUmakefile
295 --- Cynthiune-0.9.5.orig/Bundles/Timidity/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
296 +++ Cynthiune-0.9.5/Bundles/Timidity/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
297 @@ -35,7 +35,7 @@
298 PACKAGE_NAME=Timidity
299 BUNDLE_NAME=Timidity
300 BUNDLE_EXTENSION=.format
301 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
302 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
303 Timidity_PRINCIPAL_CLASS=Timidity
304
305
306 diff -Naur Cynthiune-0.9.5.orig/Bundles/VorbisTags/GNUmakefile Cynthiune-0.9.5/Bundles/VorbisTags/GNUmakefile
307 --- Cynthiune-0.9.5.orig/Bundles/VorbisTags/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
308 +++ Cynthiune-0.9.5/Bundles/VorbisTags/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
309 @@ -35,7 +35,7 @@
310 PACKAGE_NAME=VorbisTags
311 BUNDLE_NAME=VorbisTags
312 BUNDLE_EXTENSION=.tags
313 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
314 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
315 VorbisTags_PRINCIPAL_CLASS=VorbisTags
316
317
318 diff -Naur Cynthiune-0.9.5.orig/Bundles/WaveOut/GNUmakefile Cynthiune-0.9.5/Bundles/WaveOut/GNUmakefile
319 --- Cynthiune-0.9.5.orig/Bundles/WaveOut/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
320 +++ Cynthiune-0.9.5/Bundles/WaveOut/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
321 @@ -35,7 +35,7 @@
322 PACKAGE_NAME=WaveOut
323 BUNDLE_NAME=WaveOut
324 BUNDLE_EXTENSION=.output
325 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
326 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
327 WaveOut_PRINCIPAL_CLASS=WaveOut
328 WaveOut_LANGUAGES=
329 WaveOut_LOCALIZED_RESOURCE_FILES=
330 diff -Naur Cynthiune-0.9.5.orig/Bundles/WindowsMedia/GNUmakefile Cynthiune-0.9.5/Bundles/WindowsMedia/GNUmakefile
331 --- Cynthiune-0.9.5.orig/Bundles/WindowsMedia/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
332 +++ Cynthiune-0.9.5/Bundles/WindowsMedia/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
333 @@ -35,7 +35,7 @@
334 PACKAGE_NAME=WindowsMedia
335 BUNDLE_NAME=WindowsMedia
336 BUNDLE_EXTENSION=.format
337 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
338 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
339 WindowsMedia_PRINCIPAL_CLASS=WindowsMedia
340
341
342 diff -Naur Cynthiune-0.9.5.orig/Bundles/XMMSInput/GNUmakefile Cynthiune-0.9.5/Bundles/XMMSInput/GNUmakefile
343 --- Cynthiune-0.9.5.orig/Bundles/XMMSInput/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
344 +++ Cynthiune-0.9.5/Bundles/XMMSInput/GNUmakefile 2007-07-01 23:35:40.000000000 +0200
345 @@ -35,7 +35,7 @@
346 PACKAGE_NAME=XMMSInput
347 BUNDLE_NAME=XMMSInput
348 BUNDLE_EXTENSION=.format
349 -BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/Cynthiune
350 +BUNDLE_INSTALL_DIR=$(DESTDIR)/$(GNUSTEP_SYSTEM_LIBRARY)/Cynthiune
351 XMMSInput_PRINCIPAL_CLASS=XMMSInput
352
353
354 diff -Naur Cynthiune-0.9.5.orig/GNUmakefile Cynthiune-0.9.5/GNUmakefile
355 --- Cynthiune-0.9.5.orig/GNUmakefile 2007-07-01 23:33:59.000000000 +0200
356 +++ Cynthiune-0.9.5/GNUmakefile 2007-07-01 23:34:07.000000000 +0200
357 @@ -22,8 +22,6 @@
358
359 include $(GNUSTEP_MAKEFILES)/common.make
360
361 -GNUSTEP_INSTALLATION_DIR=$(GNUSTEP_LOCAL_ROOT)/
362 -
363 FRAMEWORKS_DIRS = Frameworks/Cynthiune
364 FRAMEWORKS = Cynthiune
365
366
367
368
369 1.1 gnustep-apps/cynthiune/files/digest-cynthiune-0.9.5-r1
370
371 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/digest-cynthiune-0.9.5-r1?rev=1.1&view=markup
372 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/gnustep-apps/cynthiune/files/digest-cynthiune-0.9.5-r1?rev=1.1&content-type=text/plain
373
374 Index: digest-cynthiune-0.9.5-r1
375 ===================================================================
376 RMD160 b9dff46275b6b79ebc62655e7de92b9c9aa41274 Cynthiune-0.9.5.tar.gz 490426
377 SHA256 e3e036385388556759e3712ea5e595976ec7a4867698dea7c46b46d226122e70 Cynthiune-0.9.5.tar.gz 490426
378
379
380
381 --
382 gentoo-commits@g.o mailing list