[neon/neon-packaging/anthy-unicode/Neon/unstable] debian: initial packagaing for use by maliit-keyboard

Carlos De Maine null at kde.org
Fri Sep 27 03:50:54 BST 2024


Git commit 8920866aacc8aab7b69ac2cc31e7b2ae7c966a56 by Carlos De Maine.
Committed on 27/09/2024 at 02:50.
Pushed by carlosdem into branch 'Neon/unstable'.

initial packagaing for use by maliit-keyboard

A  +3    -0    debian/anthy-unicode-common.install
A  +12   -0    debian/anthy-unicode-el.README.Debian
A  +1    -0    debian/anthy-unicode-el.docs
A  +45   -0    debian/anthy-unicode-el.emacsen-install
A  +15   -0    debian/anthy-unicode-el.emacsen-remove
A  +21   -0    debian/anthy-unicode-el.emacsen-startup
A  +1    -0    debian/anthy-unicode-el.install
A  +1    -0    debian/anthy-unicode.docs
A  +5    -0    debian/anthy-unicode.install
A  +258  -0    debian/autoreconf.after
A  +215  -0    debian/autoreconf.before
A  +5    -0    debian/changelog
A  +103  -0    debian/control
A  +46   -0    debian/copyright
A  +3    -0    debian/docs
A  +2    -0    debian/libanthy-unicode-0t64.install
A  +1    -0    debian/libanthy-unicode-dev.docs
A  +7    -0    debian/libanthy-unicode-dev.install
A  +1    -0    debian/libanthy-unicode0t64.lintian-overrides
A  +1    -0    debian/libanthyinput-unicode-0t64.install
A  +1    -0    debian/libanthyinput-unicode-0t64.lintian-overrides
A  +3    -0    debian/libanthyinput-unicode-dev.install
A  +3    -0    debian/not-installed
A  +1    -0    debian/patches/series
A  +10   -0    debian/patches/utf8_heartmark
A  +9    -0    debian/rules
A  +1    -0    debian/source/format
A  +2    -0    debian/watch

https://invent.kde.org/neon/neon-packaging/anthy-unicode/-/commit/8920866aacc8aab7b69ac2cc31e7b2ae7c966a56

