summaryrefslogtreecommitdiff
path: root/games/gnome-games
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-05-19 23:40:25 +0000
committerwiz <wiz@pkgsrc.org>2009-05-19 23:40:25 +0000
commit87563b9442933ae2b6597faae73007c199cb989b (patch)
treedcf446d5cf75716a52df44b7390ee7fbd5f8bbfd /games/gnome-games
parentbfb3770a592d252141ef1e6d92aefcbde426803b (diff)
downloadpkgsrc-87563b9442933ae2b6597faae73007c199cb989b.tar.gz
Remove patches that aren't needed (tested on NetBSD-current; please
let me know if you disagree).
Diffstat (limited to 'games/gnome-games')
-rw-r--r--games/gnome-games/distinfo4
-rw-r--r--games/gnome-games/patches/patch-ac6
-rw-r--r--games/gnome-games/patches/patch-ae21
3 files changed, 1 insertions, 30 deletions
diff --git a/games/gnome-games/distinfo b/games/gnome-games/distinfo
index 5deebcc68e5..532568255a2 100644
--- a/games/gnome-games/distinfo
+++ b/games/gnome-games/distinfo
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.27 2009/05/19 11:45:18 wiz Exp $
+$NetBSD: distinfo,v 1.28 2009/05/19 23:40:25 wiz Exp $
SHA1 (gnome-games-2.26.2.tar.bz2) = c7de7b61431a10fbe287431b08d23c9e67c069fb
RMD160 (gnome-games-2.26.2.tar.bz2) = 9d2bea14db0dcf63dee42677584e20a37be778c5
Size (gnome-games-2.26.2.tar.bz2) = 23124681 bytes
-SHA1 (patch-ac) = e54f3fecee226f78edf17dc686c6bde2a25e36fd
-SHA1 (patch-ae) = 6120045a221cd6e81bbaaa9c9140f43ffc8e0dfa
diff --git a/games/gnome-games/patches/patch-ac b/games/gnome-games/patches/patch-ac
deleted file mode 100644
index 91de29b1f11..00000000000
--- a/games/gnome-games/patches/patch-ac
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: patch-ac,v 1.4 2007/09/20 00:05:58 wiz Exp $
-
---- gnect/src/malloc.h.orig Tue May 11 20:30:32 2004
-+++ gnect/src/malloc.h
-@@ -0,0 +1 @@
-+#include <stdlib.h>
diff --git a/games/gnome-games/patches/patch-ae b/games/gnome-games/patches/patch-ae
deleted file mode 100644
index f70e2633602..00000000000
--- a/games/gnome-games/patches/patch-ae
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-ae,v 1.6 2009/03/18 01:03:36 jmcneill Exp $
-
---- blackjack/src/game.cpp.orig 2009-01-18 19:18:40.000000000 -0500
-+++ blackjack/src/game.cpp
-@@ -41,6 +41,7 @@
-
- #define RULES_GROUP "Blackjack Rules"
-
-+#include <cctype>
- #include <iostream>
- using namespace std;
-
-@@ -119,7 +120,7 @@ bj_game_file_to_name (const gchar* file)
- *p = ' ';
- for (p = buf; p = strchr (p, '-'), p && *p;)
- *p = ' ';
-- buf[0] = toupper (buf[0]);
-+ buf[0] = toupper ((unsigned char) buf[0]);
- p = g_strdup (_(buf));
-
- g_free (buf);