diff options
author | wiz <wiz@pkgsrc.org> | 2014-02-20 19:44:39 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-02-20 19:44:39 +0000 |
commit | 5665fe33b50935bec2ce2ae9bcc699c491fc4fc0 (patch) | |
tree | 6db02e9fadcbca8c776462699d550bcdf31bbc1a /editors | |
parent | 1b5149b7207e588f832006392ea419b079d71bd9 (diff) | |
download | pkgsrc-5665fe33b50935bec2ce2ae9bcc699c491fc4fc0.tar.gz |
Remove patches whose checksums were removed from distinfo during the
last update.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/gtranslator/patches/patch-aa | 13 | ||||
-rw-r--r-- | editors/gtranslator/patches/patch-ab | 13 | ||||
-rw-r--r-- | editors/gtranslator/patches/patch-ac | 13 | ||||
-rw-r--r-- | editors/gtranslator/patches/patch-ae | 13 | ||||
-rw-r--r-- | editors/gtranslator/patches/patch-af | 13 |
5 files changed, 0 insertions, 65 deletions
diff --git a/editors/gtranslator/patches/patch-aa b/editors/gtranslator/patches/patch-aa deleted file mode 100644 index becfca9b8a2..00000000000 --- a/editors/gtranslator/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.3 2008/01/01 15:44:55 joerg Exp $ - ---- configure.orig 2006-11-28 00:13:09.000000000 +0000 -+++ configure -@@ -7127,7 +7127,7 @@ fi - if test "z$sc_present" = "zyes" ; then - { echo "$as_me:$LINENO: checking for scrollkeeper" >&5 - echo $ECHO_N "checking for scrollkeeper... $ECHO_C" >&6; } -- _VERSION=`scrollkeeper-config --version|sed -e 's/\.//g'` -+ _VERSION=`scrollkeeper-config --version|sed -e 's/\.//g' | awk '{ print $1 }'` - if test $_VERSION -ge 0 -o $_VERSION -ge 02; then - { echo "$as_me:$LINENO: result: yes" >&5 - echo "${ECHO_T}yes" >&6; } diff --git a/editors/gtranslator/patches/patch-ab b/editors/gtranslator/patches/patch-ab deleted file mode 100644 index 324889f060d..00000000000 --- a/editors/gtranslator/patches/patch-ab +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2004/12/04 12:01:09 wiz Exp $ - ---- src/nautilus-string.c.orig 2003-07-06 23:44:18.000000000 +0200 -+++ src/nautilus-string.c -@@ -375,7 +375,7 @@ nautilus_str_to_int (const char *string, - - /* Check that all the trailing characters are spaces. */ - while (*parse_end != '\0') { -- if (!isspace (*parse_end++)) { -+ if (!isspace (*(unsigned char *)parse_end++)) { - return FALSE; - } - } diff --git a/editors/gtranslator/patches/patch-ac b/editors/gtranslator/patches/patch-ac deleted file mode 100644 index 1e583d6a89c..00000000000 --- a/editors/gtranslator/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.1 2004/12/04 12:01:09 wiz Exp $ - ---- src/utils.c.orig 2003-08-25 14:58:22.000000000 +0200 -+++ src/utils.c -@@ -635,7 +635,7 @@ gfloat gtranslator_utils_calculate_simil - { - similarity+=one_char_percentage; - } -- else if((tolower(a[i]))==(tolower(b[i]))) -+ else if((tolower((unsigned char)a[i]))==(tolower((unsigned char)b[i]))) - { - similarity+=(one_char_percentage / 2); - } diff --git a/editors/gtranslator/patches/patch-ae b/editors/gtranslator/patches/patch-ae deleted file mode 100644 index b4cc4305504..00000000000 --- a/editors/gtranslator/patches/patch-ae +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ae,v 1.1 2006/05/08 21:31:28 joerg Exp $ - ---- src/bookmark.c.orig 2006-05-08 20:58:08.000000000 +0000 -+++ src/bookmark.c -@@ -446,7 +446,7 @@ gboolean gtranslator_bookmark_remove(Gtr - GList *removeme=zuper; - - GTR_ITER(zuper); -- g_list_remove_link(gtranslator_bookmarks, removeme); -+ gtranslator_bookmarks = g_list_remove_link(gtranslator_bookmarks, removeme); - - gtranslator_bookmark_free(GTR_BOOKMARK(removeme->data)); - g_list_free_1(removeme); diff --git a/editors/gtranslator/patches/patch-af b/editors/gtranslator/patches/patch-af deleted file mode 100644 index a4aa340284f..00000000000 --- a/editors/gtranslator/patches/patch-af +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-af,v 1.1 2006/05/08 21:31:28 joerg Exp $ - ---- src/history.c.orig 2006-05-08 21:07:58.000000000 +0000 -+++ src/history.c -@@ -343,7 +343,7 @@ void remove_duplicate_entries(GList *lis - GList *r=rest; - - GTR_ITER(rest); -- g_list_remove_link(list, r); -+ list = g_list_remove_link(list, r); - - gtranslator_history_entry_free(GTR_HISTORY_ENTRY(r->data)); - g_list_free_1(r); |