xref: /trunk/main/scp2/source/ooo/scpaction_ooo.scp (revision 022bd5b42733e906eae05c77ae2dfbe09e67fca5)
1*022bd5b4SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*022bd5b4SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*022bd5b4SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*022bd5b4SAndrew Rist * distributed with this work for additional information
6*022bd5b4SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*022bd5b4SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*022bd5b4SAndrew Rist * "License"); you may not use this file except in compliance
9*022bd5b4SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11*022bd5b4SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13*022bd5b4SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*022bd5b4SAndrew Rist * software distributed under the License is distributed on an
15*022bd5b4SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*022bd5b4SAndrew Rist * KIND, either express or implied.  See the License for the
17*022bd5b4SAndrew Rist * specific language governing permissions and limitations
18*022bd5b4SAndrew Rist * under the License.
19cdf0e10cSrcweir *
20*022bd5b4SAndrew Rist *************************************************************/
21*022bd5b4SAndrew Rist
22*022bd5b4SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "macros.inc"
25cdf0e10cSrcweir
26cdf0e10cSrcweirScpAction scp_Copy_License_Html
27cdf0e10cSrcweir  #ifdef UNX
28cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, LICENSE, html);
29cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, LICENSE, html);
30cdf0e10cSrcweir  #else
31cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, license, html);
32cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, license, html);
33cdf0e10cSrcweir  #endif
34cdf0e10cSrcweir    Styles = (SCPZIP_REPLACE);
35cdf0e10cSrcweir  #ifndef MACOSX
36cdf0e10cSrcweir    Subdir = "licenses";
37cdf0e10cSrcweir  #else
38cdf0e10cSrcweir    Subdir = "LICENSEs";
39cdf0e10cSrcweir  #endif
40cdf0e10cSrcweirEnd
41cdf0e10cSrcweir
42cdf0e10cSrcweirScpAction scp_Copy_License_Txt
43cdf0e10cSrcweir  #ifdef UNX
44cdf0e10cSrcweir    README_ALL_LANG(Copy, LICENSE);
45cdf0e10cSrcweir    README_ALL_LANG(Name, LICENSE);
46cdf0e10cSrcweir  #else
47cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, license, txt);
48cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, license, txt);
49cdf0e10cSrcweir  #endif
50cdf0e10cSrcweir    Styles = (SCPZIP_REPLACE);
51cdf0e10cSrcweir  #ifndef MACOSX
52cdf0e10cSrcweir    Subdir = "licenses";
53cdf0e10cSrcweir  #else
54cdf0e10cSrcweir    Subdir = "LICENSEs";
55cdf0e10cSrcweir  #endif
56cdf0e10cSrcweirEnd
57cdf0e10cSrcweir
58cdf0e10cSrcweir#ifdef MACOSX
59cdf0e10cSrcweirScpAction scp_Copy_Thirdpartylicense_Readme_Html
60cdf0e10cSrcweir    Copy = "THIRDPARTYLICENSEREADME.html";
61cdf0e10cSrcweir    Name= "THIRDPARTYLICENSEREADME.html";
62cdf0e10cSrcweir    Subdir = "LICENSEs";
63cdf0e10cSrcweirEnd
64cdf0e10cSrcweir#endif
65cdf0e10cSrcweir
66cdf0e10cSrcweirScpAction scp_Copy_Readme_Html
67cdf0e10cSrcweir  #ifdef UNX
68cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, README, html);
69cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, README, html);
70cdf0e10cSrcweir  #else
71cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, readme, html);
72cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, readme, html);
73cdf0e10cSrcweir  #endif
74cdf0e10cSrcweir    Styles = (SCPZIP_REPLACE);
75cdf0e10cSrcweir  #ifndef MACOSX
76cdf0e10cSrcweir    Subdir = "readmes";
77cdf0e10cSrcweir  #else
78cdf0e10cSrcweir    Subdir = "READMEs";
79cdf0e10cSrcweir  #endif
80cdf0e10cSrcweirEnd
81cdf0e10cSrcweir
82cdf0e10cSrcweirScpAction scp_Copy_Readme_Txt
83cdf0e10cSrcweir  #ifdef UNX
84cdf0e10cSrcweir    README_ALL_LANG(Copy, README);
85cdf0e10cSrcweir    README_ALL_LANG(Name, README);
86cdf0e10cSrcweir  #else
87cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, readme, txt);
88cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, readme, txt);
89cdf0e10cSrcweir  #endif
90cdf0e10cSrcweir    Styles = (SCPZIP_REPLACE);
91cdf0e10cSrcweir  #ifndef MACOSX
92cdf0e10cSrcweir    Subdir = "readmes";
93cdf0e10cSrcweir  #else
94cdf0e10cSrcweir    Subdir = "READMEs";
95cdf0e10cSrcweir  #endif
96cdf0e10cSrcweirEnd
97cdf0e10cSrcweir
98cdf0e10cSrcweir#if defined(WNT) && defined(_gcc3)
99cdf0e10cSrcweirScpAction SCP_COPY_MINGWM10
100cdf0e10cSrcweir    Copy = "mingwm10.dll";
101cdf0e10cSrcweir    Name = "mingwm10.dll";
102cdf0e10cSrcweirEnd
103cdf0e10cSrcweir#if defined(MINGW_GCCDLL)
104cdf0e10cSrcweirScpAction SCP_COPY_MINGW_GCCS
105cdf0e10cSrcweir    Copy = MINGW_GCCDLL;
106cdf0e10cSrcweir    Name = MINGW_GCCDLL;
107cdf0e10cSrcweirEnd
108cdf0e10cSrcweir#endif
109cdf0e10cSrcweir#if defined(MINGW_GXXDLL)
110cdf0e10cSrcweirScpAction SCP_COPY_MINGW_STDCPP
111cdf0e10cSrcweir    Copy = MINGW_GXXDLL;
112cdf0e10cSrcweir    Name = MINGW_GXXDLL;
113cdf0e10cSrcweirEnd
114cdf0e10cSrcweir#endif
115cdf0e10cSrcweir#endif
116cdf0e10cSrcweir
117cdf0e10cSrcweirScpAction scp_Copy_Xpd_Javaloader
118cdf0e10cSrcweir    Copy = "javaloader.sh";
119cdf0e10cSrcweir    Name = "setup";
120cdf0e10cSrcweir    Styles = (XPD_ONLY);
121cdf0e10cSrcweir    UnixRights = 775;
122cdf0e10cSrcweirEnd
123cdf0e10cSrcweir
124cdf0e10cSrcweirScpAction scp_Copy_Xpd_Javajarfile
125cdf0e10cSrcweir    Copy = "JavaSetup.jar";
126cdf0e10cSrcweir    Name = "JavaSetup.jar";
127cdf0e10cSrcweir    Styles = (XPD_ONLY);
128cdf0e10cSrcweirEnd
129cdf0e10cSrcweir
130cdf0e10cSrcweir// #ifdef SOLARIS
131cdf0e10cSrcweir// ScpAction scp_Copy_Xpd_Getuidso
132cdf0e10cSrcweir//     Copy = "getuid.so";
133cdf0e10cSrcweir//     Name = "getuid.so";
134cdf0e10cSrcweir//     Styles = (XPD_ONLY);
135cdf0e10cSrcweir//     Subdir = "installdata/getuid";
136cdf0e10cSrcweir// End
137cdf0e10cSrcweir// #endif
138cdf0e10cSrcweir
139cdf0e10cSrcweir// Setup image
140cdf0e10cSrcweirScpAction scp_Copy_Xpd_Gif_Setup
141cdf0e10cSrcweir    Copy = "Setup.gif";
142cdf0e10cSrcweir    Name = "Setup.gif";
143cdf0e10cSrcweir    Styles = (XPD_ONLY);
144cdf0e10cSrcweir    Subdir = "installdata/images";
145cdf0e10cSrcweirEnd
146cdf0e10cSrcweir
147cdf0e10cSrcweir// Setup license file
148cdf0e10cSrcweirScpAction scp_Copy_Xpd_Html_License
149cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, LICENSE, html);
150cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, LICENSE, html);
151cdf0e10cSrcweir    Styles = (XPD_ONLY);
152cdf0e10cSrcweir    Subdir = "installdata/html";
153cdf0e10cSrcweirEnd
154cdf0e10cSrcweir
155cdf0e10cSrcweirScpAction scp_Copy_Xpd_Html_License_En_Us
156cdf0e10cSrcweir    Copy = "LICENSE_en-US.html";
157cdf0e10cSrcweir    Name = "LICENSE.html";
158cdf0e10cSrcweir    Styles = (XPD_ONLY);
159cdf0e10cSrcweir    Subdir = "installdata/html";
160cdf0e10cSrcweirEnd
161cdf0e10cSrcweir
162cdf0e10cSrcweir// Setup help files
163cdf0e10cSrcweir
164cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Acceptlicense
165cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, AcceptLicense, html);
166cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, AcceptLicense, html);
167cdf0e10cSrcweir    Styles = (XPD_ONLY);
168cdf0e10cSrcweir    Subdir = "installdata/html";
169cdf0e10cSrcweirEnd
170cdf0e10cSrcweir
171cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Acceptlicense_En_Us
172cdf0e10cSrcweir    Copy = "AcceptLicense_en-US.html";
173cdf0e10cSrcweir    Name = "AcceptLicense.html";
174cdf0e10cSrcweir    Styles = (XPD_ONLY);
175cdf0e10cSrcweir    Subdir = "installdata/html";
176cdf0e10cSrcweirEnd
177cdf0e10cSrcweir
178cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Choosecomponents
179cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, ChooseComponents, html);
180cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, ChooseComponents, html);
181cdf0e10cSrcweir    Styles = (XPD_ONLY);
182cdf0e10cSrcweir    Subdir = "installdata/html";
183cdf0e10cSrcweirEnd
184cdf0e10cSrcweir
185cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Choosecomponents_En_Us
186cdf0e10cSrcweir    Copy = "ChooseComponents_en-US.html";
187cdf0e10cSrcweir    Name = "ChooseComponents.html";
188cdf0e10cSrcweir    Styles = (XPD_ONLY);
189cdf0e10cSrcweir    Subdir = "installdata/html";
190cdf0e10cSrcweirEnd
191cdf0e10cSrcweir
192cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Choosedirectory
193cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, ChooseDirectory, html);
194cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, ChooseDirectory, html);
195cdf0e10cSrcweir    Styles = (XPD_ONLY);
196cdf0e10cSrcweir    Subdir = "installdata/html";
197cdf0e10cSrcweirEnd
198cdf0e10cSrcweir
199cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Choosedirectory_En_Us
200cdf0e10cSrcweir    Copy = "ChooseDirectory_en-US.html";
201cdf0e10cSrcweir    Name = "ChooseDirectory.html";
202cdf0e10cSrcweir    Styles = (XPD_ONLY);
203cdf0e10cSrcweir    Subdir = "installdata/html";
204cdf0e10cSrcweirEnd
205cdf0e10cSrcweir
206cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Chooseinstallationtype
207cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, ChooseInstallationType, html);
208cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, ChooseInstallationType, html);
209cdf0e10cSrcweir    Styles = (XPD_ONLY);
210cdf0e10cSrcweir    Subdir = "installdata/html";
211cdf0e10cSrcweirEnd
212cdf0e10cSrcweir
213cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Chooseinstallationtype_En_Us
214cdf0e10cSrcweir    Copy = "ChooseInstallationType_en-US.html";
215cdf0e10cSrcweir    Name = "ChooseInstallationType.html";
216cdf0e10cSrcweir    Styles = (XPD_ONLY);
217cdf0e10cSrcweir    Subdir = "installdata/html";
218cdf0e10cSrcweirEnd
219cdf0e10cSrcweir
220cdf0e10cSrcweir// ScpAction scp_Copy_Xpd_Help_Html_Chooselanguage
221cdf0e10cSrcweir//    README_TXT_ALL_LANG(Copy, ChooseLanguage, html);
222cdf0e10cSrcweir//    README_TXT_ALL_LANG(Name, ChooseLanguage, html);
223cdf0e10cSrcweir//    Styles = (XPD_ONLY);
224cdf0e10cSrcweir//    Subdir = "installdata/html";
225cdf0e10cSrcweir// End
226cdf0e10cSrcweir
227cdf0e10cSrcweir// ScpAction scp_Copy_Xpd_Help_Html_Chooselanguage_En_Us
228cdf0e10cSrcweir//    Copy = "ChooseLanguage_en-US.html";
229cdf0e10cSrcweir//    Name = "ChooseLanguage.html";
230cdf0e10cSrcweir//    Styles = (XPD_ONLY);
231cdf0e10cSrcweir//    Subdir = "installdata/html";
232cdf0e10cSrcweir// End
233cdf0e10cSrcweir
234cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Chooseuninstallationcomponents
235cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, ChooseUninstallationComponents, html);
236cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, ChooseUninstallationComponents, html);
237cdf0e10cSrcweir    Styles = (XPD_ONLY);
238cdf0e10cSrcweir    Subdir = "installdata/html";
239cdf0e10cSrcweirEnd
240cdf0e10cSrcweir
241cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Chooseuninstallationcomponents_En_Us
242cdf0e10cSrcweir    Copy = "ChooseUninstallationComponents_en-US.html";
243cdf0e10cSrcweir    Name = "ChooseUninstallationComponents.html";
244cdf0e10cSrcweir    Styles = (XPD_ONLY);
245cdf0e10cSrcweir    Subdir = "installdata/html";
246cdf0e10cSrcweirEnd
247cdf0e10cSrcweir
248cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Chooseuninstallationtype
249cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, ChooseUninstallationType, html);
250cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, ChooseUninstallationType, html);
251cdf0e10cSrcweir    Styles = (XPD_ONLY);
252cdf0e10cSrcweir    Subdir = "installdata/html";
253cdf0e10cSrcweirEnd
254cdf0e10cSrcweir
255cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Chooseuninstallationtype_En_Us
256cdf0e10cSrcweir    Copy = "ChooseUninstallationType_en-US.html";
257cdf0e10cSrcweir    Name = "ChooseUninstallationType.html";
258cdf0e10cSrcweir    Styles = (XPD_ONLY);
259cdf0e10cSrcweir    Subdir = "installdata/html";
260cdf0e10cSrcweirEnd
261cdf0e10cSrcweir
262cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Installationimminent
263cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, InstallationImminent, html);
264cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, InstallationImminent, html);
265cdf0e10cSrcweir    Styles = (XPD_ONLY);
266cdf0e10cSrcweir    Subdir = "installdata/html";
267cdf0e10cSrcweirEnd
268cdf0e10cSrcweir
269cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Installationimminent_En_Us
270cdf0e10cSrcweir    Copy = "InstallationImminent_en-US.html";
271cdf0e10cSrcweir    Name = "InstallationImminent.html";
272cdf0e10cSrcweir    Styles = (XPD_ONLY);
273cdf0e10cSrcweir    Subdir = "installdata/html";
274cdf0e10cSrcweirEnd
275cdf0e10cSrcweir
276cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Installationongoing
277cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, InstallationOngoing, html);
278cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, InstallationOngoing, html);
279cdf0e10cSrcweir    Styles = (XPD_ONLY);
280cdf0e10cSrcweir    Subdir = "installdata/html";
281cdf0e10cSrcweirEnd
282cdf0e10cSrcweir
283cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Installationongoing_En_Us
284cdf0e10cSrcweir    Copy = "InstallationOngoing_en-US.html";
285cdf0e10cSrcweir    Name = "InstallationOngoing.html";
286cdf0e10cSrcweir    Styles = (XPD_ONLY);
287cdf0e10cSrcweir    Subdir = "installdata/html";
288cdf0e10cSrcweirEnd
289cdf0e10cSrcweir
290cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Prologue
291cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, Prologue, html);
292cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, Prologue, html);
293cdf0e10cSrcweir    Styles = (XPD_ONLY);
294cdf0e10cSrcweir    Subdir = "installdata/html";
295cdf0e10cSrcweirEnd
296cdf0e10cSrcweir
297cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Prologue_En_Us
298cdf0e10cSrcweir    Copy = "Prologue_en-US.html";
299cdf0e10cSrcweir    Name = "Prologue.html";
300cdf0e10cSrcweir    Styles = (XPD_ONLY);
301cdf0e10cSrcweir    Subdir = "installdata/html";
302cdf0e10cSrcweirEnd
303cdf0e10cSrcweir
304cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Uninstallationimminent
305cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, UninstallationImminent, html);
306cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, UninstallationImminent, html);
307cdf0e10cSrcweir    Styles = (XPD_ONLY);
308cdf0e10cSrcweir    Subdir = "installdata/html";
309cdf0e10cSrcweirEnd
310cdf0e10cSrcweir
311cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Uninstallationimminent_En_Us
312cdf0e10cSrcweir    Copy = "UninstallationImminent_en-US.html";
313cdf0e10cSrcweir    Name = "UninstallationImminent.html";
314cdf0e10cSrcweir    Styles = (XPD_ONLY);
315cdf0e10cSrcweir    Subdir = "installdata/html";
316cdf0e10cSrcweirEnd
317cdf0e10cSrcweir
318cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Uninstallationongoing
319cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, UninstallationOngoing, html);
320cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, UninstallationOngoing, html);
321cdf0e10cSrcweir    Styles = (XPD_ONLY);
322cdf0e10cSrcweir    Subdir = "installdata/html";
323cdf0e10cSrcweirEnd
324cdf0e10cSrcweir
325cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Uninstallationongoing_En_Us
326cdf0e10cSrcweir    Copy = "UninstallationOngoing_en-US.html";
327cdf0e10cSrcweir    Name = "UninstallationOngoing.html";
328cdf0e10cSrcweir    Styles = (XPD_ONLY);
329cdf0e10cSrcweir    Subdir = "installdata/html";
330cdf0e10cSrcweirEnd
331cdf0e10cSrcweir
332cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Uninstallationprologue
333cdf0e10cSrcweir    README_TXT_ALL_LANG(Copy, UninstallationPrologue, html);
334cdf0e10cSrcweir    README_TXT_ALL_LANG(Name, UninstallationPrologue, html);
335cdf0e10cSrcweir    Styles = (XPD_ONLY);
336cdf0e10cSrcweir    Subdir = "installdata/html";
337cdf0e10cSrcweirEnd
338cdf0e10cSrcweir
339cdf0e10cSrcweirScpAction scp_Copy_Xpd_Help_Html_Uninstallationprologue_En_Us
340cdf0e10cSrcweir    Copy = "UninstallationPrologue_en-US.html";
341cdf0e10cSrcweir    Name = "UninstallationPrologue.html";
342cdf0e10cSrcweir    Styles = (XPD_ONLY);
343cdf0e10cSrcweir    Subdir = "installdata/html";
344cdf0e10cSrcweirEnd
345cdf0e10cSrcweir
346cdf0e10cSrcweir#ifdef MACOSX
347cdf0e10cSrcweirScpAction scp_Copy_Dmg_Background_Image
348cdf0e10cSrcweir  #if defined(BUILD_SPECIAL)
349cdf0e10cSrcweir    Copy = "osxdndinstall.png";
350cdf0e10cSrcweir  #else
351cdf0e10cSrcweir    Copy = "osxdndinstall_nologo.png";
352cdf0e10cSrcweir  #endif
353cdf0e10cSrcweir    Name = "background.png";
354cdf0e10cSrcweir    UnixRights = 444;
355cdf0e10cSrcweir    Styles = ();
356cdf0e10cSrcweir    Subdir = ".background";
357cdf0e10cSrcweirEnd
358cdf0e10cSrcweir
359cdf0e10cSrcweirScpAction scp_Copy_Ds_Store
360cdf0e10cSrcweir    Copy = "DS_Store";
3611ed5bd48SJürgen Schmidt    DevCopy = "DS_Store_Dev";
362cdf0e10cSrcweir    LangPackCopy = "DS_Store_Langpack";
363cdf0e10cSrcweir    PatchCopy = "DS_Store_Patch";
364cdf0e10cSrcweir    Name = ".DS_Store";
365cdf0e10cSrcweir    UnixRights = 444;
366cdf0e10cSrcweir    Styles = (FORCELANGUAGEPACK);
367cdf0e10cSrcweirEnd
368cdf0e10cSrcweir#endif
369