summaryrefslogtreecommitdiff
path: root/graphics/kdegraphics4
diff options
context:
space:
mode:
authorMichael Nottebrock <lofi@FreeBSD.org>2007-10-29 23:48:18 +0000
committerMichael Nottebrock <lofi@FreeBSD.org>2007-10-29 23:48:18 +0000
commitc13a5bcfcd39a60b06331e0e456f81187f336764 (patch)
tree24d87d150c14833a85f8fac72b8a8e53d186d7c8 /graphics/kdegraphics4
parent- Add p5-File-Next as RUN_DEPENDS for this package at run time. (diff)
Update to KDE 3.5.8
Notes
Notes: svn path=/head/; revision=202377
Diffstat (limited to 'graphics/kdegraphics4')
-rw-r--r--graphics/kdegraphics4/Makefile2
-rw-r--r--graphics/kdegraphics4/distinfo6
-rw-r--r--graphics/kdegraphics4/files/patch-kfile-plugins::exr::kfile_exr.cpp25
-rw-r--r--graphics/kdegraphics4/files/patch-post-3.5.7-kdegraphics-CVE-2007-3387.diff17
4 files changed, 4 insertions, 46 deletions
diff --git a/graphics/kdegraphics4/Makefile b/graphics/kdegraphics4/Makefile
index e316a72b0b35..eb52337507da 100644
--- a/graphics/kdegraphics4/Makefile
+++ b/graphics/kdegraphics4/Makefile
@@ -8,7 +8,7 @@
PORTNAME= kdegraphics
PORTVERSION= ${KDE_VERSION}
-PORTREVISION= 1
+PORTREVISION= 0
CATEGORIES= graphics kde
MASTER_SITES= ${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR= stable/${PORTVERSION:S/.0//}/src
diff --git a/graphics/kdegraphics4/distinfo b/graphics/kdegraphics4/distinfo
index 34e99964a69c..2061f57cceb0 100644
--- a/graphics/kdegraphics4/distinfo
+++ b/graphics/kdegraphics4/distinfo
@@ -1,3 +1,3 @@
-MD5 (KDE/kdegraphics-3.5.7.tar.bz2) = eae753e80c5f8dd304e7fd0dca84ae67
-SHA256 (KDE/kdegraphics-3.5.7.tar.bz2) = 5689882ade29d0f56e95783f1c3e443fd512ca8291bcb81aac60ac719a8dcdcc
-SIZE (KDE/kdegraphics-3.5.7.tar.bz2) = 7424976
+MD5 (KDE/kdegraphics-3.5.8.tar.bz2) = a3a31fc0e5b791ef330dd0627095d90f
+SHA256 (KDE/kdegraphics-3.5.8.tar.bz2) = 4d041d892f17ef90e0029ef14925980cf6a637d7a9971fba5835a5620ff3e155
+SIZE (KDE/kdegraphics-3.5.8.tar.bz2) = 7444011
diff --git a/graphics/kdegraphics4/files/patch-kfile-plugins::exr::kfile_exr.cpp b/graphics/kdegraphics4/files/patch-kfile-plugins::exr::kfile_exr.cpp
deleted file mode 100644
index 112a5f5f2e67..000000000000
--- a/graphics/kdegraphics4/files/patch-kfile-plugins::exr::kfile_exr.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
---- branches/KDE/3.5/kdegraphics/kfile-plugins/exr/kfile_exr.cpp 2005/09/29 14:33:08 465369
-+++ kfile-plugins/exr/kfile_exr.cpp 2007/08/22 12:19:02 703387
-@@ -32,6 +32,7 @@
- #include <ImfVecAttribute.h>
- #include <ImfPreviewImage.h>
- #include <ImfVersion.h>
-+#include <ImfCRgbaFile.h>
-
- #include <iostream>
-
-@@ -226,7 +227,14 @@
- qcapDateString.setLength(capDateString.size());
- appendItem( stdgroup, "Capture Date", qcapDateString );
- }
-+ // This define was introduced in EXR 1.6.0
-+#ifndef IMF_B44_COMPRESSION
-+ // This is the 1.4 and earlier version
- if ( hasutcOffset(h) ) {
-+#else
-+ // This is the 1.6.0 and later version
-+ if ( hasUtcOffset(h) ) {
-+#endif
- QString UTCOffset;
- if (utcOffset(h)>0.0) {
- UTCOffset.append(QString("%1").arg(utcOffset(h)/3600, 0, 'f', 1));
diff --git a/graphics/kdegraphics4/files/patch-post-3.5.7-kdegraphics-CVE-2007-3387.diff b/graphics/kdegraphics4/files/patch-post-3.5.7-kdegraphics-CVE-2007-3387.diff
deleted file mode 100644
index e28add87e275..000000000000
--- a/graphics/kdegraphics4/files/patch-post-3.5.7-kdegraphics-CVE-2007-3387.diff
+++ /dev/null
@@ -1,17 +0,0 @@
-Index: kpdf/xpdf/xpdf/Stream.cc
-===================================================================
---- kpdf/xpdf/xpdf/Stream.cc (revision 689574)
-+++ kpdf/xpdf/xpdf/Stream.cc (working copy)
-@@ -411,9 +411,9 @@ StreamPredictor::StreamPredictor(Stream
-
- nVals = width * nComps;
- if (width <= 0 || nComps <= 0 || nBits <= 0 ||
-- nComps >= INT_MAX / nBits ||
-- width >= INT_MAX / nComps / nBits ||
-- nVals * nBits + 7 < 0) {
-+ nComps > gfxColorMaxComps || nBits > 16 ||
-+ width >= INT_MAX / nComps ||
-+ nVals >= (INT_MAX - 7) / nBits) {
- return;
- }
- pixBytes = (nComps * nBits + 7) >> 3;