diff --git a/debian/anthy-unicode-common.install b/debian/anthy-unicode-common.install
new file mode 100644
index 0000000..11e3923
--- /dev/null
+++ b/debian/anthy-unicode-common.install
@@ -0,0 +1,3 @@
+etc/anthy-unicode/anthy-unicode.conf
+usr/share/anthy-unicode/anthy.dic
+usr/share/anthy-unicode/zipcode.t
diff --git a/debian/anthy-unicode-el.README.Debian b/debian/anthy-unicode-el.README.Debian
new file mode 100644
index 0000000..4fab434
--- /dev/null
+++ b/debian/anthy-unicode-el.README.Debian
@@ -0,0 +1,12 @@
+anthy-unicode-el for Debian
+-------------------
+
+anthy-unicode-el is a elisp backend for Anthy-unicode. You have only to insert
+following lines in your ~/.emacs or ~/.xemacs/init.el
+
+(set-input-method "japanese-anthy-unicode")
+
+Anthy-unicode is Japanese input method created by Heke Project.
+
+Documentations for this package are only available in Japanese.
+ -- Masahito Omote <omote at debian.org>, Sat, 7 Oct 2006 21:36:00 +0900
diff --git a/debian/anthy-unicode-el.docs b/debian/anthy-unicode-el.docs
new file mode 100644
index 0000000..c937a29
--- /dev/null
+++ b/debian/anthy-unicode-el.docs
@@ -0,0 +1 @@
+doc/ELISP
diff --git a/debian/anthy-unicode-el.emacsen-install b/debian/anthy-unicode-el.emacsen-install
new file mode 100644
index 0000000..b2d9692
--- /dev/null
+++ b/debian/anthy-unicode-el.emacsen-install
@@ -0,0 +1,45 @@
+#! /bin/sh -e
+# /usr/lib/emacsen-common/packages/install/anthy-unicode
+
+# Written by Jim Van Zandt <jrv at vanzandt.mv.com>, borrowing heavily
+# from the install scripts for gettext by Santiago Vila
+# <sanvila at ctv.es> and octave by Dirk Eddelbuettel <edd at debian.org>.
+
+FLAVOR=$1
+PACKAGE=anthy-unicode
+
+if [ ${FLAVOR} = emacs ]; then exit 0; fi
+
+echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR}
+
+#FLAVORTEST=`echo $FLAVOR | cut -c-6`
+#if [ ${FLAVORTEST} = xemacs ] ; then
+#    SITEFLAG="-no-site-file"
+#else
+#    SITEFLAG="--no-site-file"
+#fi
+FLAGS="${SITEFLAG} -q -batch -l path.el -f batch-byte-compile"
+
+ELDIR=/usr/share/emacs/site-lisp/${PACKAGE}
+ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
+
+# Install-info-altdir does not actually exist. 
+# Maybe somebody will write it.
+if test -x /usr/sbin/install-info-altdir; then
+    echo install/${PACKAGE}: install Info links for ${FLAVOR}
+    install-info-altdir --quiet --section "" "" --dirname=${FLAVOR} /usr/info/${PACKAGE}.info.gz
+fi
+
+install -m 755 -d ${ELCDIR}
+cd ${ELDIR}
+FILES=`echo *.el`
+cp ${FILES} ${ELCDIR}
+cd ${ELCDIR}
+
+cat << EOF > path.el
+(setq load-path (cons "." load-path) byte-compile-warnings nil)
+EOF
+${FLAVOR} ${FLAGS} ${FILES} > ${ELCDIR}/CompilationLog 2>&1
+rm -f *.el path.el
+
+exit 0
diff --git a/debian/anthy-unicode-el.emacsen-remove b/debian/anthy-unicode-el.emacsen-remove
new file mode 100644
index 0000000..35c7c0d
--- /dev/null
+++ b/debian/anthy-unicode-el.emacsen-remove
@@ -0,0 +1,15 @@
+#!/bin/sh -e
+# /usr/lib/emacsen-common/packages/remove/anthy-unicode
+
+FLAVOR=$1
+PACKAGE=anthy-unicode
+
+if [ ${FLAVOR} != emacs ]; then
+    if test -x /usr/sbin/install-info-altdir; then
+        echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
+        install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/anthy-unicode.info.gz
+    fi
+
+    echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
+    rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
+fi
diff --git a/debian/anthy-unicode-el.emacsen-startup b/debian/anthy-unicode-el.emacsen-startup
new file mode 100644
index 0000000..b1a273c
--- /dev/null
+++ b/debian/anthy-unicode-el.emacsen-startup
@@ -0,0 +1,21 @@
+;; -*-emacs-lisp-*-
+;;
+;; Emacs startup file for the Debian GNU/Linux anthy-unicode package
+;;
+;; Originally contributed by Nils Naumann <naumann at unileoben.ac.at>
+;; Modified by Dirk Eddelbuettel <edd at debian.org>
+;; Adapted for dh-make by Jim Van Zandt <jrv at vanzandt.mv.com>
+
+;; The anthy-unicode package follows the Debian/GNU Linux 'emacsen' policy and
+;; byte-compiles its elisp files for each 'emacs flavor' (emacs19,
+;; xemacs19, emacs20, xemacs20...).  The compiled code is then
+;; installed in a subdirectory of the respective site-lisp directory.
+;; We have to add this to the load-path:
+(setq load-path (cons (concat "/usr/share/"
+                              (symbol-name flavor)
+			      "/site-lisp/anthy-unicode") load-path))
+
+(autoload 'anthy-unicode-leim-activate "anthy-unicode" nil t)
+(register-input-method "japanese-anthy-unicode" "Japanese"
+                       'anthy-unicode-leim-activate "[anthy-unicode]"
+                       "Anthy Kana Kanji conversion system")
diff --git a/debian/anthy-unicode-el.install b/debian/anthy-unicode-el.install
new file mode 100644
index 0000000..b8c298a
--- /dev/null
+++ b/debian/anthy-unicode-el.install
@@ -0,0 +1 @@
+src-util/*.el	usr/share/emacs/site-lisp/anthy-unicode/
diff --git a/debian/anthy-unicode.docs b/debian/anthy-unicode.docs
new file mode 100644
index 0000000..6f6dd4e
--- /dev/null
+++ b/debian/anthy-unicode.docs
@@ -0,0 +1 @@
+src-util/dic-tool-usage.txt
diff --git a/debian/anthy-unicode.install b/debian/anthy-unicode.install
new file mode 100644
index 0000000..0b833a7
--- /dev/null
+++ b/debian/anthy-unicode.install
@@ -0,0 +1,5 @@
+usr/bin/anthy-agent-unicode
+usr/bin/anthy-dic-tool-unicode
+usr/bin/anthy-morphological-analyzer-unicode
+usr/share/anthy-unicode/dic-tool-usage.txt
+usr/share/anthy-unicode/typetab
diff --git a/debian/autoreconf.after b/debian/autoreconf.after
new file mode 100644
index 0000000..1581293
--- /dev/null
+++ b/debian/autoreconf.after
@@ -0,0 +1,258 @@
+e9ccf1307def0b5d68588bb12f31ae55  ./anthy/alloc.h
+ed46b11f5a22f2d87d2a2e45e385e60b  ./anthy/input.h
+2f33ef6151f66e087425bec2fd25e4f6  ./anthy/record.h
+7489061aec19e1bead1e8908923316e8  ./anthy/prediction.h
+fb9e94e1af11d326e4cf36be93647482  ./anthy/dicutil.h
+bab8feb947d4dbd52c656186c838b9e0  ./anthy/textdict.h
+6f6fc90f94c13fea2a31766f2b62c3d3  ./anthy/depgraph.h
+320ab688c66787028e9ca6b1ac5c4c19  ./anthy/splitter.h
+057ecdbf8a193ec7a29a26988c8bb497  ./anthy/convdb.h
+f0695a2280520a86f9a1863d62e64353  ./anthy/xstr.h
+6f4702959ea7b574dd06f72a086939e2  ./anthy/segment.h
+589e1e046f92d1ea3b4ab0aa4ceec03a  ./anthy/ruleparser.h
+b2357edf3f45eaef1a52c999325c9694  ./anthy/filemap.h
+96f676a241fb366e4f8d60a012520301  ./anthy/texttrie.h
+151696673e79e8ea1f5ec7780ea55197  ./anthy/anthy.h
+565aa77d1e9cbdddbd7b306271848678  ./anthy/conf.h
+b1b379922d94619fb21cb1018de47192  ./anthy/word_dic.h
+1db9100bf75cbaba825b5633665711e7  ./anthy/corpus.h
+2842b7f3225d7fcb60a5a200c496f5f6  ./anthy/matrix.h
+7d66a470764b234844a3189e051df1f8  ./anthy/diclib.h
+8a26e1c5427056a5072c78815f0b28cd  ./anthy/logger.h
+838d35b1b387ff7195e5e59e5b151fee  ./anthy/feature_set.h
+adad69810697953fb0c062875295d90a  ./anthy/xchar.h
+84ff81648428d488ac873a0abf5264a0  ./anthy/segclass.h
+719658fd0195c100ab3c1a2c9d9bf08b  ./anthy/dic.h
+36f36f96c13574aaafdbe856bede3631  ./anthy/Makefile.in
+533884f67d2750e08d0d6f170d6f14ed  ./anthy/Makefile.am
+b753cae9cc86e9b99945cd404e103175  ./anthy/wtype.h
+5b6dec227733df08fd5133cfc7847fcf  ./anthy/ordering.h
+1dbbcb8b46cf44d4123b3f1274a11d4d  ./ChangeLog-old
+b706ac2ba26475072c6dc72a68bd5ea0  ./config.sub
+b090c5891571c820e91d345a9551af44  ./install-sh
+d41d8cd98f00b204e9800998ecf8427e  ./ChangeLog
+7f9b48d67e59c6da85aeccaac689d707  ./configure
+6035211ea76a47ef95370d7a6ac136c0  ./mkanthydic/mkfiledic.c
+46fc322b647f68d6c79b333152fc1044  ./mkanthydic/Makefile.in
+4bda1763d0cd31d9eb5a59d6cca03e9b  ./mkanthydic/Makefile.am
+93613907908d66d0697abd44d1c68c7e  ./anthy-unicode-test.conf.in
+c0c493f2c232677d39277d1183fbb732  ./src-util/egg.c
+e22f64462c5fe58c0e498cfeeedb2a83  ./src-util/anthy-unicode.el
+c4afaa2f8431492e4dac84f4123d05a4  ./src-util/convdb.c
+373f24ea079305cc9473df17da0f6e82  ./src-util/anthy-unicode-dic.el
+b6786744f3a6ff3ff05deb87ac938f76  ./src-util/input.c
+2f6e883bb96c07bbb821c5e8b987b75d  ./src-util/anthy-unicode-conf.el
+b2374c5b6b9543053a6655e87285dd2e  ./src-util/agent.c
+c3b75f68f0c8cb34b3836ea9dcd92fdb  ./src-util/anthy-unicode-kyuri.el
+677a2ffd9090c39ae56e594cd26ae979  ./src-util/typetab
+6b6695cf143dec6687e5f23b50df4fdc  ./src-util/anthy.i
+719e6874821c453fae2cd50f90d803e2  ./src-util/rkmap.h
+1ed74e7ad0bc8d3619f9e4f8903eb4fd  ./src-util/anthy-unicode-azik.el
+fc13e44d744a44299523d632837a5ad1  ./src-util/dic-tool.c
+175325072ed6a4089c9387152120bfb7  ./src-util/rkhelper.h
+48560b88af4c40b178b9a06d7357cc72  ./src-util/rkconv.c
+357decbe22f207e756b1f1b529756e5d  ./src-util/rkconv.h
+cdb61595d11b3f636c1ef77f61ba63cc  ./src-util/dic-tool-input
+e0a73389f989b5aa5a7eac02c89cff57  ./src-util/anthy-unicode-isearch.el
+613f5e962eebc2e1ce94f2ff6b1ef9ef  ./src-util/dic-tool-result
+06c3f7493b54d7f399bee63bdf20a30b  ./src-util/leim-list.el
+683c9dec6206bde6b28f60efff3d62da  ./src-util/dic-tool-usage.txt
+e008383a884578b6b5f8229119053c65  ./src-util/Makefile.in
+63468ae034adecfe8ee8339ad6093a05  ./src-util/Makefile.am
+3bf85a66147a7006bb253c49944ff6c9  ./src-util/morph-main.c
+0bbe82da4d3ad2691e83ae070704d6bb  ./src-util/rkhelper.c
+b816f92498a6ec8138d9ec53a14bcaa4  ./compile
+6cb8950c1cdc6d812c986c766552bdaf  ./doc/SPLITTER
+a421c5bf7b3be38f9d50f03204cabb2e  ./doc/GUIDE.english
+f656d12efc43d4e1dbd741c3522599ff  ./doc/GUIDE
+a58fafbf4e31528b926d2bb1bb0f8034  ./doc/LIB
+78040a0fead39ccc4f67232af899899f  ./doc/protocol.txt
+30bac1389b643c864a1968bb2663947a  ./doc/TESTING
+267f00260a82ee02db266ccdd2928013  ./doc/GRAMMAR
+45a7b875c1240e0985b8d65e669c5be4  ./doc/DICUTIL
+a57d70317b88b2ac4a630f774a84aac1  ./doc/POS
+494dc509014cc28bd68e0a663834e14b  ./doc/00INDEX
+bd2e774718fc9519a0632f628d381622  ./doc/LEARNING
+b01fbe73c7685e6b94d152aaea3b078f  ./doc/MISC
+df600ae91981cf69ae2a07117eb60f85  ./doc/DICLIB
+30cf54f08cd66ca22b3118ed2743e10d  ./doc/ELISP
+86670f20f878a250524745b3656a6cb7  ./doc/GLOSSARY
+54ff61e26dea43dd5b874ed72dcfc1ac  ./doc/Makefile.in
+302463e4f2bc34710a94a9b6d7882750  ./doc/ILIB
+f7ead24a51a830695279737668b2ad41  ./doc/Makefile.am
+84da3f3dd260ff69e4e730819674cc95  ./anthy-unicode.conf.in
+087f09b6c5e56d55388cb7e4d4ce3e8c  ./anthy-unicode.pc.in
+42ecc6790374e825e17b1f135afb2f97  ./autogen.sh
+abe7e4a29bbebc48f141670eb05f757b  ./autom4te.cache/traces.2
+8842d299b989c7916893ca63ea27909c  ./autom4te.cache/traces.1
+fe4c21b3837488e0c14a455edf96efd8  ./autom4te.cache/traces.3
+793e6a37dc36d20d0dafe76023b3d552  ./autom4te.cache/output.0
+c8e66bd0e54d877ac941634341b8ef08  ./autom4te.cache/output.2
+365fb4aed1a8a6914b34b734de55078e  ./autom4te.cache/requests
+abe7e4a29bbebc48f141670eb05f757b  ./autom4te.cache/traces.4
+2987d21732c0d52b812ea64e04dacc8e  ./autom4te.cache/output.4
+c8e66bd0e54d877ac941634341b8ef08  ./autom4te.cache/output.3
+c8e66bd0e54d877ac941634341b8ef08  ./autom4te.cache/output.1
+996cd9b0f4cee7f862942e7251e26e4c  ./autom4te.cache/traces.0
+a10abe2e99784a85fedd9b7bf823d69d  ./DIARY
+004929ec9af8e2a6aa29889d94fa98e5  ./Doxyfile
+e9f7b87447c66681dd017c46db6b2e01  ./mkworddic/dict.args.in
+7f88eeb7342473c67fc8e42f08311c24  ./mkworddic/zipcode.t
+f5c21dcc4d2f321ae64f7af06756883d  ./mkworddic/compound.t
+9d05e18477f66033909db98044988b46  ./mkworddic/udict
+73bde1d0137016f1e2963518f7823b69  ./mkworddic/calcfreq.c
+1f09222de23eb83298b2b210fb4df1a5  ./mkworddic/extra.t
+ac7f29a10f7a4e98d4b07b597966caaf  ./mkworddic/mkdic.c
+897ff52ed83d8e4e521218b33551f86d  ./mkworddic/mkudic.c
+f4efb7dcb14b04f18db55bb368d20fbc  ./mkworddic/base.t
+293bc589c9fc8ba43d55bd1e4e787d1b  ./mkworddic/adjust.t
+ea7b3179ce17c5236f2c00ae313cfe31  ./mkworddic/mkdic.h
+46e359980d780d315c1705de20f70ede  ./mkworddic/utf8.t
+04398ce96b2cb5a794a137e82019f5f4  ./mkworddic/Makefile.in
+1bd2751a59f0d4d75438789b25af716a  ./mkworddic/writewords.c
+e6c346dfb1a38054e67fd2c647672bc0  ./mkworddic/tankanji.t
+ea79366d936b44752cab8084d939a088  ./mkworddic/Makefile.am
+a09ed788e5cd8bee36895187d6e5f7d9  ./mkworddic/name.t
+180b307b0f2c50cd66683bc8ce12a846  ./.travis.yml
+d39b4b6f1f6edd440e5b7244bb84a6a8  ./config.h.in
+b8760c2a220fc0d7f9f1ab8bba895034  ./src-main/context.c
+1b4846a4ad0f2e0290888922829da6c5  ./src-main/main.c
+b6e3ddd2d0aa6f8ef708c7850012fbeb  ./src-main/Makefile.in
+9d1326766c1df309461d36ca4f4044e8  ./src-main/Makefile.am
+61e92518e760ef7d90b40563c8e81c87  ./src-main/main.h
+b21c4b9c1afb1d3a0c633ee00b1ceb22  ./src-ordering/sorter.h
+fbf41cf01c2863f4189ba4371fbb8216  ./src-ordering/relation.c
+9d937913a683ca094d1032f30e9579fc  ./src-ordering/commit.c
+8beeff991217be9067d689cee9cbb8ce  ./src-ordering/infosort.c
+5cb6a2a2d526ff9e4888f7cdb763f311  ./src-ordering/candsort.c
+fcd730e17560edebdf63430dfa12d2b8  ./src-ordering/candhistory.c
+3052dcbf3688e700c6e0866564311019  ./src-ordering/candswap.c
+0fe440bef44c3f87cf4fd181ad9722b7  ./src-ordering/Makefile.in
+c7f77385f56816f69ee836e8cb25ae24  ./src-ordering/Makefile.am
+b1340adf9d1aacbc024ec256469b541f  ./README
+b71435868067dcc3f977016d2a044080  ./src-worddic/ext_ent.c
+35c2943b4f3ffbfee1e24797929cda87  ./src-worddic/dic_personality.h
+a1b14edfa9e282bda135480fb81bbe8d  ./src-worddic/feature_set.c
+13483f6348d32791665ca1d6cfa2e64d  ./src-worddic/dic_main.h
+8c7c28d144f5a752344235f97546285e  ./src-worddic/dic_util.c
+12c9bb8c520b1f4f1a1ba053d1c192d2  ./src-worddic/texttrie.c
+b2b69acd7da6c6566ed1c4dcde9647d2  ./src-worddic/dic_ent.h
+047036cf16ef29fb6c3c9e12def34252  ./src-worddic/ptab.h
+2c3208da7d7688974a5a378770c74c34  ./src-worddic/word_lookup.c
+57dee65378f0763760b64a39b371aeb9  ./src-worddic/record.c
+ef6b061916bc284f08a50e7f99d12b45  ./src-worddic/wtab.h
+10c39beaf8cc31062270701990e6ebd1  ./src-worddic/wtype.c
+5fc7f2a349ca2a73667fb2a3a8de0c06  ./src-worddic/mem_dic.h
+ed5dbafb9f9762415d0cd7242078b5fc  ./src-worddic/mem_dic.c
+853e6b7ac7579183194c802c56d37d03  ./src-worddic/matrix.c
+eb51028591164647494d06cc9dcc3c69  ./src-worddic/Makefile.in
+0b7ac8b2884ce0ce41dd9a45c16a4fef  ./src-worddic/Makefile.am
+4b55ec0d46a63a36c7c6f0537f83e289  ./src-worddic/priv_dic.c
+04bab7259443821ec94c7c568dff5749  ./src-worddic/use_dic.c
+f332889275e29f9061378557a1853ccd  ./src-worddic/textdict.c
+22527165fcb416c1bfc95b872cd04736  ./src-worddic/word_dic.c
+0450471ea959ca0445b00fcd500edb9b  ./test/test.txt
+faaa904087888bc1073001c973d6c5e8  ./test/test.exp
+3032da4ae1adde371747169262ea87c9  ./test/prediction.c
+99483cb9bc9ad50ea7f08cde3ae7013f  ./test/check.c
+aa5689f89ea395b4b0201b060dc5e155  ./test/main.c
+be263cd89b7ab871a133eb764aee1d7c  ./test/Makefile.in
+7b314985dcaa9b0402a62b3ad8bed9ee  ./test/test-matrix.c
+e6ad30a0ec1902ea1d7c7b8bf3d20b35  ./test/Makefile.am
+6ecafe15a6088eb7a2f4f2aadbb240ce  ./depcomp
+6aa640f622e8d4e98ae7d5473c26bbfc  ./NEWS
+02e7b1aebd8cd0e27ab4b858173ad8ec  ./ltmain.sh
+1230bca99b4d4b4a590ec6dad71fc0d4  ./configure.ac
+4792fafc2907ba72890021247b10b6bb  ./anthy-unicode.spec.in
+c640adfe40ed3e1a83b63092766ce97a  ./src-splitter/lattice.c
+78161d16c9c9a705e7f1d953fc4246bd  ./src-splitter/wordlist.c
+139f80bab1a8bf103b08825ecd9b108f  ./src-splitter/evalborder.c
+8a54ec6a3e3c6f3eb241bb1f6e4ad89a  ./src-splitter/compose.c
+72abd22a55d3d45592a2d3378eb5b520  ./src-splitter/splitter.c
+ebff3f79f8913d981f03554fc3628156  ./src-splitter/Makefile.in
+af122fb20d08bedabe246670d787c785  ./src-splitter/wordborder.h
+d2c72b9a610449fb9b9959ef0b8e38b9  ./src-splitter/Makefile.am
+04cdbcbc435173c62c2a85e10bfc5b6b  ./src-splitter/segclass.c
+a5bf0fdab55f8a3f751c4cc5ddd48eaa  ./src-splitter/metaword.c
+fc1cd0847a9eae26a45c9298edbb7b1a  ./src-splitter/depgraph.c
+f15a1acd61566d7c75d6814d162d8dbe  ./AUTHORS
+7e0942cb1c55b9b004568f1d3c46cd72  ./alt-cannadic/gcannaf.ctd
+c88b15ef0bc8d6bfad726f857d62231f  ./alt-cannadic/orig-README.ja
+a0f54dda7b90402403fb37b1376019da  ./alt-cannadic/Changes.txt
+9574e4ab6e562da8cc981202b469fb8c  ./alt-cannadic/extra/gt-tankanji_hikanji-uni.t
+6abd16f8efb0e826630f65a5e3f3370a  ./alt-cannadic/extra/g-jiritu-34.t
+fcc6519f162864205fbcecfb02e9bf18  ./alt-cannadic/extra/gf-fuzoku-34.t
+9658704b1a99643db9914e341ac23cbe  ./alt-cannadic/extra/gt-tankanji_okuri-std.t
+4541dd7f80bb3d20af6752b0d71b8dc7  ./alt-cannadic/extra/gt-tankanji_hikanji-34.t
+6b9d75afe80914b37a482c88d98c1603  ./alt-cannadic/extra/gt-tankanji_kanji-34.t
+74f02d731f6476fbdffd32f496387404  ./alt-cannadic/extra/README
+51402ec43eff52a6c83d5984ce148bda  ./alt-cannadic/extra/gc-fullname-34.t
+63fb5d1bd0bdab8a05caaeb5b9603688  ./alt-cannadic/README_utf.txt
+a42c6848def0b10ca4ae7a60d944f28c  ./alt-cannadic/sample/dict.args.in.utf8
+c4244f2de29b51c527b8a8ad7276b2eb  ./alt-cannadic/sample/dict.args.in.euc
+375e7dd955a1071eda32f1fe112918c3  ./alt-cannadic/gtankan.ctd
+b3340a37dfa935e8155fbe7adb59b9fb  ./alt-cannadic/g_fname.t
+2f7cb57459f10bfbc6181dcfa9fc86f0  ./alt-cannadic/gcanna.ctd
+6342598322a06240184fc324497db3b5  ./alt-cannadic/How-to-use.txt
+fc47c7b6e65156898f2dc4146c822b28  ./alt-cannadic/Makefile.in
+3b679d926e7b8063ce0e98a5d0c2c803  ./alt-cannadic/Makefile.am
+c93c0550bd3173f4504b2cbd8991e50b  ./alt-cannadic/COPYING
+086b8da5a251be943f06d3a927bbe60e  ./missing
+6cc7d68de8608094c660f86b98166c44  ./src-diclib/filemap.c
+916e26ba712f227140a2ab4ef411a037  ./src-diclib/ruleparser.c
+65c9fc7bfc63963e5f271e6415fdadc6  ./src-diclib/diclib_inner.h
+9e173e82a8c4d331abe65ddf0a2f6d0b  ./src-diclib/file_dic.c
+69e1e286ffc9e4e318d2c87b37364e11  ./src-diclib/diclib.c
+320f2f726523d5aa49615dae8fc9d943  ./src-diclib/xchar.c
+ef131c402875080a96af0343c715a61c  ./src-diclib/u2e.h
+d28a4530858645f4605b647e3321f9a0  ./src-diclib/alloc.c
+7b962f6421ca7865ac3cd272228bb8f1  ./src-diclib/xstr.c
+f37ddadc22ed71519fa4fcb27464552a  ./src-diclib/logger.c
+48219fcb3a8491e607d9661267cdbfbc  ./src-diclib/Makefile.in
+dc427f03083dd388a727a98a5bde198f  ./src-diclib/Makefile.am
+166667b1f7a669a5cf1d0704c897a4e1  ./src-diclib/e2u.h
+d9c878ed29ea18c3aedffbb99a86e86e  ./src-diclib/conf.c
+ee4d96f2a00d43f52a5f64bedb1ba39a  ./README.en
+b06d86e4ed9bb1d0666c0f84de53055c  ./Makefile.in
+32828e0f15b831b50dbb2c7503b8d89b  ./config.guess
+98312682443b415dc42558ee6c7f25a9  ./m4/ltoptions.m4
+057a003c14ef81b6c16d1dc54d491105  ./m4/ltsugar.m4
+665ef728f05b03734804931333632de4  ./m4/ltversion.m4
+78135c8ee1871483899bede0d5fbaef0  ./m4/as-version.m4
+977b5a5821f9013ef0cd54824d232a20  ./m4/libtool.m4
+42fc54566fd6a8055fad65f78f32960c  ./m4/lt~obsolete.m4
+7f06bdc6966b88911a72735248a1a84e  ./m4/Makefile.in
+bdb15d88b4d079b44457fc0e5bc1bfd1  ./m4/Makefile.am
+15b48b43db1b4d77eacd0b108a6fa87d  ./Makefile.am
+cbe0f343d0e4a404c00350e6406a5b3b  ./aclocal.m4
+5f37c94ff7ea73f8ed6ce61216611051  ./COPYING
+a6a946e5d0315a10182a808fc2f7d8fa  ./depgraph/ajv.depword
+0059bf9263bf9ab04f8027b3f8f771a6  ./depgraph/master.depword
+77df1fcbad9fb6e30d8e9ec334c6f3ab  ./depgraph/noun.depword
+903f2f699b6650a7953899a7825d3ced  ./depgraph/mkdepgraph.c
+4e5216ff72b5ea3973bc21c3b0202d1a  ./depgraph/noun-variant.depword
+a78d809a12f6a46e5600ed8706808958  ./depgraph/indepword.txt
+26c36ae425b7400316bae3e11dc20c63  ./depgraph/conjugate.table
+11f7999d62171b43bb47d41f4563a401  ./depgraph/a.depword
+4684f9ed9de4c3ff6e7a28ff5aa07c0e  ./depgraph/av.depword
+447a11dfc67dcc0beebec888e9eb50ce  ./depgraph/fix.depword
+4d5f0a43a22e79683dcc3e6ff0210899  ./depgraph/Makefile.in
+01d77bb62e9fcc83300fc6420233330c  ./depgraph/Makefile.am
+c9dc3e752938cb2b408d12a2b78db181  ./depgraph/conjugate.depword
+7605957100ffca6a40efacddbb1a48d1  ./depgraph/v.depword
+dd63184811cb2ff705c3e466364d3773  ./INSTALL
+b303cd6c990a7d2550ff59f4185684e3  ./calctrans/corpus_info
+dd1fc7109b986166a45ee01ab300d8f1  ./calctrans/calctrans.c
+052062b8635bf18259ef413af659fd5c  ./calctrans/input_set.h
+107cb79bebd092e263095b649c9b8209  ./calctrans/corpus.3.txt
+df150fe2753202ec2b83e5fdb3e61657  ./calctrans/proccorpus.c
+ee17371cce960c2acf321270f234c2d9  ./calctrans/input_set.c
+1d5d7b7320fefdec84c553caeb16b226  ./calctrans/weak_words
+d3ff080a4749d74dfe07649692033dcf  ./calctrans/corpus.1.txt
+897a9281165ab02e7579a5deb010c93e  ./calctrans/corpus.2.txt
+3ac630fda375ad6dd3bc6b10f5c79dc0  ./calctrans/corpus.4.txt
+23c5d9e0221cc0c1a05a53942b80d9f3  ./calctrans/corpus.0.txt
+3044b374e20212733ddafecb87a5805c  ./calctrans/corpus.5.txt
+1a0f847b42ed294e6ddd41fe97e39edd  ./calctrans/Makefile.in
+cca90af416428649028927a4459239b2  ./calctrans/Makefile.am
+b54a5bd5d27f88b1fccbc346176e532e  ./calctrans/corpus.c
diff --git a/debian/autoreconf.before b/debian/autoreconf.before
new file mode 100644
index 0000000..8b758c9
--- /dev/null
+++ b/debian/autoreconf.before
@@ -0,0 +1,215 @@
+e9ccf1307def0b5d68588bb12f31ae55  ./anthy/alloc.h
+ed46b11f5a22f2d87d2a2e45e385e60b  ./anthy/input.h
+2f33ef6151f66e087425bec2fd25e4f6  ./anthy/record.h
+7489061aec19e1bead1e8908923316e8  ./anthy/prediction.h
+fb9e94e1af11d326e4cf36be93647482  ./anthy/dicutil.h
+bab8feb947d4dbd52c656186c838b9e0  ./anthy/textdict.h
+6f6fc90f94c13fea2a31766f2b62c3d3  ./anthy/depgraph.h
+320ab688c66787028e9ca6b1ac5c4c19  ./anthy/splitter.h
+057ecdbf8a193ec7a29a26988c8bb497  ./anthy/convdb.h
+f0695a2280520a86f9a1863d62e64353  ./anthy/xstr.h
+6f4702959ea7b574dd06f72a086939e2  ./anthy/segment.h
+589e1e046f92d1ea3b4ab0aa4ceec03a  ./anthy/ruleparser.h
+b2357edf3f45eaef1a52c999325c9694  ./anthy/filemap.h
+96f676a241fb366e4f8d60a012520301  ./anthy/texttrie.h
+151696673e79e8ea1f5ec7780ea55197  ./anthy/anthy.h
+565aa77d1e9cbdddbd7b306271848678  ./anthy/conf.h
+b1b379922d94619fb21cb1018de47192  ./anthy/word_dic.h
+1db9100bf75cbaba825b5633665711e7  ./anthy/corpus.h
+2842b7f3225d7fcb60a5a200c496f5f6  ./anthy/matrix.h
+7d66a470764b234844a3189e051df1f8  ./anthy/diclib.h
+8a26e1c5427056a5072c78815f0b28cd  ./anthy/logger.h
+838d35b1b387ff7195e5e59e5b151fee  ./anthy/feature_set.h
+adad69810697953fb0c062875295d90a  ./anthy/xchar.h
+84ff81648428d488ac873a0abf5264a0  ./anthy/segclass.h
+719658fd0195c100ab3c1a2c9d9bf08b  ./anthy/dic.h
+533884f67d2750e08d0d6f170d6f14ed  ./anthy/Makefile.am
+b753cae9cc86e9b99945cd404e103175  ./anthy/wtype.h
+5b6dec227733df08fd5133cfc7847fcf  ./anthy/ordering.h
+1dbbcb8b46cf44d4123b3f1274a11d4d  ./ChangeLog-old
+d41d8cd98f00b204e9800998ecf8427e  ./ChangeLog
+6035211ea76a47ef95370d7a6ac136c0  ./mkanthydic/mkfiledic.c
+4bda1763d0cd31d9eb5a59d6cca03e9b  ./mkanthydic/Makefile.am
+93613907908d66d0697abd44d1c68c7e  ./anthy-unicode-test.conf.in
+c0c493f2c232677d39277d1183fbb732  ./src-util/egg.c
+e22f64462c5fe58c0e498cfeeedb2a83  ./src-util/anthy-unicode.el
+c4afaa2f8431492e4dac84f4123d05a4  ./src-util/convdb.c
+373f24ea079305cc9473df17da0f6e82  ./src-util/anthy-unicode-dic.el
+b6786744f3a6ff3ff05deb87ac938f76  ./src-util/input.c
+2f6e883bb96c07bbb821c5e8b987b75d  ./src-util/anthy-unicode-conf.el
+b2374c5b6b9543053a6655e87285dd2e  ./src-util/agent.c
+c3b75f68f0c8cb34b3836ea9dcd92fdb  ./src-util/anthy-unicode-kyuri.el
+677a2ffd9090c39ae56e594cd26ae979  ./src-util/typetab
+6b6695cf143dec6687e5f23b50df4fdc  ./src-util/anthy.i
+719e6874821c453fae2cd50f90d803e2  ./src-util/rkmap.h
+1ed74e7ad0bc8d3619f9e4f8903eb4fd  ./src-util/anthy-unicode-azik.el
+fc13e44d744a44299523d632837a5ad1  ./src-util/dic-tool.c
+175325072ed6a4089c9387152120bfb7  ./src-util/rkhelper.h
+48560b88af4c40b178b9a06d7357cc72  ./src-util/rkconv.c
+357decbe22f207e756b1f1b529756e5d  ./src-util/rkconv.h
+cdb61595d11b3f636c1ef77f61ba63cc  ./src-util/dic-tool-input
+e0a73389f989b5aa5a7eac02c89cff57  ./src-util/anthy-unicode-isearch.el
+613f5e962eebc2e1ce94f2ff6b1ef9ef  ./src-util/dic-tool-result
+06c3f7493b54d7f399bee63bdf20a30b  ./src-util/leim-list.el
+683c9dec6206bde6b28f60efff3d62da  ./src-util/dic-tool-usage.txt
+63468ae034adecfe8ee8339ad6093a05  ./src-util/Makefile.am
+3bf85a66147a7006bb253c49944ff6c9  ./src-util/morph-main.c
+0bbe82da4d3ad2691e83ae070704d6bb  ./src-util/rkhelper.c
+6cb8950c1cdc6d812c986c766552bdaf  ./doc/SPLITTER
+a421c5bf7b3be38f9d50f03204cabb2e  ./doc/GUIDE.english
+f656d12efc43d4e1dbd741c3522599ff  ./doc/GUIDE
+a58fafbf4e31528b926d2bb1bb0f8034  ./doc/LIB
+78040a0fead39ccc4f67232af899899f  ./doc/protocol.txt
+30bac1389b643c864a1968bb2663947a  ./doc/TESTING
+267f00260a82ee02db266ccdd2928013  ./doc/GRAMMAR
+45a7b875c1240e0985b8d65e669c5be4  ./doc/DICUTIL
+a57d70317b88b2ac4a630f774a84aac1  ./doc/POS
+494dc509014cc28bd68e0a663834e14b  ./doc/00INDEX
+bd2e774718fc9519a0632f628d381622  ./doc/LEARNING
+b01fbe73c7685e6b94d152aaea3b078f  ./doc/MISC
+df600ae91981cf69ae2a07117eb60f85  ./doc/DICLIB
+30cf54f08cd66ca22b3118ed2743e10d  ./doc/ELISP
+86670f20f878a250524745b3656a6cb7  ./doc/GLOSSARY
+302463e4f2bc34710a94a9b6d7882750  ./doc/ILIB
+f7ead24a51a830695279737668b2ad41  ./doc/Makefile.am
+84da3f3dd260ff69e4e730819674cc95  ./anthy-unicode.conf.in
+087f09b6c5e56d55388cb7e4d4ce3e8c  ./anthy-unicode.pc.in
+42ecc6790374e825e17b1f135afb2f97  ./autogen.sh
+a10abe2e99784a85fedd9b7bf823d69d  ./DIARY
+004929ec9af8e2a6aa29889d94fa98e5  ./Doxyfile
+e9f7b87447c66681dd017c46db6b2e01  ./mkworddic/dict.args.in
+7f88eeb7342473c67fc8e42f08311c24  ./mkworddic/zipcode.t
+f5c21dcc4d2f321ae64f7af06756883d  ./mkworddic/compound.t
+9d05e18477f66033909db98044988b46  ./mkworddic/udict
+73bde1d0137016f1e2963518f7823b69  ./mkworddic/calcfreq.c
+1f09222de23eb83298b2b210fb4df1a5  ./mkworddic/extra.t
+ac7f29a10f7a4e98d4b07b597966caaf  ./mkworddic/mkdic.c
+897ff52ed83d8e4e521218b33551f86d  ./mkworddic/mkudic.c
+f4efb7dcb14b04f18db55bb368d20fbc  ./mkworddic/base.t
+293bc589c9fc8ba43d55bd1e4e787d1b  ./mkworddic/adjust.t
+ea7b3179ce17c5236f2c00ae313cfe31  ./mkworddic/mkdic.h
+46e359980d780d315c1705de20f70ede  ./mkworddic/utf8.t
+1bd2751a59f0d4d75438789b25af716a  ./mkworddic/writewords.c
+e6c346dfb1a38054e67fd2c647672bc0  ./mkworddic/tankanji.t
+ea79366d936b44752cab8084d939a088  ./mkworddic/Makefile.am
+a09ed788e5cd8bee36895187d6e5f7d9  ./mkworddic/name.t
+180b307b0f2c50cd66683bc8ce12a846  ./.travis.yml
+b8760c2a220fc0d7f9f1ab8bba895034  ./src-main/context.c
+1b4846a4ad0f2e0290888922829da6c5  ./src-main/main.c
+9d1326766c1df309461d36ca4f4044e8  ./src-main/Makefile.am
+61e92518e760ef7d90b40563c8e81c87  ./src-main/main.h
+b21c4b9c1afb1d3a0c633ee00b1ceb22  ./src-ordering/sorter.h
+fbf41cf01c2863f4189ba4371fbb8216  ./src-ordering/relation.c
+9d937913a683ca094d1032f30e9579fc  ./src-ordering/commit.c
+8beeff991217be9067d689cee9cbb8ce  ./src-ordering/infosort.c
+5cb6a2a2d526ff9e4888f7cdb763f311  ./src-ordering/candsort.c
+fcd730e17560edebdf63430dfa12d2b8  ./src-ordering/candhistory.c
+3052dcbf3688e700c6e0866564311019  ./src-ordering/candswap.c
+c7f77385f56816f69ee836e8cb25ae24  ./src-ordering/Makefile.am
+b1340adf9d1aacbc024ec256469b541f  ./README
+b71435868067dcc3f977016d2a044080  ./src-worddic/ext_ent.c
+35c2943b4f3ffbfee1e24797929cda87  ./src-worddic/dic_personality.h
+a1b14edfa9e282bda135480fb81bbe8d  ./src-worddic/feature_set.c
+13483f6348d32791665ca1d6cfa2e64d  ./src-worddic/dic_main.h
+8c7c28d144f5a752344235f97546285e  ./src-worddic/dic_util.c
+12c9bb8c520b1f4f1a1ba053d1c192d2  ./src-worddic/texttrie.c
+b2b69acd7da6c6566ed1c4dcde9647d2  ./src-worddic/dic_ent.h
+047036cf16ef29fb6c3c9e12def34252  ./src-worddic/ptab.h
+2c3208da7d7688974a5a378770c74c34  ./src-worddic/word_lookup.c
+57dee65378f0763760b64a39b371aeb9  ./src-worddic/record.c
+ef6b061916bc284f08a50e7f99d12b45  ./src-worddic/wtab.h
+10c39beaf8cc31062270701990e6ebd1  ./src-worddic/wtype.c
+5fc7f2a349ca2a73667fb2a3a8de0c06  ./src-worddic/mem_dic.h
+ed5dbafb9f9762415d0cd7242078b5fc  ./src-worddic/mem_dic.c
+853e6b7ac7579183194c802c56d37d03  ./src-worddic/matrix.c
+0b7ac8b2884ce0ce41dd9a45c16a4fef  ./src-worddic/Makefile.am
+4b55ec0d46a63a36c7c6f0537f83e289  ./src-worddic/priv_dic.c
+04bab7259443821ec94c7c568dff5749  ./src-worddic/use_dic.c
+f332889275e29f9061378557a1853ccd  ./src-worddic/textdict.c
+22527165fcb416c1bfc95b872cd04736  ./src-worddic/word_dic.c
+0450471ea959ca0445b00fcd500edb9b  ./test/test.txt
+faaa904087888bc1073001c973d6c5e8  ./test/test.exp
+3032da4ae1adde371747169262ea87c9  ./test/prediction.c
+99483cb9bc9ad50ea7f08cde3ae7013f  ./test/check.c
+aa5689f89ea395b4b0201b060dc5e155  ./test/main.c
+7b314985dcaa9b0402a62b3ad8bed9ee  ./test/test-matrix.c
+e6ad30a0ec1902ea1d7c7b8bf3d20b35  ./test/Makefile.am
+6aa640f622e8d4e98ae7d5473c26bbfc  ./NEWS
+1230bca99b4d4b4a590ec6dad71fc0d4  ./configure.ac
+4792fafc2907ba72890021247b10b6bb  ./anthy-unicode.spec.in
+c640adfe40ed3e1a83b63092766ce97a  ./src-splitter/lattice.c
+78161d16c9c9a705e7f1d953fc4246bd  ./src-splitter/wordlist.c
+139f80bab1a8bf103b08825ecd9b108f  ./src-splitter/evalborder.c
+8a54ec6a3e3c6f3eb241bb1f6e4ad89a  ./src-splitter/compose.c
+72abd22a55d3d45592a2d3378eb5b520  ./src-splitter/splitter.c
+af122fb20d08bedabe246670d787c785  ./src-splitter/wordborder.h
+d2c72b9a610449fb9b9959ef0b8e38b9  ./src-splitter/Makefile.am
+04cdbcbc435173c62c2a85e10bfc5b6b  ./src-splitter/segclass.c
+a5bf0fdab55f8a3f751c4cc5ddd48eaa  ./src-splitter/metaword.c
+fc1cd0847a9eae26a45c9298edbb7b1a  ./src-splitter/depgraph.c
+f15a1acd61566d7c75d6814d162d8dbe  ./AUTHORS
+7e0942cb1c55b9b004568f1d3c46cd72  ./alt-cannadic/gcannaf.ctd
+c88b15ef0bc8d6bfad726f857d62231f  ./alt-cannadic/orig-README.ja
+a0f54dda7b90402403fb37b1376019da  ./alt-cannadic/Changes.txt
+9574e4ab6e562da8cc981202b469fb8c  ./alt-cannadic/extra/gt-tankanji_hikanji-uni.t
+6abd16f8efb0e826630f65a5e3f3370a  ./alt-cannadic/extra/g-jiritu-34.t
+fcc6519f162864205fbcecfb02e9bf18  ./alt-cannadic/extra/gf-fuzoku-34.t
+9658704b1a99643db9914e341ac23cbe  ./alt-cannadic/extra/gt-tankanji_okuri-std.t
+4541dd7f80bb3d20af6752b0d71b8dc7  ./alt-cannadic/extra/gt-tankanji_hikanji-34.t
+6b9d75afe80914b37a482c88d98c1603  ./alt-cannadic/extra/gt-tankanji_kanji-34.t
+74f02d731f6476fbdffd32f496387404  ./alt-cannadic/extra/README
+51402ec43eff52a6c83d5984ce148bda  ./alt-cannadic/extra/gc-fullname-34.t
+63fb5d1bd0bdab8a05caaeb5b9603688  ./alt-cannadic/README_utf.txt
+a42c6848def0b10ca4ae7a60d944f28c  ./alt-cannadic/sample/dict.args.in.utf8
+c4244f2de29b51c527b8a8ad7276b2eb  ./alt-cannadic/sample/dict.args.in.euc
+375e7dd955a1071eda32f1fe112918c3  ./alt-cannadic/gtankan.ctd
+b3340a37dfa935e8155fbe7adb59b9fb  ./alt-cannadic/g_fname.t
+2f7cb57459f10bfbc6181dcfa9fc86f0  ./alt-cannadic/gcanna.ctd
+6342598322a06240184fc324497db3b5  ./alt-cannadic/How-to-use.txt
+3b679d926e7b8063ce0e98a5d0c2c803  ./alt-cannadic/Makefile.am
+c93c0550bd3173f4504b2cbd8991e50b  ./alt-cannadic/COPYING
+6cc7d68de8608094c660f86b98166c44  ./src-diclib/filemap.c
+916e26ba712f227140a2ab4ef411a037  ./src-diclib/ruleparser.c
+65c9fc7bfc63963e5f271e6415fdadc6  ./src-diclib/diclib_inner.h
+9e173e82a8c4d331abe65ddf0a2f6d0b  ./src-diclib/file_dic.c
+69e1e286ffc9e4e318d2c87b37364e11  ./src-diclib/diclib.c
+320f2f726523d5aa49615dae8fc9d943  ./src-diclib/xchar.c
+ef131c402875080a96af0343c715a61c  ./src-diclib/u2e.h
+d28a4530858645f4605b647e3321f9a0  ./src-diclib/alloc.c
+7b962f6421ca7865ac3cd272228bb8f1  ./src-diclib/xstr.c
+f37ddadc22ed71519fa4fcb27464552a  ./src-diclib/logger.c
+dc427f03083dd388a727a98a5bde198f  ./src-diclib/Makefile.am
+166667b1f7a669a5cf1d0704c897a4e1  ./src-diclib/e2u.h
+d9c878ed29ea18c3aedffbb99a86e86e  ./src-diclib/conf.c
+ee4d96f2a00d43f52a5f64bedb1ba39a  ./README.en
+78135c8ee1871483899bede0d5fbaef0  ./m4/as-version.m4
+bdb15d88b4d079b44457fc0e5bc1bfd1  ./m4/Makefile.am
+15b48b43db1b4d77eacd0b108a6fa87d  ./Makefile.am
+5f37c94ff7ea73f8ed6ce61216611051  ./COPYING
+a6a946e5d0315a10182a808fc2f7d8fa  ./depgraph/ajv.depword
+0059bf9263bf9ab04f8027b3f8f771a6  ./depgraph/master.depword
+77df1fcbad9fb6e30d8e9ec334c6f3ab  ./depgraph/noun.depword
+903f2f699b6650a7953899a7825d3ced  ./depgraph/mkdepgraph.c
+4e5216ff72b5ea3973bc21c3b0202d1a  ./depgraph/noun-variant.depword
+a78d809a12f6a46e5600ed8706808958  ./depgraph/indepword.txt
+26c36ae425b7400316bae3e11dc20c63  ./depgraph/conjugate.table
+11f7999d62171b43bb47d41f4563a401  ./depgraph/a.depword
+4684f9ed9de4c3ff6e7a28ff5aa07c0e  ./depgraph/av.depword
+447a11dfc67dcc0beebec888e9eb50ce  ./depgraph/fix.depword
+01d77bb62e9fcc83300fc6420233330c  ./depgraph/Makefile.am
+c9dc3e752938cb2b408d12a2b78db181  ./depgraph/conjugate.depword
+7605957100ffca6a40efacddbb1a48d1  ./depgraph/v.depword
+b303cd6c990a7d2550ff59f4185684e3  ./calctrans/corpus_info
+dd1fc7109b986166a45ee01ab300d8f1  ./calctrans/calctrans.c
+052062b8635bf18259ef413af659fd5c  ./calctrans/input_set.h
+107cb79bebd092e263095b649c9b8209  ./calctrans/corpus.3.txt
+df150fe2753202ec2b83e5fdb3e61657  ./calctrans/proccorpus.c
+ee17371cce960c2acf321270f234c2d9  ./calctrans/input_set.c
+1d5d7b7320fefdec84c553caeb16b226  ./calctrans/weak_words
+d3ff080a4749d74dfe07649692033dcf  ./calctrans/corpus.1.txt
+897a9281165ab02e7579a5deb010c93e  ./calctrans/corpus.2.txt
+3ac630fda375ad6dd3bc6b10f5c79dc0  ./calctrans/corpus.4.txt
+23c5d9e0221cc0c1a05a53942b80d9f3  ./calctrans/corpus.0.txt
+3044b374e20212733ddafecb87a5805c  ./calctrans/corpus.5.txt
+cca90af416428649028927a4459239b2  ./calctrans/Makefile.am
+b54a5bd5d27f88b1fccbc346176e532e  ./calctrans/corpus.c
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..63b0ab9
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+anthy-unicode (1.0.0-1) noble; urgency=medium
+
+  * initial packaging
+
+ -- KDE neon <neon at kde.org>  Fri, 27 Sep 2024 11:22:33 +1000
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..98fbad9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,103 @@
+Source: anthy-unicode
+Section: utils
+Priority: optional
+Maintainer: Debian Input Method Team <debian-input-method at lists.debian.org>
+Uploaders: NOKUBI Takatsugu <knok at daionet.gr.jp>,
+           Hideki Yamane <henrich at debian.org>,
+           NIIBE Yutaka <gniibe at fsij.org>,
+           Osamu Aoki <osamu at debian.org>
+Build-Depends: dpkg-dev (>= 1.22.5),
+               debhelper-compat (= 13)
+Standards-Version: 4.6.2
+Vcs-Git: https://salsa.debian.org/debian/anthy.git -b debian
+Vcs-Browser: https://salsa.debian.org/debian/anthy/tree/debian
+Homepage: https://wiki.debian.org/Teams/DebianAnthy-unicode
+
+Package: anthy-unicode
+Architecture: any
+Depends: anthy-unicode-common,
+         libanthy-unicode-0t64 (= ${binary:Version}),
+         ${misc:Depends},
+         ${shlibs:Depends}
+Description: Japanese kana-kanji conversion - utilities
+ Anthy-unicode is kana-kanji conversion engine for Japanese.  It converts
+ hiragana text to mixed kana and kanji.  It is implemented as a library
+ and stores private information in ~/.anthy-unicode/.
+
+Package: anthy-unicode-common
+Architecture: all
+Multi-Arch: foreign
+Recommends: kasumi
+Depends: ${misc:Depends}
+Description: Japanese kana-kanji conversion - dictionary
+ Anthy-unicode is kana-kanji conversion engine for Japanese.  It converts
+ hiragana text to mixed kana and kanji.  It is implemented as a library
+ and stores private information in ~/.anthy-unicode/.
+ .
+ This package provides common dictionary data files.
+
+Package: anthy-unicode-el
+Section: lisp
+Architecture: all
+Depends: anthy-unicode, emacs24 | emacsen, ${misc:Depends}
+Conflicts: xemacs21-nomule
+Description: Japanese kana-kanji conversion - elisp frontend
+ Anthy-unicode is kana-kanji conversion engine for Japanese.  It converts
+ hiragana text to mixed kana and kanji.  It is implemented as a library
+ and stores private information in ~/.anthy-unicode/.
+ .
+ This package provides an Anthy-unicode frontend for Emacs.
+
+Package: libanthy-unicode-0t64
+Provides: ${t64:Provides}
+Section: libs
+Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Depends: anthy-unicode-common, ${misc:Depends}, ${shlibs:Depends}
+Description: Japanese kana-kanji conversion - runtime library
+ Anthy-unicode is kana-kanji conversion engine for Japanese.  It converts
+ hiragana text to mixed kana and kanji.  It is implemented as a library
+ and stores private information in ~/.anthy-unicode/.
+ .
+ This package provides runtime shared libraries for Anthy-unicode.
+
+Package: libanthy-unicode-dev
+Section: libdevel
+Architecture: any
+Multi-Arch: same
+Depends: libanthy-unicode-0t64 (= ${binary:Version}), ${misc:Depends}
+Description: Japanese kana-kanji conversion - runtime library
+ Anthy-unicode is kana-kanji conversion engine for Japanese.  It converts
+ hiragana text to mixed kana and kanji.  It is implemented as a library
+ and stores private information in ~/.anthy-unicode/.
+ .
+ This package provides the files necessary for compiling programs that
+ use Anthy-unicode.
+
+Package: libanthyinput-unicode-0t64
+Provides: ${t64:Provides}
+Section: libs
+Architecture: any
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
+Depends: ${misc:Depends}, ${shlibs:Depends}
+Description: Japanese kana-kanji conversion - runtime library for input
+ Anthy-unicode is kana-kanji conversion engine for Japanese.  It converts
+ hiragana text to mixed kana and kanji.  It is implemented as a library
+ and stores private information in ~/.anthy-unicode/.
+ .
+ This package provides shared library for input method.
+
+Package: libanthyinput-unicode-dev
+Section: libdevel
+Architecture: any
+Multi-Arch: same
+Depends: libanthyinput-unicode-0t64 (= ${binary:Version}), ${misc:Depends}
+Description: Japanese kana-kanji conversion - runtime library for input
+ Anthy-unicode is kana-kanji conversion engine for Japanese.  It converts
+ hiragana text to mixed kana and kanji.  It is implemented as a library
+ and stores private information in ~/.anthy-unicode/.
+ .
+ This package provides the files necessary for compiling programs that
+ use Anthy-unicode as an input method.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..a5a28ba
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,46 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: anthy-unicode
+Source: https://github.com/fujiwarat/anthy-unicode
+
+Files: *
+Copyright: 2001-2005, Yusuke Tabata <yusuke at kmc.gr.jp> and Project Heke
+           2002, 2005, 2010, 2015  NIIBE Yutaka <gniibe at fsij.org>
+License: LGPL-3+
+ Anthy is free software: you can redistribute it and/or modify it under
+ the terms of the GNU Lesser General Public License as published by the
+ Free Software Foundation, either version 3 of the License, or (at your
+ option) any later version.
+ .
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License can be found in `/usr/share/common-licenses/LGPL-3'.
+
+Files: alt-cannadic/*
+Comment: http://osdn.net/projects/alt-cannadic/
+         Based on Cannadic http://cannadic.oucrc.org/
+Copyright: 2000-2004, すぎもとまさお <sugimoto at oucrc.org>
+           2005-2007, vagus <vagus.xyz _at_ gmail.com>
+License: GPL-2
+
+Files: mkworddic/zipcode.t
+Copyright: 郵便事業株式会社 (Japan Post Service Co., Ltd.)
+License: public-domain
+ 使用・再配布・移植・改良について
+ 郵便事業株式会社は著作権を主張しません。自由に配布していただいて結構です。
+ .
+ (In English)
+ For use, redistribution, porting, and modification
+ It's public domain. It can be distributed freely.
+
+Files: debian/*
+Copyright: 2001-2007, Masahito Omote <omote at debian.org>
+           2007-2008, NOKUBI Takatsugu <knok at daionet.gr.jp>
+           2010-2013, Hideki Yamane <henrich at debian.org>
+License: GPL-2
+
+License: GPL-2
+ This package is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; version 2 of the License.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ can be found in `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..6f83607
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1,3 @@
+AUTHORS
+NEWS
+README
diff --git a/debian/libanthy-unicode-0t64.install b/debian/libanthy-unicode-0t64.install
new file mode 100644
index 0000000..d11e47e
--- /dev/null
+++ b/debian/libanthy-unicode-0t64.install
@@ -0,0 +1,2 @@
+usr/lib/*/libanthy-unicode.so.*
+usr/lib/*/libanthydic-unicode.so.*
diff --git a/debian/libanthy-unicode-dev.docs b/debian/libanthy-unicode-dev.docs
new file mode 100644
index 0000000..ba07d21
--- /dev/null
+++ b/debian/libanthy-unicode-dev.docs
@@ -0,0 +1 @@
+doc/GUIDE.english
diff --git a/debian/libanthy-unicode-dev.install b/debian/libanthy-unicode-dev.install
new file mode 100644
index 0000000..faae4fe
--- /dev/null
+++ b/debian/libanthy-unicode-dev.install
@@ -0,0 +1,7 @@
+usr/include/anthy-unicode-1.0/anthy/anthy.h
+usr/include/anthy-unicode-1.0/anthy/dicutil.h
+usr/lib/*/libanthy-unicode.a
+usr/lib/*/libanthy-unicode.so
+usr/lib/*/libanthydic-unicode.a
+usr/lib/*/libanthydic-unicode.so
+usr/lib/*/pkgconfig/anthy-unicode.pc
diff --git a/debian/libanthy-unicode0t64.lintian-overrides b/debian/libanthy-unicode0t64.lintian-overrides
new file mode 100644
index 0000000..6757e56
--- /dev/null
+++ b/debian/libanthy-unicode0t64.lintian-overrides
@@ -0,0 +1 @@
+package-name-doesnt-match-sonames libanthy-unicode-0 libanthydic-unicode-0
diff --git a/debian/libanthyinput-unicode-0t64.install b/debian/libanthyinput-unicode-0t64.install
new file mode 100644
index 0000000..b379267
--- /dev/null
+++ b/debian/libanthyinput-unicode-0t64.install
@@ -0,0 +1 @@
+usr/lib/*/libanthyinput-unicode.so.*
diff --git a/debian/libanthyinput-unicode-0t64.lintian-overrides b/debian/libanthyinput-unicode-0t64.lintian-overrides
new file mode 100644
index 0000000..5d4963a
--- /dev/null
+++ b/debian/libanthyinput-unicode-0t64.lintian-overrides
@@ -0,0 +1 @@
+libanthyinput-unicode-0t64: package-name-doesnt-match-sonames libanthyinput-unicode-0
diff --git a/debian/libanthyinput-unicode-dev.install b/debian/libanthyinput-unicode-dev.install
new file mode 100644
index 0000000..09cc7ac
--- /dev/null
+++ b/debian/libanthyinput-unicode-dev.install
@@ -0,0 +1,3 @@
+usr/include/anthy-unicode-1.0/anthy/input.h
+usr/lib/*/libanthyinput-unicode.a
+usr/lib/*/libanthyinput-unicode.so
diff --git a/debian/not-installed b/debian/not-installed
new file mode 100644
index 0000000..66bc198
--- /dev/null
+++ b/debian/not-installed
@@ -0,0 +1,3 @@
+usr/lib/${DEB_HOST_MULTIARCH}/libanthy-unicode.la
+usr/lib/${DEB_HOST_MULTIARCH}/libanthydic-unicode.la
+usr/lib/${DEB_HOST_MULTIARCH}/libanthyinput-unicode.la
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..76fc8b9
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+utf8_heartmark
diff --git a/debian/patches/utf8_heartmark b/debian/patches/utf8_heartmark
new file mode 100644
index 0000000..4b617f5
--- /dev/null
+++ b/debian/patches/utf8_heartmark
@@ -0,0 +1,10 @@
+Index: anthy-9100h/mkworddic/utf8.t
+===================================================================
+--- anthy-9100h.orig/mkworddic/utf8.t	2010-05-01 20:25:42.000000000 +0900
++++ anthy-9100h/mkworddic/utf8.t	2010-05-01 20:53:53.000000000 +0900
+@@ -2,4 +2,4 @@
+ # example of utf8 dictionary.
+ # please have a GETA ;-)
+ #
+-はーとまーく #T35 ❤
++はーとまーく #T35 ♡ ♥
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..78c6686
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+# Uncomment this to turn on verbose mode.
+ export DH_VERBOSE=1
+
+%:
+	dh $@
+
+override_dh_auto_configure:
+	dh_auto_configure -- --sysconfdir=/etc/anthy-unicode
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..a6cd508
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=4
+https://github.com/fujiwarat/anthy-unicode/tags .*/v?(\d.*)@ARCHIVE_EXT@


More information about the Neon-commits mailing list