summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <nyhm@gentoo.org>2006-11-23 22:34:07 +0000
committerTristan Heaven <nyhm@gentoo.org>2006-11-23 22:34:07 +0000
commita976e648c751aadf243d4cad9f269f13ba4f8097 (patch)
treeade5bbc9b74e74cf687b38509a7541aa4421e1cc /games-emulation/virtualjaguar/files
parentRemove old version (diff)
downloadgentoo-2-a976e648c751aadf243d4cad9f269f13ba4f8097.tar.gz
gentoo-2-a976e648c751aadf243d4cad9f269f13ba4f8097.tar.bz2
gentoo-2-a976e648c751aadf243d4cad9f269f13ba4f8097.zip
Remove old version
(Portage version: 2.1.2_rc2-r1) (Signed Manifest commit)
Diffstat (limited to 'games-emulation/virtualjaguar/files')
-rw-r--r--games-emulation/virtualjaguar/files/digest-virtualjaguar-1.0.61
-rw-r--r--games-emulation/virtualjaguar/files/gcc331.patch56
2 files changed, 0 insertions, 57 deletions
diff --git a/games-emulation/virtualjaguar/files/digest-virtualjaguar-1.0.6 b/games-emulation/virtualjaguar/files/digest-virtualjaguar-1.0.6
deleted file mode 100644
index 9073d10f6cdc..000000000000
--- a/games-emulation/virtualjaguar/files/digest-virtualjaguar-1.0.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 b5978919ad4c2fda969517b1247b4d6a virtualjaguar-1.0.6-src.tar.bz2 210604
diff --git a/games-emulation/virtualjaguar/files/gcc331.patch b/games-emulation/virtualjaguar/files/gcc331.patch
deleted file mode 100644
index dd02172d29a1..000000000000
--- a/games-emulation/virtualjaguar/files/gcc331.patch
+++ /dev/null
@@ -1,56 +0,0 @@
---- src/objectp.cpp.wrong 2003-09-26 02:43:48.380421352 -0500
-+++ src/objectp.cpp 2003-09-26 02:42:29.977340432 -0500
-@@ -451,16 +451,16 @@
- // if (height)
- height--;
-
-- uint64 data = (p0 & 0xFFFFF80000000000) >> 40;
-+ uint64 data = (p0 & 0xFFFFF80000000000LL) >> 40;
- uint64 dwidth = (p1 & 0xFFC0000) >> 15;
- data += dwidth;
-
-- p0 &= ~0xFFFFF80000FFC000; // Mask out old data...
-+ p0 &= ~0xFFFFF80000FFC000LL; // Mask out old data...
- p0 |= (uint64)height << 14;
- p0 |= data << 40;
- OPStorePhrase(oldOPP, p0);
- }
-- op_pointer = (p0 & 0x000007FFFF000000) >> 21;
-+ op_pointer = (p0 & 0x000007FFFF000000LL) >> 21;
- break;
- }
- case OBJECT_TYPE_SCALE:
-@@ -504,7 +504,7 @@
- // if (remainder & 0x80) // I.e., it's negative
- if ((remainder & 0x80) || remainder == 0) // I.e., it's <= 0
- {
-- uint64 data = (p0 & 0xFFFFF80000000000) >> 40;
-+ uint64 data = (p0 & 0xFFFFF80000000000LL) >> 40;
- uint64 dwidth = (p1 & 0xFFC0000) >> 15;
-
- // while (remainder & 0x80)
-@@ -516,21 +516,21 @@
-
- data += dwidth;
- }
-- p0 &= ~0xFFFFF80000FFC000; // Mask out old data...
-+ p0 &= ~0xFFFFF80000FFC000LL; // Mask out old data...
- p0 |= (uint64)height << 14;
- p0 |= data << 40;
- OPStorePhrase(oldOPP, p0);
- }
-
- //WriteLog(" [%08X%08X -> ", (uint32)(p2>>32), (uint32)(p2&0xFFFFFFFF));
-- p2 &= ~0x0000000000FF0000;
-+ p2 &= ~0x0000000000FF0000LL;
- p2 |= (uint64)remainder << 16;
- //WriteLog("%08X%08X]\n", (uint32)(p2>>32), (uint32)(p2&0xFFFFFFFF));
- OPStorePhrase(oldOPP+16, p2);
- //remainder = (uint8)(p2 >> 16), vscale = (uint8)(p2 >> 8);
- //WriteLog(" [after]: rem=%02X, vscale=%02X\n", remainder, vscale);
- }
-- op_pointer = (p0 & 0x000007FFFF000000) >> 21;
-+ op_pointer = (p0 & 0x000007FFFF000000LL) >> 21;
- break;
- }
- case OBJECT_TYPE_GPU: