pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11 update to 4.5.2
details: https://anonhg.NetBSD.org/pkgsrc/rev/b2f47afaaab9
branches: trunk
changeset: 395163:b2f47afaaab9
user: drochner <drochner%pkgsrc.org@localhost>
date: Tue Jul 07 16:36:05 2009 +0000
description:
update to 4.5.2
changes: bugfixes and optimizations
diffstat:
x11/qt4-libs/Makefile | 4 +---
x11/qt4-libs/distinfo | 10 ++++------
x11/qt4-libs/patches/patch-ay | 12 ------------
x11/qt4-libs/patches/patch-az | 16 ----------------
x11/qt4-tools/PLIST | 3 ++-
x11/qt4/Makefile.common | 4 ++--
6 files changed, 9 insertions(+), 40 deletions(-)
diffs (105 lines):
diff -r b8be90c25d9d -r b2f47afaaab9 x11/qt4-libs/Makefile
--- a/x11/qt4-libs/Makefile Tue Jul 07 16:32:09 2009 +0000
+++ b/x11/qt4-libs/Makefile Tue Jul 07 16:36:05 2009 +0000
@@ -1,11 +1,9 @@
-# $NetBSD: Makefile,v 1.30 2009/07/02 18:26:45 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2009/07/07 16:36:05 drochner Exp $
PKG_DESTDIR_SUPPORT= user-destdir
.include "../../x11/qt4-libs/Makefile.common"
-PKGREVISION= 2
-
PKGNAME= qt4-libs-${QTVERSION}
COMMENT= C++ X GUI toolkit
diff -r b8be90c25d9d -r b2f47afaaab9 x11/qt4-libs/distinfo
--- a/x11/qt4-libs/distinfo Tue Jul 07 16:32:09 2009 +0000
+++ b/x11/qt4-libs/distinfo Tue Jul 07 16:36:05 2009 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.30 2009/06/29 12:54:19 drochner Exp $
+$NetBSD: distinfo,v 1.31 2009/07/07 16:36:05 drochner Exp $
-SHA1 (qt-x11-opensource-src-4.5.1.tar.bz2) = 50ba9b6d2eb7056e47dc53775be509c4ff6ec015
-RMD160 (qt-x11-opensource-src-4.5.1.tar.bz2) = 702d7c6bb9787cd5602dcb8afce52bdfcfd52179
-Size (qt-x11-opensource-src-4.5.1.tar.bz2) = 114667436 bytes
+SHA1 (qt-x11-opensource-src-4.5.2.tar.bz2) = bf2dd175cade15f3f505fe6aac1401bdbfeb4e5b
+RMD160 (qt-x11-opensource-src-4.5.2.tar.bz2) = 1af31d7fe66665e718f0c728b41becea9996fba7
+Size (qt-x11-opensource-src-4.5.2.tar.bz2) = 116015284 bytes
SHA1 (patch-aa) = b3a0cbdd927ef7d3e2af6a49fc87048f2cd8012c
SHA1 (patch-ab) = b0853b2ddfa53948e91c4f93e4d089c7dd56db43
SHA1 (patch-ac) = baab52ce87e4dcf11ae76b56851e92f58455d94b
@@ -24,5 +24,3 @@
SHA1 (patch-as) = 818c3d6eecab7706dde7f47b077c3c676e69d67b
SHA1 (patch-av) = f716b571ef0f8b5c7684378a0e3772c1680c6dcf
SHA1 (patch-ax) = 2c895f23a49be32d4605557a74ce5af34cdfc061
-SHA1 (patch-ay) = f16464b8a9a1d7aac421025e208af59706244ba5
-SHA1 (patch-az) = ad22f6f0039ce2ca12077e3e6ad4e025474e13a4
diff -r b8be90c25d9d -r b2f47afaaab9 x11/qt4-libs/patches/patch-ay
--- a/x11/qt4-libs/patches/patch-ay Tue Jul 07 16:32:09 2009 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-$NetBSD: patch-ay,v 1.1 2009/06/29 12:54:19 drochner Exp $
-
---- ./src/svg/qsvgstyle.cpp.orig 2009-04-22 01:57:42.000000000 +0200
-+++ ./src/svg/qsvgstyle.cpp
-@@ -808,6 +808,7 @@ void QSvgGradientStyle::resolveStops()
- static_cast<QSvgGradientStyle*>(prop);
- st->resolveStops();
- m_gradient->setStops(st->qgradient()->stops());
-+ m_gradientStopsSet = st->gradientStopsSet();
- }
- }
- m_link = QString();
diff -r b8be90c25d9d -r b2f47afaaab9 x11/qt4-libs/patches/patch-az
--- a/x11/qt4-libs/patches/patch-az Tue Jul 07 16:32:09 2009 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-$NetBSD: patch-az,v 1.1 2009/06/29 12:54:19 drochner Exp $
-
---- src/gui/image/qpixmapcache.cpp.orig 2009-04-22 01:57:41.000000000 +0200
-+++ src/gui/image/qpixmapcache.cpp
-@@ -187,6 +187,11 @@ bool QPMCache::insert(const QString& key
- cacheKeys.insert(key, cacheKey);
- return true;
- }
-+ qint64 oldCacheKey = cacheKeys.value(key, -1);
-+ //If for the same key we add already a pixmap we should delete it
-+ if (oldCacheKey != -1)
-+ QCache<qint64, QDetachedPixmap>::remove(oldCacheKey);
-+
- bool success = QCache<qint64, QDetachedPixmap>::insert(cacheKey, new QDetachedPixmap(pixmap), cost);
- if (success) {
- cacheKeys.insert(key, cacheKey);
diff -r b8be90c25d9d -r b2f47afaaab9 x11/qt4-tools/PLIST
--- a/x11/qt4-tools/PLIST Tue Jul 07 16:32:09 2009 +0000
+++ b/x11/qt4-tools/PLIST Tue Jul 07 16:36:05 2009 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2009/06/14 18:25:05 joerg Exp $
+@comment $NetBSD: PLIST,v 1.16 2009/07/07 16:36:05 drochner Exp $
lib/pkgconfig/QtAssistantClient.pc
lib/pkgconfig/QtCLucene.pc
lib/pkgconfig/QtDesigner.pc
@@ -228,6 +228,7 @@
qt4/mkspecs/features/win32/embed_manifest_exe.prf
qt4/mkspecs/features/win32/exceptions.prf
qt4/mkspecs/features/win32/exceptions_off.prf
+qt4/mkspecs/features/win32/ltcg.prf
qt4/mkspecs/features/win32/opengl.prf
qt4/mkspecs/features/win32/qaxcontainer.prf
qt4/mkspecs/features/win32/qaxserver.prf
diff -r b8be90c25d9d -r b2f47afaaab9 x11/qt4/Makefile.common
--- a/x11/qt4/Makefile.common Tue Jul 07 16:32:09 2009 +0000
+++ b/x11/qt4/Makefile.common Tue Jul 07 16:36:05 2009 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile.common,v 1.16 2009/06/13 11:55:50 hasso Exp $
+# $NetBSD: Makefile.common,v 1.17 2009/07/07 16:36:05 drochner Exp $
# used by x11/qt4-libs/Makefile.common
# used by x11/qt4-tools/Makefile
-QTVERSION= 4.5.1
+QTVERSION= 4.5.2
MAINTAINER?= adam%NetBSD.org@localhost
HOMEPAGE= http://www.trolltech.com/products/qt/
Home |
Main Index |
Thread Index |
Old Index