raylib-bindings 0.7.9-x86_64-darwin → 0.7.10-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ChangeLog +539 -531
- data/LICENSE.txt +1 -1
- data/README.md +217 -209
- data/examples/template.rb +144 -144
- data/lib/config.rb +117 -116
- data/lib/libraylib.x86_64.dylib +0 -0
- data/lib/physac.rb +331 -331
- data/lib/physac.x86_64.dylib +0 -0
- data/lib/raygui.x86_64.dylib +0 -0
- data/lib/raygui_helper.rb +127 -127
- data/lib/raygui_main.rb +912 -912
- data/lib/raylib.rb +62 -62
- data/lib/raylib_helper.rb +431 -415
- data/lib/raylib_main.rb +5341 -5330
- data/lib/raymath.rb +1067 -1067
- data/lib/rcamera.rb +126 -126
- data/lib/rlgl.rb +1375 -1374
- metadata +3 -6
data/LICENSE.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
Ruby-raylib : Yet another raylib wrapper for Ruby
|
2
|
-
Copyright (c) 2021-
|
2
|
+
Copyright (c) 2021-2025 vaiorabbit <http://twitter.com/vaiorabbit>
|
3
3
|
|
4
4
|
This software is provided 'as-is', without any express or implied
|
5
5
|
warranty. In no event will the authors be held liable for any damages
|
data/README.md
CHANGED
@@ -1,209 +1,217 @@
|
|
1
|
-
<!-- -*- mode:markdown; coding:utf-8; -*- -->
|
2
|
-
|
3
|
-
# Yet another raylib wrapper for Ruby #
|
4
|
-
|
5
|
-
* Created : 2021-10-17
|
6
|
-
* Last modified :
|
7
|
-
|
8
|
-
Provides Ruby bindings for raylib-related libraries including:
|
9
|
-
|
10
|
-
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/
|
11
|
-
* raylib
|
12
|
-
* raymath
|
13
|
-
* rlgl
|
14
|
-
* [raygui](https://github.com/raysan5/raygui) version [4.5-dev]( https://github.com/raysan5/raygui/commit/
|
15
|
-
* [Physac](https://github.com/raysan5/physac) version [1.1]( https://github.com/raysan5/physac/commit/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833 )
|
16
|
-
|
17
|
-
<img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/bitmap_font_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/game_of_life_simple_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/lissajous_curve_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/procedural_texture_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/reversi_board_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/utf8_font_rb.png" width="125">
|
18
|
-
|
19
|
-
## Features ##
|
20
|
-
|
21
|
-
* Generated semi-automatically
|
22
|
-
* Based on Ruby/FFI ( https://github.com/ffi/ffi )
|
23
|
-
* Pre-built binaries are inside:
|
24
|
-
* Windows (x86_64)
|
25
|
-
* macOS (x86_64, ARM64)
|
26
|
-
* Linux (x86_64, ARM64)
|
27
|
-
|
28
|
-
## Quick Start ##
|
29
|
-
|
30
|
-
```
|
31
|
-
D:\> gem install raylib-bindings
|
32
|
-
Fetching raylib-bindings-...
|
33
|
-
...
|
34
|
-
1 gem installed
|
35
|
-
|
36
|
-
D:\> ruby -r raylib -e 'Raylib.template'
|
37
|
-
[Info] Raylib.template : C:/Ruby31-x64/lib/ruby/gems/3.1.0/gems/raylib-bindings-0.0.11/examples/template.rb => d://template.rb
|
38
|
-
[Info] Raylib.template : Done
|
39
|
-
|
40
|
-
D:\> ruby template.rb
|
41
|
-
```
|
42
|
-
↓
|
43
|
-
|
44
|
-
<img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/template_screenshot.png" width="400">
|
45
|
-
|
46
|
-
## Prerequisites ##
|
47
|
-
|
48
|
-
* Ruby interpreter
|
49
|
-
* Tested on:
|
50
|
-
* [macOS] https://rvm.io
|
51
|
-
* ruby 3.
|
52
|
-
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
53
|
-
* ruby 3.
|
54
|
-
* [Linux/x86_64 WSL] https://github.com/rvm/ubuntu_rvm
|
55
|
-
* ruby 3.2.0preview1 (2022-04-03 master f801386f0c) [x86_64-linux]
|
56
|
-
* [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
|
57
|
-
* ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [aarch64-linux]
|
58
|
-
|
59
|
-
* If you need to build DLLs/shared libralies for your own runtime envrioenment (Linux, etc.):
|
60
|
-
* CMake https://cmake.org/download/
|
61
|
-
* C Compiler
|
62
|
-
* Tested compilers:
|
63
|
-
* [macOS] clang
|
64
|
-
|
65
|
-
$ clang --version
|
66
|
-
Apple clang version
|
67
|
-
Target: arm64-apple-
|
68
|
-
Thread model: posix
|
69
|
-
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
70
|
-
|
71
|
-
* [Windows] gcc
|
72
|
-
|
73
|
-
gcc (Rev3, Built by MSYS2 project) 13.2.0
|
74
|
-
|
75
|
-
* [Linux] gcc, clang
|
76
|
-
|
77
|
-
(x86_64) Ubuntu clang version 14.0.0-1ubuntu1
|
78
|
-
(arm64) Debian clang version 14.0.6
|
79
|
-
|
80
|
-
<details>
|
81
|
-
<summary>Older versions</summary>
|
82
|
-
|
83
|
-
* Ruby interpreter
|
84
|
-
* Tested on:
|
85
|
-
* [macOS]
|
86
|
-
* ruby 3.3.
|
87
|
-
* ruby 3.
|
88
|
-
* ruby 3.2.
|
89
|
-
* ruby 3.
|
90
|
-
* ruby 3.1.
|
91
|
-
* ruby 3.
|
92
|
-
|
93
|
-
|
94
|
-
* ruby 3.
|
95
|
-
* ruby 3.
|
96
|
-
* ruby 3.
|
97
|
-
|
98
|
-
* ruby 3.
|
99
|
-
|
100
|
-
*
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
*
|
156
|
-
* <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-
|
157
|
-
* <https://github.com/vaiorabbit/raylib-bindings-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
*
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
*
|
171
|
-
*
|
172
|
-
|
173
|
-
##
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
1
|
+
<!-- -*- mode:markdown; coding:utf-8; -*- -->
|
2
|
+
|
3
|
+
# Yet another raylib wrapper for Ruby #
|
4
|
+
|
5
|
+
* Created : 2021-10-17
|
6
|
+
* Last modified : 2025-01-01
|
7
|
+
|
8
|
+
Provides Ruby bindings for raylib-related libraries including:
|
9
|
+
|
10
|
+
* [raylib](https://github.com/raysan5/raylib) version [5.6-dev]( https://github.com/raysan5/raylib/commit/93a1e75741175b9a2136593064b3714e79a363e2 )
|
11
|
+
* raylib
|
12
|
+
* raymath
|
13
|
+
* rlgl
|
14
|
+
* [raygui](https://github.com/raysan5/raygui) version [4.5-dev]( https://github.com/raysan5/raygui/commit/f11dc823d1c938def8f0a823fd5f51979caab94d )
|
15
|
+
* [Physac](https://github.com/raysan5/physac) version [1.1]( https://github.com/raysan5/physac/commit/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833 )
|
16
|
+
|
17
|
+
<img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/bitmap_font_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/game_of_life_simple_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/lissajous_curve_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/procedural_texture_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/reversi_board_rb.png" width="125"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/utf8_font_rb.png" width="125">
|
18
|
+
|
19
|
+
## Features ##
|
20
|
+
|
21
|
+
* Generated semi-automatically
|
22
|
+
* Based on Ruby/FFI ( https://github.com/ffi/ffi )
|
23
|
+
* Pre-built binaries are inside:
|
24
|
+
* Windows (x86_64)
|
25
|
+
* macOS (x86_64, ARM64)
|
26
|
+
* Linux (x86_64, ARM64)
|
27
|
+
|
28
|
+
## Quick Start ##
|
29
|
+
|
30
|
+
```
|
31
|
+
D:\> gem install raylib-bindings
|
32
|
+
Fetching raylib-bindings-...
|
33
|
+
...
|
34
|
+
1 gem installed
|
35
|
+
|
36
|
+
D:\> ruby -r raylib -e 'Raylib.template'
|
37
|
+
[Info] Raylib.template : C:/Ruby31-x64/lib/ruby/gems/3.1.0/gems/raylib-bindings-0.0.11/examples/template.rb => d://template.rb
|
38
|
+
[Info] Raylib.template : Done
|
39
|
+
|
40
|
+
D:\> ruby template.rb
|
41
|
+
```
|
42
|
+
↓
|
43
|
+
|
44
|
+
<img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings/main/doc/template_screenshot.png" width="400">
|
45
|
+
|
46
|
+
## Prerequisites ##
|
47
|
+
|
48
|
+
* Ruby interpreter
|
49
|
+
* Tested on:
|
50
|
+
* [macOS] https://rvm.io
|
51
|
+
* ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [arm64-darwin24]
|
52
|
+
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
53
|
+
* ruby 3.4.1 (2024-12-25 revision 48d4efcb85) +PRISM [x64-mingw-ucrt]
|
54
|
+
* [Linux/x86_64 WSL] https://github.com/rvm/ubuntu_rvm
|
55
|
+
* ruby 3.2.0preview1 (2022-04-03 master f801386f0c) [x86_64-linux]
|
56
|
+
* [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
|
57
|
+
* ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [aarch64-linux]
|
58
|
+
|
59
|
+
* If you need to build DLLs/shared libralies for your own runtime envrioenment (Linux, etc.):
|
60
|
+
* CMake https://cmake.org/download/
|
61
|
+
* C Compiler
|
62
|
+
* Tested compilers:
|
63
|
+
* [macOS] clang
|
64
|
+
|
65
|
+
$ clang --version
|
66
|
+
Apple clang version 16.0.0 (clang-1600.0.26.6)
|
67
|
+
Target: arm64-apple-darwin24.2.0
|
68
|
+
Thread model: posix
|
69
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
70
|
+
|
71
|
+
* [Windows] gcc
|
72
|
+
|
73
|
+
gcc (Rev3, Built by MSYS2 project) 13.2.0
|
74
|
+
|
75
|
+
* [Linux] gcc, clang
|
76
|
+
|
77
|
+
(x86_64) Ubuntu clang version 14.0.0-1ubuntu1
|
78
|
+
(arm64) Debian clang version 14.0.6
|
79
|
+
|
80
|
+
<details>
|
81
|
+
<summary>Older versions</summary>
|
82
|
+
|
83
|
+
* Ruby interpreter
|
84
|
+
* Tested on:
|
85
|
+
* [macOS]
|
86
|
+
* ruby 3.3.3 (2024-06-12 revision f1c7b6f435) [arm64-darwin23]
|
87
|
+
* ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [arm64-darwin23]
|
88
|
+
* ruby 3.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin22]
|
89
|
+
* ruby 3.2.0 (2022-12-25 revision a528908271) [arm64-darwin21]
|
90
|
+
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [arm64-darwin21]
|
91
|
+
* ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [arm64-darwin20]
|
92
|
+
* ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [arm64-darwin20]
|
93
|
+
* [Windows] https://rubyinstaller.org/downloads/ Ruby+Devkit
|
94
|
+
* ruby 3.3.0 (2023-12-25 revision 5124f9ac75) [x64-mingw-ucrt]
|
95
|
+
* ruby 3.2.0 (2022-12-25 revision a528908271) [x64-mingw-ucrt]
|
96
|
+
* ruby 3.1.2p20 (2022-04-12 revision 4491bb740a) [x64-mingw-ucrt]
|
97
|
+
* ruby 3.1.1p18 (2022-02-18 revision 53f5fc4236) [x64-mingw-ucrt]
|
98
|
+
* ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x64-mingw32]
|
99
|
+
* [Linux/ARM64 Chromebook] https://github.com/rvm/ubuntu_rvm
|
100
|
+
* ruby 3.2.0 (2022-12-25 revision a528908271) [aarch64-linux]
|
101
|
+
|
102
|
+
* Compiler
|
103
|
+
* Tested on:
|
104
|
+
* [macOS] clang
|
105
|
+
|
106
|
+
$ clang --version
|
107
|
+
Apple clang version 15.0.0 (clang-1500.3.9.4)
|
108
|
+
Target: arm64-apple-darwin23.4.0
|
109
|
+
Thread model: posix
|
110
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
111
|
+
|
112
|
+
$ clang --version
|
113
|
+
Apple clang version 15.0.0 (clang-1500.0.40.1)
|
114
|
+
Target: arm64-apple-darwin23.0.0
|
115
|
+
Thread model: posix
|
116
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
117
|
+
|
118
|
+
$ clang --version
|
119
|
+
Apple clang version 14.0.0 (clang-1400.0.29.202)
|
120
|
+
Target: arm64-apple-darwin22.2.0
|
121
|
+
Thread model: posix
|
122
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
123
|
+
|
124
|
+
$ clang --version
|
125
|
+
Apple clang version 13.1.6 (clang-1316.0.21.2.5)
|
126
|
+
Target: arm64-apple-darwin21.5.0
|
127
|
+
Thread model: posix
|
128
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
129
|
+
|
130
|
+
$ clang --version
|
131
|
+
Apple clang version 13.1.6 (clang-1316.0.21.2.3)
|
132
|
+
Target: arm64-apple-darwin21.5.0
|
133
|
+
Thread model: posix
|
134
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
135
|
+
|
136
|
+
Apple clang version 13.0.0 (clang-1300.0.29.3)
|
137
|
+
Target: arm64-apple-darwin20.6.0
|
138
|
+
Thread model: posix
|
139
|
+
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
|
140
|
+
|
141
|
+
* [Windows] gcc
|
142
|
+
|
143
|
+
gcc (Rev7, Built by MSYS2 project) 12.2.0
|
144
|
+
gcc (Rev10, Built by MSYS2 project) 11.2.0
|
145
|
+
gcc (Rev9, Built by MSYS2 project) 11.2.0
|
146
|
+
|
147
|
+
</details>
|
148
|
+
|
149
|
+
## Projects ##
|
150
|
+
|
151
|
+
### Games ###
|
152
|
+
|
153
|
+
See the projects below to learn how to use this library:
|
154
|
+
|
155
|
+
* Whac-a-Mole! : Ruby raylib bindings demo
|
156
|
+
* <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-whacamole/main/doc/screenshot_00.png" width="300"> <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-whacamole/main/doc/screenshot_01.png" width="300">
|
157
|
+
* <https://github.com/vaiorabbit/raylib-bindings-whacamole>
|
158
|
+
|
159
|
+
* 1D dot eater : Ruby raylib bindings demo
|
160
|
+
* <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-pacone/main/doc/screenshot_00.png" width="600">
|
161
|
+
* <https://github.com/vaiorabbit/raylib-bindings-pacone>
|
162
|
+
|
163
|
+
* flapper.rb : Ruby raylib bindings demo
|
164
|
+
* <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-flapper/main/doc/screenshot_01.png" width="150">
|
165
|
+
* <https://github.com/vaiorabbit/raylib-bindings-flapper>
|
166
|
+
|
167
|
+
### Libraries ###
|
168
|
+
|
169
|
+
* raylib-bindings-tileson : Provides Ruby bindings for raylib-tileson ( https://github.com/RobLoach/raylib-tileson )
|
170
|
+
* <img src="https://raw.githubusercontent.com/vaiorabbit/raylib-bindings-tileson/main/doc/screenshot_00.png" width="600">
|
171
|
+
* <https://github.com/vaiorabbit/raylib-bindings-tileson>
|
172
|
+
|
173
|
+
## Limitation ##
|
174
|
+
|
175
|
+
* `SetTraceLogCallback` and `TraceLogCallback` are unusable since Ruby-FFI does not support `:varargs` parameter in callbacks (`Proc`, etc.)
|
176
|
+
* Ref.: https://ffi.github.io/ruby-ffi-archive/messages/20130214-%5Bruby-ffi%5D%20Re_%20Callback%20Function%20with%20varargs-345.html
|
177
|
+
|
178
|
+
* For macOS users: if you get error messages like “'.... .dylib' not valid for use in process: library load disallowed by system policy” , you can work around it with the following command (although it is not recommended):
|
179
|
+
* $ xattr -dr com.apple.quarantine (path to the .dylib)
|
180
|
+
|
181
|
+
## License ##
|
182
|
+
|
183
|
+
Shared libraries in `lib` directory are built on top of these products and are available under the terms of these licenses:
|
184
|
+
|
185
|
+
* `libraylib.arm64.dylib`, `libraylib.x86_64.dylib`, `libraylib.dll`, `libraylib.aarch64.so`, `libraylib.x86_64.so`
|
186
|
+
* raylib ( https://github.com/raysan5/raylib )
|
187
|
+
* zlib License https://github.com/raysan5/raylib/blob/master/LICENSE
|
188
|
+
* `raygui.arm64.dylib`, `raygui.x86_64.dylib`, `raygui.dll`, `raygui.aarch64.so`, `raygui.x86_64.so`
|
189
|
+
* raygui ( https://github.com/raysan5/raygui )
|
190
|
+
* zlib License https://github.com/raysan5/raygui/blob/master/LICENSE
|
191
|
+
* `physac.arm64.dylib`, `physac.x86_64.dylib`, `physac.dll`, `physac.aarch64.so`, `physac.x86_64.so`
|
192
|
+
* Physac ( https://github.com/raysan5/physac )
|
193
|
+
* LICENSE: zlib/libpng https://github.com/raysan5/physac/blob/4a8e17f263fb8e1150b3fbafc96f880c7d7a4833/src/physac.h#L51-L68
|
194
|
+
|
195
|
+
All ruby codes here are available under the terms of the zlib/libpng License ( http://opensource.org/licenses/Zlib ).
|
196
|
+
|
197
|
+
Ruby-raylib : Yet another raylib wrapper for Ruby
|
198
|
+
Copyright (c) 2021-2025 vaiorabbit <http://twitter.com/vaiorabbit>
|
199
|
+
|
200
|
+
This software is provided 'as-is', without any express or implied
|
201
|
+
warranty. In no event will the authors be held liable for any damages
|
202
|
+
arising from the use of this software.
|
203
|
+
|
204
|
+
Permission is granted to anyone to use this software for any purpose,
|
205
|
+
including commercial applications, and to alter it and redistribute it
|
206
|
+
freely, subject to the following restrictions:
|
207
|
+
|
208
|
+
1. The origin of this software must not be misrepresented; you must not
|
209
|
+
claim that you wrote the original software. If you use this software
|
210
|
+
in a product, an acknowledgment in the product documentation would be
|
211
|
+
appreciated but is not required.
|
212
|
+
|
213
|
+
2. Altered source versions must be plainly marked as such, and must not be
|
214
|
+
misrepresented as being the original software.
|
215
|
+
|
216
|
+
3. This notice may not be removed or altered from any source
|
217
|
+
distribution.
|