1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "macros.inc"
25
26// Files
27
28File gid_Brand_File_Txt_License
29    TXT_FILE_BODY;
30    Dir = gid_Brand_Dir_Share_Readme;
31  #ifdef UNX
32    Name=LICENSE;
33  #endif
34  #if defined(WNT) || defined(OS2)
35    Name=LICENSE.txt;
36  #endif
37    Styles = (PACKED, SCPZIP_REPLACE);
38End
39
40File gid_Brand_File_Txt_Notice
41    TXT_FILE_BODY;
42    Dir = gid_Brand_Dir_Share_Readme;
43  #ifdef UNX
44    Name=NOTICE;
45  #endif
46  #if defined(WNT) || defined(OS2)
47    Name=NOTICE.txt;
48  #endif
49    Styles = (PACKED, SCPZIP_REPLACE);
50End
51
52File gid_Brand_File_Txt_Readme
53    TXT_FILE_BODY;
54    Dir = gid_Brand_Dir_Share_Readme;
55  #ifdef UNX
56    README_ALL_LANG(Name, README);
57  #endif
58  #if defined(WNT) || defined(OS2)
59    README_TXT_ALL_LANG(Name, readme, txt);
60  #endif
61    Styles = (PACKED, SCPZIP_REPLACE);
62End
63
64File gid_Brand_File_Txt_Readme_Html
65    TXT_FILE_BODY;
66    Dir = gid_Brand_Dir_Share_Readme;
67  #ifdef UNX
68    README_TXT_ALL_LANG(Name, README, html);
69  #endif
70  #if defined(WNT) || defined(OS2)
71    README_TXT_ALL_LANG(Name, readme, html);
72  #endif
73    Styles = (PACKED, SCPZIP_REPLACE);
74End
75
76File gid_Brand_File_Readme_Readme
77    TXT_FILE_BODY;
78    Dir = gid_Brand_Dir_Readme;
79  #ifdef UNX
80    README_ALL_LANG(Name, README);
81  #endif
82  #if defined(WNT) || defined(OS2)
83    README_TXT_ALL_LANG(Name, readme, txt);
84  #endif
85    Styles = (PACKED, SCPZIP_REPLACE);
86End
87
88File gid_Brand_File_Readme_Readme_Html
89    TXT_FILE_BODY;
90    Dir = gid_Brand_Dir_Readme;
91  #ifdef UNX
92    README_TXT_ALL_LANG(Name, README, html);
93  #endif
94  #if defined(WNT) || defined(OS2)
95    README_TXT_ALL_LANG(Name, readme, html);
96  #endif
97    Styles = (PACKED, SCPZIP_REPLACE);
98End
99