summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <nyhm@gentoo.org>2006-11-23 20:34:27 +0000
committerTristan Heaven <nyhm@gentoo.org>2006-11-23 20:34:27 +0000
commitdcdd130bb2c8145f5ea83f783280bcb21e1c5d4d (patch)
treea5778184c30be70055f2da59ba8613e401dfa7c6 /games-arcade/yarsrevenge/files
parentRemove old version (diff)
downloadgentoo-2-dcdd130bb2c8145f5ea83f783280bcb21e1c5d4d.tar.gz
gentoo-2-dcdd130bb2c8145f5ea83f783280bcb21e1c5d4d.tar.bz2
gentoo-2-dcdd130bb2c8145f5ea83f783280bcb21e1c5d4d.zip
Remove old version
(Portage version: 2.1.2_rc2-r1) (Signed Manifest commit)
Diffstat (limited to 'games-arcade/yarsrevenge/files')
-rw-r--r--games-arcade/yarsrevenge/files/0.98-gcc-typecast.patch39
-rw-r--r--games-arcade/yarsrevenge/files/digest-yarsrevenge-0.981
2 files changed, 0 insertions, 40 deletions
diff --git a/games-arcade/yarsrevenge/files/0.98-gcc-typecast.patch b/games-arcade/yarsrevenge/files/0.98-gcc-typecast.patch
deleted file mode 100644
index dd63395b97ec..000000000000
--- a/games-arcade/yarsrevenge/files/0.98-gcc-typecast.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -ur yar-0.98.orig/yar/sgw.cpp yar-0.98/yar/sgw.cpp
---- yar-0.98.orig/yar/sgw.cpp 2003-10-25 08:19:02.127320176 -0400
-+++ yar-0.98/yar/sgw.cpp 2003-10-25 08:34:36.068339560 -0400
-@@ -1054,7 +1054,7 @@
- {
- Uint8 *Audio = (Uint8 *)Data;
- Audio = Audio + Position;
-- SDL_MixAudio(Stream,Audio,Qty, // If so, mix it in.
-+ SDL_MixAudio((Uint8*)Stream,Audio,Qty, // If so, mix it in.
- SDL_MIX_MAXVOLUME);
- Position = Position + Qty;
- }
-@@ -1106,7 +1106,7 @@
- Wave.format,Wave.channels,Wave.freq,
- AudioFmt.format,AudioFmt.channels,AudioFmt.freq);
-
-- Cvt.buf = malloc(Size * Cvt.len_mult); // Allocate memory for converted WAV
-+ Cvt.buf = (Uint8 *)malloc(Size * Cvt.len_mult); // Allocate memory for converted WAV
- if (Cvt.buf == NULL) SGWERROR();
-
- memcpy(Cvt.buf,WaveData,Size); // Copy data in
-@@ -1130,7 +1130,7 @@
- {
- int Size = AudioFmt.freq * sLength / 1000;
- SGWASSERT(AudioFmt.format = AUDIO_S16); // We must be using 16 bit signed here ?
-- Uint16 *Wave = malloc(Size*2); // Allocate a buffer for it
-+ Uint16 *Wave = (Uint16 *)malloc(Size*2); // Allocate a buffer for it
- CreateWave(Wave,Size,sPitch); // Create the wave
- SDL_LockAudio(); // Copy data into structure
- Data = Wave;
-@@ -1156,7 +1156,7 @@
-
- void SGWAudioBeep::CreateWave(void *Data,int Size,int sPitch)
- {
-- Uint16 *Wave = Data;
-+ Uint16 *Wave = (Uint16 *)Data;
- int PCount = 0;
- int PValue = 32700;
- int PMax = 0;
diff --git a/games-arcade/yarsrevenge/files/digest-yarsrevenge-0.98 b/games-arcade/yarsrevenge/files/digest-yarsrevenge-0.98
deleted file mode 100644
index 12a05d114707..000000000000
--- a/games-arcade/yarsrevenge/files/digest-yarsrevenge-0.98
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4abfa7a9990e259e6a48f3f8bb3dbc6d yar-0.98.tar.gz 535308