diff options
author | markd <markd@pkgsrc.org> | 2006-08-02 14:13:05 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2006-08-02 14:13:05 +0000 |
commit | 778d2141efc70fa7003f2bb628f83fa76ff2fb2f (patch) | |
tree | 01c3096fa161cdbe0aa03c759c27aaa28e03c505 /games | |
parent | 1359240d1b762458d70e5dceb804ef65ee0a13ff (diff) | |
download | pkgsrc-778d2141efc70fa7003f2bb628f83fa76ff2fb2f.tar.gz |
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 (limited to 'games')
-rw-r--r-- | games/kdegames3/Makefile | 3 | ||||
-rw-r--r-- | games/kdegames3/distinfo | 9 | ||||
-rw-r--r-- | games/kdegames3/patches/patch-aa | 62 |
3 files changed, 5 insertions, 69 deletions
diff --git a/games/kdegames3/Makefile b/games/kdegames3/Makefile index cc58b809d23..2b8d4a8584b 100644 --- a/games/kdegames3/Makefile +++ b/games/kdegames3/Makefile @@ -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 --git a/games/kdegames3/distinfo b/games/kdegames3/distinfo index b41603dbcc5..863088bed40 100644 --- a/games/kdegames3/distinfo +++ b/games/kdegames3/distinfo @@ -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 --git a/games/kdegames3/patches/patch-aa b/games/kdegames3/patches/patch-aa deleted file mode 100644 index 4e8dde19197..00000000000 --- a/games/kdegames3/patches/patch-aa +++ /dev/null @@ -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(); |