gosu 0.8.0.pre5 → 0.8.0.pre6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/gosu/extconf.rb +7 -4
- metadata +87 -87
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df638341d3e7146e002d663f9b7584149f3beeae
|
4
|
+
data.tar.gz: ddef75b98d04a815c0569f868acd6d53c0ac964e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf79b83d303aee090c8006f455e8da494dc46e3ef1ac3e867f1be72c93864fbbb1380db591a9a3f6766e96414aaee26a1c4beec84af9188ab246d9c1ce443c14
|
7
|
+
data.tar.gz: 7f503d9cab460d19899e58a79d69cb245542081f96d85c7c9b377c9eb1a1a88f9293e45afca1928025aebb0cd8e1524ed3fce7f927a69e0f901314d6ec2b378a
|
data/ext/gosu/extconf.rb
CHANGED
@@ -64,11 +64,16 @@ $CFLAGS << " -DGOSU_DEPRECATED="
|
|
64
64
|
|
65
65
|
$INCFLAGS << " -I../.. -I../../src"
|
66
66
|
|
67
|
+
pkg_config 'sdl2'
|
68
|
+
pkg_config 'ogg'
|
69
|
+
pkg_config 'vorbis'
|
70
|
+
pkg_config 'vorbisfile'
|
71
|
+
|
67
72
|
if `uname`.chomp == 'Darwin' then
|
68
73
|
SOURCE_FILES = BASE_FILES + MAC_FILES
|
69
74
|
|
70
75
|
# To make everything work with the Objective C runtime
|
71
|
-
$CFLAGS << " -x objective-c -DNDEBUG"
|
76
|
+
$CFLAGS << " -I/usr/local/include -x objective-c -DNDEBUG"
|
72
77
|
# Compile all C++ files as Objective C++ on OS X since mkmf does not support .mm
|
73
78
|
# files.
|
74
79
|
# Also undefine two debug flags that cause exceptions to randomly crash, see:
|
@@ -80,7 +85,7 @@ if `uname`.chomp == 'Darwin' then
|
|
80
85
|
# TODO: This can probably be enabled starting from 10.6?
|
81
86
|
CONFIG['CXXFLAGS'] << " -std=gnu++11"
|
82
87
|
end
|
83
|
-
$LDFLAGS << " -liconv -lSDL2
|
88
|
+
$LDFLAGS << " -liconv -lSDL2"
|
84
89
|
%w(AudioToolbox IOKit OpenAL OpenGL AppKit ApplicationServices Foundation Carbon).each do |f|
|
85
90
|
$LDFLAGS << " -framework #{f}"
|
86
91
|
end
|
@@ -96,9 +101,7 @@ else
|
|
96
101
|
pkg_config 'gl'
|
97
102
|
end
|
98
103
|
|
99
|
-
pkg_config 'sdl2'
|
100
104
|
pkg_config 'pangoft2'
|
101
|
-
pkg_config 'vorbisfile'
|
102
105
|
pkg_config 'openal'
|
103
106
|
pkg_config 'sndfile'
|
104
107
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gosu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.0.
|
4
|
+
version: 0.8.0.pre6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julian Raschke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-06-
|
11
|
+
date: 2014-06-25 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
2D game development library.
|
@@ -24,68 +24,126 @@ extensions:
|
|
24
24
|
- ext/gosu/extconf.rb
|
25
25
|
extra_rdoc_files: []
|
26
26
|
files:
|
27
|
+
- Gosu/Audio.hpp
|
28
|
+
- Gosu/AutoLink.hpp
|
29
|
+
- Gosu/Bitmap.hpp
|
30
|
+
- Gosu/Buttons.hpp
|
31
|
+
- Gosu/Color.hpp
|
32
|
+
- Gosu/Directories.hpp
|
33
|
+
- Gosu/Font.hpp
|
34
|
+
- Gosu/Fwd.hpp
|
35
|
+
- Gosu/Gosu.hpp
|
36
|
+
- Gosu/Graphics.hpp
|
37
|
+
- Gosu/GraphicsBase.hpp
|
38
|
+
- Gosu/IO.hpp
|
39
|
+
- Gosu/Image.hpp
|
40
|
+
- Gosu/ImageData.hpp
|
41
|
+
- Gosu/Input.hpp
|
42
|
+
- Gosu/Inspection.hpp
|
43
|
+
- Gosu/Math.hpp
|
44
|
+
- Gosu/Platform.hpp
|
45
|
+
- Gosu/Sockets.hpp
|
46
|
+
- Gosu/TR1.hpp
|
47
|
+
- Gosu/Text.hpp
|
48
|
+
- Gosu/TextInput.hpp
|
49
|
+
- Gosu/Timing.hpp
|
50
|
+
- Gosu/Utility.hpp
|
51
|
+
- Gosu/Version.hpp
|
52
|
+
- Gosu/WinUtility.hpp
|
53
|
+
- Gosu/Window.hpp
|
54
|
+
- examples/ChipmunkIntegration.rb
|
55
|
+
- examples/CptnRuby.rb
|
56
|
+
- examples/GosuZen.rb
|
57
|
+
- examples/MoreChipmunkAndRMagick.rb
|
58
|
+
- examples/OpenGLIntegration.rb
|
59
|
+
- examples/RMagickIntegration.rb
|
60
|
+
- examples/TextInput.rb
|
61
|
+
- examples/Tutorial.rb
|
62
|
+
- examples/media/Beep.wav
|
63
|
+
- examples/media/CptnRuby Gem.png
|
64
|
+
- examples/media/CptnRuby Map.txt
|
65
|
+
- examples/media/CptnRuby Tileset.png
|
66
|
+
- examples/media/CptnRuby.png
|
67
|
+
- examples/media/Cursor.png
|
68
|
+
- examples/media/Earth.png
|
69
|
+
- examples/media/Explosion.wav
|
70
|
+
- examples/media/Landscape.svg
|
71
|
+
- examples/media/LargeStar.png
|
72
|
+
- examples/media/Smoke.png
|
73
|
+
- examples/media/Soldier.png
|
74
|
+
- examples/media/Space.png
|
75
|
+
- examples/media/Star.png
|
76
|
+
- examples/media/Starfighter.bmp
|
27
77
|
- ext/gosu/extconf.rb
|
78
|
+
- ext/gosu/gosu_wrap.cxx
|
79
|
+
- ext/gosu/gosu_wrap.h
|
80
|
+
- lib/gosu.rb
|
28
81
|
- lib/gosu/patches.rb
|
29
82
|
- lib/gosu/preview.rb
|
30
83
|
- lib/gosu/run.rb
|
31
84
|
- lib/gosu/swig_patches.rb
|
32
85
|
- lib/gosu/zen.rb
|
33
|
-
- lib/gosu.rb
|
34
|
-
- ext/gosu/gosu_wrap.h
|
35
|
-
- ext/gosu/gosu_wrap.cxx
|
36
|
-
- src/X11vroot.h
|
37
86
|
- src/Audio/ALChannelManagement.hpp
|
38
87
|
- src/Audio/AudioFile.hpp
|
88
|
+
- src/Audio/AudioOpenAL.cpp
|
89
|
+
- src/Audio/AudioOpenAL.mm
|
39
90
|
- src/Audio/AudioToolboxFile.hpp
|
40
91
|
- src/Audio/OggFile.hpp
|
41
92
|
- src/Audio/SndFile.hpp
|
42
|
-
- src/GosuView.hpp
|
43
|
-
- src/Graphics/BlockAllocator.hpp
|
44
|
-
- src/Graphics/ClipRectStack.hpp
|
45
|
-
- src/Graphics/Common.hpp
|
46
|
-
- src/Graphics/DrawOp.hpp
|
47
|
-
- src/Graphics/DrawOpQueue.hpp
|
48
|
-
- src/Graphics/LargeImageData.hpp
|
49
|
-
- src/Graphics/Macro.hpp
|
50
|
-
- src/Graphics/RenderState.hpp
|
51
|
-
- src/Graphics/TexChunk.hpp
|
52
|
-
- src/Graphics/Texture.hpp
|
53
|
-
- src/Graphics/TransformStack.hpp
|
54
|
-
- src/Iconv.hpp
|
55
|
-
- src/Input/AccelerometerReader.hpp
|
56
|
-
- src/MacUtility.hpp
|
57
|
-
- src/Sockets/Socket.hpp
|
58
|
-
- src/Text/FormattedString.hpp
|
59
|
-
- src/Audio/AudioOpenAL.cpp
|
60
93
|
- src/Bitmap/Bitmap.cpp
|
94
|
+
- src/Bitmap/BitmapApple.mm
|
61
95
|
- src/Bitmap/BitmapBMP.cpp
|
62
96
|
- src/Bitmap/BitmapColorKey.cpp
|
63
97
|
- src/Bitmap/BitmapFreeImage.cpp
|
64
98
|
- src/Bitmap/BitmapGDIplus.cpp
|
65
99
|
- src/Bitmap/BitmapUtils.cpp
|
100
|
+
- src/DirectoriesMac.mm
|
101
|
+
- src/DirectoriesTouch.mm
|
66
102
|
- src/DirectoriesUnix.cpp
|
67
103
|
- src/DirectoriesWin.cpp
|
68
104
|
- src/FileUnix.cpp
|
69
105
|
- src/FileWin.cpp
|
106
|
+
- src/GosuView.hpp
|
107
|
+
- src/GosuView.mm
|
70
108
|
- src/Graphics/BlockAllocator.cpp
|
109
|
+
- src/Graphics/BlockAllocator.hpp
|
110
|
+
- src/Graphics/ClipRectStack.hpp
|
71
111
|
- src/Graphics/Color.cpp
|
112
|
+
- src/Graphics/Common.hpp
|
113
|
+
- src/Graphics/DrawOp.hpp
|
114
|
+
- src/Graphics/DrawOpQueue.hpp
|
72
115
|
- src/Graphics/Graphics.cpp
|
73
116
|
- src/Graphics/Image.cpp
|
74
117
|
- src/Graphics/LargeImageData.cpp
|
118
|
+
- src/Graphics/LargeImageData.hpp
|
119
|
+
- src/Graphics/Macro.hpp
|
120
|
+
- src/Graphics/RenderState.hpp
|
75
121
|
- src/Graphics/TexChunk.cpp
|
122
|
+
- src/Graphics/TexChunk.hpp
|
76
123
|
- src/Graphics/Texture.cpp
|
124
|
+
- src/Graphics/Texture.hpp
|
77
125
|
- src/Graphics/Transform.cpp
|
126
|
+
- src/Graphics/TransformStack.hpp
|
127
|
+
- src/IO.cpp
|
128
|
+
- src/Iconv.hpp
|
129
|
+
- src/Input/AccelerometerReader.hpp
|
130
|
+
- src/Input/AccelerometerReader.mm
|
78
131
|
- src/Input/Input.cpp
|
132
|
+
- src/Input/InputTouch.mm
|
79
133
|
- src/Input/TextInput.cpp
|
134
|
+
- src/Input/TextInputMac.mm
|
80
135
|
- src/Inspection.cpp
|
81
|
-
- src/
|
136
|
+
- src/MacUtility.hpp
|
82
137
|
- src/Math.cpp
|
83
138
|
- src/Sockets/CommSocket.cpp
|
84
139
|
- src/Sockets/ListenerSocket.cpp
|
85
140
|
- src/Sockets/MessageSocket.cpp
|
86
141
|
- src/Sockets/Socket.cpp
|
142
|
+
- src/Sockets/Socket.hpp
|
87
143
|
- src/Text/Font.cpp
|
144
|
+
- src/Text/FormattedString.hpp
|
88
145
|
- src/Text/Text.cpp
|
146
|
+
- src/Text/TextApple.mm
|
89
147
|
- src/Text/TextMac.cpp
|
90
148
|
- src/Text/TextTTFWin.cpp
|
91
149
|
- src/Text/TextUnix.cpp
|
@@ -94,71 +152,13 @@ files:
|
|
94
152
|
- src/TimingUnix.cpp
|
95
153
|
- src/TimingWin.cpp
|
96
154
|
- src/Utility.cpp
|
155
|
+
- src/UtilityApple.mm
|
97
156
|
- src/UtilityWin.cpp
|
98
|
-
- src/Window.cpp
|
99
157
|
- src/WinMain.cpp
|
100
158
|
- src/WinUtility.cpp
|
101
|
-
- src/
|
102
|
-
- src/Bitmap/BitmapApple.mm
|
103
|
-
- src/DirectoriesMac.mm
|
104
|
-
- src/DirectoriesTouch.mm
|
105
|
-
- src/GosuView.mm
|
106
|
-
- src/Input/AccelerometerReader.mm
|
107
|
-
- src/Input/InputTouch.mm
|
108
|
-
- src/Input/TextInputMac.mm
|
109
|
-
- src/Text/TextApple.mm
|
110
|
-
- src/UtilityApple.mm
|
159
|
+
- src/Window.cpp
|
111
160
|
- src/WindowTouch.mm
|
112
|
-
-
|
113
|
-
- Gosu/AutoLink.hpp
|
114
|
-
- Gosu/Bitmap.hpp
|
115
|
-
- Gosu/Buttons.hpp
|
116
|
-
- Gosu/Color.hpp
|
117
|
-
- Gosu/Directories.hpp
|
118
|
-
- Gosu/Font.hpp
|
119
|
-
- Gosu/Fwd.hpp
|
120
|
-
- Gosu/Gosu.hpp
|
121
|
-
- Gosu/Graphics.hpp
|
122
|
-
- Gosu/GraphicsBase.hpp
|
123
|
-
- Gosu/Image.hpp
|
124
|
-
- Gosu/ImageData.hpp
|
125
|
-
- Gosu/Input.hpp
|
126
|
-
- Gosu/Inspection.hpp
|
127
|
-
- Gosu/IO.hpp
|
128
|
-
- Gosu/Math.hpp
|
129
|
-
- Gosu/Platform.hpp
|
130
|
-
- Gosu/Sockets.hpp
|
131
|
-
- Gosu/Text.hpp
|
132
|
-
- Gosu/TextInput.hpp
|
133
|
-
- Gosu/Timing.hpp
|
134
|
-
- Gosu/TR1.hpp
|
135
|
-
- Gosu/Utility.hpp
|
136
|
-
- Gosu/Version.hpp
|
137
|
-
- Gosu/Window.hpp
|
138
|
-
- Gosu/WinUtility.hpp
|
139
|
-
- examples/ChipmunkIntegration.rb
|
140
|
-
- examples/CptnRuby.rb
|
141
|
-
- examples/GosuZen.rb
|
142
|
-
- examples/MoreChipmunkAndRMagick.rb
|
143
|
-
- examples/OpenGLIntegration.rb
|
144
|
-
- examples/RMagickIntegration.rb
|
145
|
-
- examples/TextInput.rb
|
146
|
-
- examples/Tutorial.rb
|
147
|
-
- examples/media/Beep.wav
|
148
|
-
- examples/media/CptnRuby Gem.png
|
149
|
-
- examples/media/CptnRuby Map.txt
|
150
|
-
- examples/media/CptnRuby Tileset.png
|
151
|
-
- examples/media/CptnRuby.png
|
152
|
-
- examples/media/Cursor.png
|
153
|
-
- examples/media/Earth.png
|
154
|
-
- examples/media/Explosion.wav
|
155
|
-
- examples/media/Landscape.svg
|
156
|
-
- examples/media/LargeStar.png
|
157
|
-
- examples/media/Smoke.png
|
158
|
-
- examples/media/Soldier.png
|
159
|
-
- examples/media/Space.png
|
160
|
-
- examples/media/Star.png
|
161
|
-
- examples/media/Starfighter.bmp
|
161
|
+
- src/X11vroot.h
|
162
162
|
homepage: http://www.libgosu.org/
|
163
163
|
licenses: []
|
164
164
|
metadata: {}
|
@@ -178,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
178
|
version: 1.3.1
|
179
179
|
requirements: []
|
180
180
|
rubyforge_project:
|
181
|
-
rubygems_version: 2.0
|
181
|
+
rubygems_version: 2.3.0
|
182
182
|
signing_key:
|
183
183
|
specification_version: 4
|
184
184
|
summary: 2D game development library.
|