summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2004-11-05 14:11:41 +0000
committerjmmv <jmmv@pkgsrc.org>2004-11-05 14:11:41 +0000
commit888ac18c475f388615d549e068270de68cec6279 (patch)
tree48d98e9a769b5bf01b4eceadc0141a0598b68f68 /misc
parentfcab9f62415e57e6b74645a33db04204b534fee4 (diff)
downloadpkgsrc-888ac18c475f388615d549e068270de68cec6279.tar.gz
Update to 0.11.15:
What's new in GOK 0.11.15 ? * Bug fixes including: 155556, 157138, 157221, 154961, 155805, 156802 154918, 156802. * Mostly fixes and improvements to the dynamic accessibility keyboards. What's new in GOK 0.11.14 ? * Bug fixes including: 155182 (double actions), 154499, 154604, #156153, #156479, 155344, 155473, 155476, 155512. * LoginHelper's setSafe implementation now prevents word completion, as it should. * Distinguish between HTML content and browser controls. * Hush compiler warnings (bug 154915).
Diffstat (limited to 'misc')
-rw-r--r--misc/gok/Makefile4
-rw-r--r--misc/gok/distinfo7
-rw-r--r--misc/gok/patches/patch-aa26
3 files changed, 5 insertions, 32 deletions
diff --git a/misc/gok/Makefile b/misc/gok/Makefile
index fd4e40501e6..013e2734e72 100644
--- a/misc/gok/Makefile
+++ b/misc/gok/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.19 2004/10/28 19:11:50 jmmv Exp $
+# $NetBSD: Makefile,v 1.20 2004/11/05 14:11:41 jmmv Exp $
#
-DISTNAME= gok-0.11.12
+DISTNAME= gok-0.11.15
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gok/0.11/}
EXTRACT_SUFX= .tar.bz2
diff --git a/misc/gok/distinfo b/misc/gok/distinfo
index 55b0ad0a14d..16ffc2782a3 100644
--- a/misc/gok/distinfo
+++ b/misc/gok/distinfo
@@ -1,5 +1,4 @@
-$NetBSD: distinfo,v 1.6 2004/11/02 22:51:33 jmmv Exp $
+$NetBSD: distinfo,v 1.7 2004/11/05 14:11:41 jmmv Exp $
-SHA1 (gok-0.11.12.tar.bz2) = 94a19d66cf2ce7b869997fff717377d305bbf868
-Size (gok-0.11.12.tar.bz2) = 1352249 bytes
-SHA1 (patch-aa) = 30be5556bd104e2eeb30fee75c86256dbce27567
+SHA1 (gok-0.11.15.tar.bz2) = 546ccca602a6d9f993657484ba4a05b9a788a45d
+Size (gok-0.11.15.tar.bz2) = 1355428 bytes
diff --git a/misc/gok/patches/patch-aa b/misc/gok/patches/patch-aa
deleted file mode 100644
index 253ea4b06ac..00000000000
--- a/misc/gok/patches/patch-aa
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2004/11/02 22:51:33 jmmv Exp $
-
---- gok/main.c.orig 2004-10-13 15:36:18.000000000 +0200
-+++ gok/main.c
-@@ -608,8 +608,8 @@ gok_main_open(gint argc, gchar *argv[])
-
- fprintf (stderr, "\nGOK Actions:\n");
- if (error == NULL) {
-- list = g_slist_sort (list, (GCompareFunc)comparebasenames);
-- GSList* listhead = list;
-+ GSList* listhead;
-+ listhead = list = g_slist_sort (list, (GCompareFunc)comparebasenames);
- while (list) {
- fprintf(stderr,"%s\n",g_path_get_basename(list->data));
- g_free(list->data);
-@@ -636,8 +636,8 @@ gok_main_open(gint argc, gchar *argv[])
- fprintf (stderr, "\nGOK Access Methods:\n");
- if (error == NULL) {
- gchar* base;
-- list = g_slist_sort (list, (GCompareFunc)comparebasenames);
-- GSList* listhead = list;
-+ GSList* listhead;
-+ listhead = list = g_slist_sort (list, (GCompareFunc)comparebasenames);
- while (list) {
- base = g_path_get_basename(list->data);
- fprintf(stderr,"%s\n",base);