diff options
author | taya <taya@pkgsrc.org> | 2005-09-05 15:00:09 +0000 |
---|---|---|
committer | taya <taya@pkgsrc.org> | 2005-09-05 15:00:09 +0000 |
commit | 8317d6979a0fe34fabec7a6e5c1db1f8f3acd184 (patch) | |
tree | 6de663e8a0627388b6229cd56163ebaf21b317a9 | |
parent | 542bff762e3f057c435672f44ad6ffefbce276b9 (diff) | |
download | pkgsrc-8317d6979a0fe34fabec7a6e5c1db1f8f3acd184.tar.gz |
update inputmethod/anthy to 6700b.
Changes from release notes:
- fix alignment problem of memory allocator
- fix problems with cpu other than x86
fix PR pkg/31062
-rw-r--r-- | inputmethod/anthy/Makefile | 3 | ||||
-rw-r--r-- | inputmethod/anthy/Makefile.common | 6 | ||||
-rw-r--r-- | inputmethod/anthy/distinfo | 9 | ||||
-rw-r--r-- | inputmethod/anthy/patches/patch-ab | 40 |
4 files changed, 8 insertions, 50 deletions
diff --git a/inputmethod/anthy/Makefile b/inputmethod/anthy/Makefile index 1a1cfacbd11..3eed0cb7f74 100644 --- a/inputmethod/anthy/Makefile +++ b/inputmethod/anthy/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2005/06/12 08:52:54 taya Exp $ +# $NetBSD: Makefile,v 1.8 2005/09/05 15:00:09 taya Exp $ .include "../../inputmethod/anthy/Makefile.common" -PKGREVISION= 1 EXTRACT_ONLY= ${DISTNAME}.tar.gz MAINTAINER= taya@NetBSD.org diff --git a/inputmethod/anthy/Makefile.common b/inputmethod/anthy/Makefile.common index 30ea042c608..c352542afd0 100644 --- a/inputmethod/anthy/Makefile.common +++ b/inputmethod/anthy/Makefile.common @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.2 2005/03/03 15:34:08 taya Exp $ +# $NetBSD: Makefile.common,v 1.3 2005/09/05 15:00:09 taya Exp $ -ANTHY_VERSION= 6300 +ANTHY_VERSION= 6700b DISTNAME= anthy-${ANTHY_VERSION} CATEGORIES= inputmethod -MASTER_SITES= http://downloads.sourceforge.jp/anthy/13543/ +MASTER_SITES= http://downloads.sourceforge.jp/anthy/15414/ DISTFILES= ${DISTNAME}.tar.gz DISTINFO_FILE= ${.CURDIR}/../../inputmethod/anthy/distinfo diff --git a/inputmethod/anthy/distinfo b/inputmethod/anthy/distinfo index b13add99453..8dadc5460b6 100644 --- a/inputmethod/anthy/distinfo +++ b/inputmethod/anthy/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.6 2005/06/12 08:52:54 taya Exp $ +$NetBSD: distinfo,v 1.7 2005/09/05 15:00:09 taya Exp $ -SHA1 (anthy-6300.tar.gz) = bce93631d3249aa551f708bcb9b4724b26f71a70 -RMD160 (anthy-6300.tar.gz) = d6bdad88e15ef4edb0ead94dd65c14295dd9e53e -Size (anthy-6300.tar.gz) = 2020760 bytes +SHA1 (anthy-6700b.tar.gz) = 19e53a9c41497ef2949e23851999ed72fd211e83 +RMD160 (anthy-6700b.tar.gz) = 02815a1ec441b46e75cf34c1effb2a967b0b8331 +Size (anthy-6700b.tar.gz) = 2218622 bytes SHA1 (2ch.t) = 2160d7b0079e2c1a14093da968f34e7f8dbc07c2 RMD160 (2ch.t) = b05902485829eebb4e09c554f095275f5278dd8b Size (2ch.t) = 142157 bytes @@ -10,4 +10,3 @@ SHA1 (okinawa-20050607.t) = 50f9524e5f11240cbc486c32eb86fcc1a3075e6f RMD160 (okinawa-20050607.t) = 6ee9adeaddb0c62c6a4741761d14932603ee7a81 Size (okinawa-20050607.t) = 150145 bytes SHA1 (patch-aa) = 79816563a3d1ff853bc1edcbfee7e22ae2e26991 -SHA1 (patch-ab) = c8847cd5d97161c07161358d31c4f15d8586e7a9 diff --git a/inputmethod/anthy/patches/patch-ab b/inputmethod/anthy/patches/patch-ab deleted file mode 100644 index 9c960dd14d1..00000000000 --- a/inputmethod/anthy/patches/patch-ab +++ /dev/null @@ -1,40 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2005/06/12 08:52:54 taya Exp $ - -diff -ru ../Orig/anthy-6300/src-util/dic-tool.c ./src-util/dic-tool.c ---- ../Orig/anthy-6300/src-util/dic-tool.c 2005-02-28 22:35:44.000000000 +0900 -+++ ./src-util/dic-tool.c 2005-06-12 17:33:17.000000000 +0900 -@@ -16,7 +16,6 @@ - #include <stdio.h> - #include <stdlib.h> - #include <string.h> --#include <ctype.h> - - #include <dicutil.h> - #include <config.h> -@@ -287,24 +286,11 @@ - find_head(char *yomi, char *freq, char *w) - { - char buf[256]; -- char *p; -- int i; - do { - if (!read_line(buf, 256, fp_in)) { - return -1; - } -- } while (sscanf(buf, "%s %s %s",yomi, freq, w) != 3); -- /* 単語はspaceを含みうるので、切り直し */ -- p = buf; -- for (i = 0; i < 2; i++) { -- while (!isspace(p[0]) || -- isspace(p[1])) { -- p++; -- } -- p++; -- } -- /* pは3つめのトークンの先頭*/ -- strncpy(w, p, 256); -+ } while (sscanf(buf, "%s %s %[^\n]", yomi, freq, w) != 3); - return 0; - } - -Only in ./src-util: dic-tool.c.orig |