pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/kdegames3 Update to KDE 3.5.4



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c6e1616da347
branches:  trunk
changeset: 516986:c6e1616da347
user:      markd <markd%pkgsrc.org@localhost>
date:      Wed Aug 02 14:13:05 2006 +0000

description:
Update to KDE 3.5.4

KMahjongg
* Fix garbage when opening the editor the first time.
* Don't say only saving to local medium is supported when clicking
  cancel on the save dialog.
KReversi
* Fix wrong player (=color) names in moves window.
* Fix kreversi does not update score on undo.
* Fix the hourglass cursor is kept too long.
KShinsen
* Do not display hints when starting a new game.
KPatience
* Reenable hint after game was lost and undoed.

diffstat:

 games/kdegames3/Makefile         |   3 +-
 games/kdegames3/distinfo         |   9 ++---
 games/kdegames3/patches/patch-aa |  62 ----------------------------------------
 3 files changed, 5 insertions(+), 69 deletions(-)

diffs (92 lines):

diff -r 1d52e3dfc004 -r c6e1616da347 games/kdegames3/Makefile
--- a/games/kdegames3/Makefile  Wed Aug 02 14:11:12 2006 +0000
+++ b/games/kdegames3/Makefile  Wed Aug 02 14:13:05 2006 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.41 2006/06/21 20:43:23 joerg Exp $
+# $NetBSD: Makefile,v 1.42 2006/08/02 14:13:05 markd Exp $
 
 DISTNAME=      kdegames-${_KDE_VERSION}
-PKGREVISION=   1
 CATEGORIES=    games
 COMMENT=       Games for the KDE integrated X11 desktop
 
diff -r 1d52e3dfc004 -r c6e1616da347 games/kdegames3/distinfo
--- a/games/kdegames3/distinfo  Wed Aug 02 14:11:12 2006 +0000
+++ b/games/kdegames3/distinfo  Wed Aug 02 14:13:05 2006 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.30 2006/06/21 20:43:23 joerg Exp $
+$NetBSD: distinfo,v 1.31 2006/08/02 14:13:05 markd Exp $
 
-SHA1 (kdegames-3.5.3.tar.bz2) = 816b5884c67091fb1c5af924778b10b4eeba968c
-RMD160 (kdegames-3.5.3.tar.bz2) = 36ea1609fcc5cd627b16c9e225c309ff8ed212b3
-Size (kdegames-3.5.3.tar.bz2) = 10728200 bytes
-SHA1 (patch-aa) = fd39c86460f3fee9db2242179bca7401026cfe88
+SHA1 (kdegames-3.5.4.tar.bz2) = 64d780b26f960ced2099a90fdf2c8114aa2ff5dc
+RMD160 (kdegames-3.5.4.tar.bz2) = b11322342020aec0040dfc17c50ff588276ceb2c
+Size (kdegames-3.5.4.tar.bz2) = 10737313 bytes
diff -r 1d52e3dfc004 -r c6e1616da347 games/kdegames3/patches/patch-aa
--- a/games/kdegames3/patches/patch-aa  Wed Aug 02 14:11:12 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,62 +0,0 @@
-$NetBSD: patch-aa,v 1.5 2006/06/21 20:43:23 joerg Exp $
-
---- libkdegames/kgame/kgamepropertylist.h.orig 2006-06-21 17:24:41.000000000 +0000
-+++ libkdegames/kgame/kgamepropertylist.h
-@@ -53,7 +53,7 @@ public:
-   {
-     Iterator it;
-     uint cnt=0;
--    for( it = begin(); it != end(); ++it )
-+    for( it = this->begin(); it != this->end(); ++it )
-     {
-       if (me==it) 
-       {
-@@ -61,7 +61,7 @@ public:
-       }
-       cnt++;
-     }
--    return count();
-+    return this->count();
-   }
- 
-   Iterator insert( Iterator it, const type& d )
-@@ -88,7 +88,7 @@ public:
-     return it;
-   }
- 
--  void  prepend( const type& d) { insert(begin(),d); }
-+  void  prepend( const type& d) { insert(this->begin(),d); }
-   
-   void  append( const type& d ) 
-   {
-@@ -181,10 +181,10 @@ public:
-   {
-     kdDebug(11001) << "KGamePropertyList save "<<id() << endl;
-     type data;
--    uint size=count();
-+    uint size = this->count();
-     s << size;
-     Iterator it;
--    for( it = begin(); it != end(); ++it )
-+    for( it = this->begin(); it != this->end(); ++it )
-     {
-       data=*it;
-       s << data;
-@@ -203,7 +203,7 @@ public:
-         uint i;
-         type data;
-         s >> i >> data;
--        it=at(i);
-+        it=this->at(i);
-         QValueList<type>::insert(it,data);
- //        kdDebug(11001) << "CmdInsert:id="<<id()<<" i="<<i<<" data="<<data <<endl; 
-         if (isEmittingSignal()) emitSignal();
-@@ -222,7 +222,7 @@ public:
-       {
-         uint i;
-         s >> i;
--        it=at(i);
-+        it=this->at(i);
-         QValueList<type>::remove(it);
-         kdDebug(11001) << "CmdRemove:id="<<id()<<" i="<<i <<endl; 
-         if (isEmittingSignal()) emitSignal();



Home | Main Index | Thread Index | Old Index