summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-03-09 20:55:40 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-03-09 20:55:40 +0000
commit7e2f4b1835ba3fc3db0e4705b13279392ed58c68 (patch)
tree81db619d40f70bba41977096b0a934da794ab3da /dev-games/crystalspace
parentVersion bump, small bug fixes. Fixes Gentoo bug 307479. Moved to BerliOS (diff)
downloadhistorical-7e2f4b1835ba3fc3db0e4705b13279392ed58c68.tar.gz
historical-7e2f4b1835ba3fc3db0e4705b13279392ed58c68.tar.bz2
historical-7e2f4b1835ba3fc3db0e4705b13279392ed58c68.zip
Use upstream patch and link to tracking system.
Package-Manager: portage-2.2_rc66/cvs/Linux x86_64
Diffstat (limited to 'dev-games/crystalspace')
-rw-r--r--dev-games/crystalspace/Manifest2
-rw-r--r--dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch5
2 files changed, 3 insertions, 4 deletions
diff --git a/dev-games/crystalspace/Manifest b/dev-games/crystalspace/Manifest
index 04b54b527484..e6fe72eedd79 100644
--- a/dev-games/crystalspace/Manifest
+++ b/dev-games/crystalspace/Manifest
@@ -1,4 +1,4 @@
-AUX crystalspace-1.2.1-libpng14.patch 536 RMD160 08312ba84933366d5b56926329dfb1af1c0e65ec SHA1 59a00a12a4ef642f3c02b3fae41166b0c9a2963c SHA256 e8dc73cab522a0e9200d41be28174f846c809e1363836f478ed8159c426a6399
+AUX crystalspace-1.2.1-libpng14.patch 450 RMD160 f9fe8361b5b3f01d03f6b0b15dae2775d1e3a775 SHA1 4e6f0ef4bf93df569ad29bb1b2d83da5f83ec0cc SHA256 7b2178396d6b729955d85e2e7563862cec1af36c8b1ba1e4383b8978d79c5f2e
DIST crystalspace-src-1.0.1.tar.bz2 36581454 RMD160 e9cca632623fbc487bb39a8c088fa93aa78e23d4 SHA1 457958e4cc7d96272157e1c8be7a816620051714 SHA256 3042b1fdc5b4ac23c7a4799df232a8e2134fd215448e0785180759ebba7f9ab2
DIST crystalspace-src-1.2.1.tar.bz2 47313388 RMD160 0f6582a9c68694189811a574bc63b5ce1a6a1166 SHA1 0f1b5604b217dfd9f65f54caeef5362d0ab92203 SHA256 23312a5a0330b281f517555207fed151e3d08c1096bb0cc9dd72dcabdced1b10
EBUILD crystalspace-1.0.1.ebuild 3464 RMD160 ad115a160b24cdfe1bfaabd106b31287dc88bd30 SHA1 71bb8bf38632c8e527881f1384f5240e59216716 SHA256 ca308d59837cf400184204b464b76f917bee8abbf6ab319fb48ada9eb6c5ce09
diff --git a/dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch b/dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch
index cb7998115a5b..2ee262d87d4f 100644
--- a/dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch
+++ b/dev-games/crystalspace/files/crystalspace-1.2.1-libpng14.patch
@@ -1,5 +1,4 @@
-http://permalink.gmane.org/gmane.comp.graphics.crystalspace.tracker/5630
-http://www.libpng.org/pub/png/src/libpng-1.2.x-to-1.4.x-summary.txt
+http://trac.crystalspace3d.org/trac/CS/ticket/803
--- plugins/video/loader/png/pngimage.cpp
+++ plugins/video/loader/png/pngimage.cpp
@@ -8,7 +7,7 @@ http://www.libpng.org/pub/png/src/libpng-1.2.x-to-1.4.x-summary.txt
const size_t iSize = dataSource->GetSize();
- if (!png_check_sig (iBuffer, (int)iSize))
-+ if (png_sig_cmp (iBuffer, 0, (int)iSize))
++ if (png_sig_cmp (iBuffer, 0, (int)iSize) != 0)
return false;
png = png_create_read_struct (PNG_LIBPNG_VER_STRING, 0, 0, 0);
if (!png)