pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/inputmethod/anthy Initial import of anthy.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b2e768e1f8d8
branches:  trunk
changeset: 485107:b2e768e1f8d8
user:      taya <taya%pkgsrc.org@localhost>
date:      Sat Dec 04 03:57:44 2004 +0000

description:
Initial import of anthy.

Anthy is a free and secure Japanesse inputmethod.

diffstat:

 inputmethod/anthy/DESCR                  |   1 +
 inputmethod/anthy/Makefile               |  42 ++++++++++++++++++++++++++++++++
 inputmethod/anthy/PLIST                  |  39 +++++++++++++++++++++++++++++
 inputmethod/anthy/distinfo               |   7 +++++
 inputmethod/anthy/patches/patch-2ch-dict |  13 +++++++++
 5 files changed, 102 insertions(+), 0 deletions(-)

diffs (122 lines):

diff -r 3209ae356044 -r b2e768e1f8d8 inputmethod/anthy/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/inputmethod/anthy/DESCR   Sat Dec 04 03:57:44 2004 +0000
@@ -0,0 +1,1 @@
+Anthy is a free and secure Japanese input method.
diff -r 3209ae356044 -r b2e768e1f8d8 inputmethod/anthy/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/inputmethod/anthy/Makefile        Sat Dec 04 03:57:44 2004 +0000
@@ -0,0 +1,42 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/12/04 03:57:44 taya Exp $
+
+DISTNAME=      anthy-5900
+CATEGORIES=    inputmethod
+MASTER_SITES=  http://downloads.sourceforge.jp/anthy/12071/
+DISTFILES=     ${DISTNAME}.tar.gz
+EXTRACT_ONLY=  ${DISTNAME}.tar.gz
+
+MAINTAINER=    taya%NetBSD.org@localhost
+HOMEPAGE=      http://anthy.sourceforge.jp/
+COMMENT=       Kana Kanji conversion system
+
+USE_LIBTOOL=           yes
+USE_LANGUAGES=         c
+USE_GNU_TOOLS+=                make
+GNU_CONFIGURE=         yes
+
+EMACS_USE_LEIM= # defined
+
+# Global and legacy options
+.if defined(USE_2CH_DICT) && ${USE_2CH_DICT} == "yes"
+PKG_DEFAULT_OPTIONS+=  2ch_dict
+.endif
+
+PKG_OPTIONS_VAR=       PKG_OPTIONS.anthy
+PKG_SUPPORTED_OPTIONS= 2ch_dict
+
+.include       "../../mk/bsd.options.mk"
+
+###
+### 2ch dictionary support
+###
+.if !empty(PKG_OPTIONS:M2ch_dict)
+DISTFILES+=    2ch.t
+SITES_2ch.t+=  http://omaemona.sourceforge.net/packages/Zisyo/
+
+post-extract:
+       ${CP} ${DISTDIR}/2ch.t ${WRKSRC}/mkanthydic
+.endif
+
+.include "../../mk/emacs.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 3209ae356044 -r b2e768e1f8d8 inputmethod/anthy/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/inputmethod/anthy/PLIST   Sat Dec 04 03:57:44 2004 +0000
@@ -0,0 +1,39 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2004/12/04 03:57:44 taya Exp $
+bin/anthy-agent
+bin/anthy-dic-tool
+etc/anthy-conf
+include/anthy/anthy.h
+include/anthy/dicutil.h
+include/anthy/input.h
+lib/libanthy.la
+lib/libanthydic.la
+lib/libanthyinput.la
+share/anthy/a.depword
+share/anthy/ajv.depword
+share/anthy/anthy.dic
+share/anthy/av.depword
+share/anthy/conjugate.depword
+share/anthy/conjugate.table
+share/anthy/dic-tool-usage.txt
+share/anthy/fix.depword
+share/anthy/indepword.txt
+share/anthy/master.depword
+share/anthy/noun-variant.depword
+share/anthy/noun.depword
+share/anthy/typetab
+share/anthy/v.depword
+${EMACS_LISPPREFIX}/anthy/anthy-azik.el
+${EMACS_LISPPREFIX}/anthy/anthy-azik.elc
+${EMACS_LISPPREFIX}/anthy/anthy-conf.el
+${EMACS_LISPPREFIX}/anthy/anthy-conf.elc
+${EMACS_LISPPREFIX}/anthy/anthy-dic.el
+${EMACS_LISPPREFIX}/anthy/anthy-dic.elc
+${EMACS_LISPPREFIX}/anthy/anthy-isearch.el
+${EMACS_LISPPREFIX}/anthy/anthy-isearch.elc
+${EMACS_LISPPREFIX}/anthy/anthy.el
+${EMACS_LISPPREFIX}/anthy/anthy.elc
+${EMACS_LISPPREFIX}/anthy/leim-list.el
+${EMACS_LISPPREFIX}/anthy/leim-list.elc
+@dirrm ${EMACS_LISPPREFIX}/anthy
+@dirrm share/anthy
+@dirrm include/anthy
diff -r 3209ae356044 -r b2e768e1f8d8 inputmethod/anthy/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/inputmethod/anthy/distinfo        Sat Dec 04 03:57:44 2004 +0000
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.1.1.1 2004/12/04 03:57:44 taya Exp $
+
+SHA1 (anthy-5900.tar.gz) = 2f7cc9d4077d733d88859fc643203b68d35b7308
+Size (anthy-5900.tar.gz) = 1566783 bytes
+SHA1 (2ch.t) = 0118c98c21420aaeee0bf78b5bb99ede723e194b
+Size (2ch.t) = 142344 bytes
+SHA1 (patch-2ch-dict) = 72a75e1417b05626a4ad4894b5af30d38f7b03bf
diff -r 3209ae356044 -r b2e768e1f8d8 inputmethod/anthy/patches/patch-2ch-dict
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/inputmethod/anthy/patches/patch-2ch-dict  Sat Dec 04 03:57:44 2004 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-2ch-dict,v 1.1.1.1 2004/12/04 03:57:44 taya Exp $
+
+--- mkanthydic/Makefile.in.orig        2004-04-02 18:19:46.000000000 +0900
++++ mkanthydic/Makefile.in     2004-04-02 18:17:47.000000000 +0900
+@@ -99,7 +99,7 @@
+ 
+ # Files
+ noinst_SCRIPTS = 
+-EXTRA_DICS = base.t extra.t
++EXTRA_DICS = base.t extra.t 2ch.t
+ CANNADIC_DIST = gcanna.ctd gcannaf.ctd
+ INCLUDES = -I$(top_srcdir)/include
+ # HOKUTODIC_DIST = hokuto.t



Home | Main Index | Thread Index | Old Index