debian/0000755000000000000000000000000012257412052007166 5ustar debian/compat0000644000000000000000000000000212144013427010362 0ustar 7 debian/rules0000755000000000000000000000443412257411413010253 0ustar #!/usr/bin/make -f #export DH_VERBOSE=1 export DEB_BUILD_MAINT_OPTIONS = hardening=+all dpkg_buildflags = DEB_BUILD_MAINT_OPTIONS=$(DEB_BUILD_MAINT_OPTIONS) dpkg-buildflags CFLAGS=$(shell $(dpkg_buildflags) --get CFLAGS) CPPFLAGS=$(shell $(dpkg_buildflags) --get CPPFLAGS) LDFLAGS=$(shell $(dpkg_buildflags) --get LDFLAGS) build-indep: build-arch: build-arch-stamp build-arch-stamp: dh_testdir dh_autotools-dev_updateconfig CFLAGS="$(CFLAGS) $(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" ./configure --prefix=/usr $(MAKE) touch $@ build: build-indep build-arch clean: dh_testdir dh_testroot rm -f build*-stamp [ ! -f Makefile ] || $(MAKE) distclean rm -f libtool stamp-* dh_autotools-dev_restoreconfig dh_clean install: build-arch dh_testdir dh_testroot dh_prep dh_installdirs $(MAKE) install prefix=$(CURDIR)/debian/skktools/usr dh_install debian/update-skkdic usr/sbin dh_install debian/skk2cdb usr/bin dh_install *.el usr/share/emacs/site-lisp for f in *.awk *.rb *.scm *.py \ convert2skk/*.pl \ convert2skk/*.rb \ convert2skk/*.sh \ convert2skk/*.awk \ convert2skk/*.sed \ convert2skk/adddummy \ convert2skk/list2skk \ convert2skk/pubdic2list \ convert2skk/removedummy \ convert2skk/skk2list \ dbm/makedbmdic* filters/*.rb; do \ touch "debian/skktools/usr/share/skktools/$${f}"; \ head -1 "$${f}" | grep '^#!' >/dev/null || \ case "$${f}" in \ *.awk) \ echo '#!/usr/bin/gawk -f' >>"debian/skktools/usr/share/skktools/$${f}" ;; \ *.sed) \ echo '#!/bin/sed -f' >>"debian/skktools/usr/share/skktools/$${f}" ;; \ esac; \ LC_ALL=C perl -pe 's!/usr/local!/usr!g;s!bin/jperl[0-9]?!bin/perl!g;s!"qkc"!"nkf -e" #"qkc"!g' "$${f}" >>"debian/skktools/usr/share/skktools/$${f}"; \ chmod 755 "debian/skktools/usr/share/skktools/$${f}"; \ done cp convert2skk/README debian/skktools/usr/share/doc/skktools/README.convert2skk cp READMEs/read.me debian/skktools/usr/share/doc/skktools/README.jperl binary-indep: binary-arch: install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs dh_installman dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build-indep build-arch build clean binary-indep binary-arch binary install debian/manpages0000644000000000000000000000017612144013424010703 0ustar debian/skkdic-count.1 debian/skkdic-expr.1 debian/skkdic-expr2.1 debian/skkdic-sort.1 debian/skk2cdb.1 debian/update-skkdic.8 debian/skkdic-count.10000644000000000000000000000120012144013422011630 0ustar .TH SKKDIC-COUNT 1 .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME skkdic-count \- count entries in skk dictionary files .SH SYNOPSIS .B skkdic-count .I "[file] ..." .SH "DESCRIPTION" This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. .PP .B skkdic-count is a program that counts entries in each .B file. With no .B file, read standard input. .SH AUTHOR This manual page was written by Takao KAWAMURA , for the Debian GNU/Linux system (but may be used by others). debian/README.Debian0000644000000000000000000000067012172240640011230 0ustar skktools for Debian ------------------- The C programs are installed into `/usr/bin'. skk-xml.el is installed into `/usr/share/emacs/site-lisp'. The scripts *.py *.rb, *.scm, *.awk, convert2skk/*, dbm/* and filters/* are installed into `/usr/share/skktools'. Also, this Debian package provides the commands `update-skkdic' and `skk2cdb'. See also the manpages. -- Tatsuya Kinoshita , Fri, 19 Jul 2013 22:39:38 +0900 debian/skk2cdb0000644000000000000000000000164312144013424010433 0ustar #!/bin/sh # skk2cdb: convert SKK dictionary file to cdb # Author: Tatsuya Kinoshita # Unlimited permission is granted to use, copy, distribute and/or modify # this file. There is NO WARRANTY. set -e if [ $# -gt 2 ]; then echo "usage: ${0##*/} [ SKK-JISYO [SKK-JISYO-CDB]]" >&2 exit 1 fi CDB="`which cdb`" || CDB="" if [ -z "$CDB" ]; then echo "${0##*/}: tinycdb's cdb command not found" >&2 exit 1 fi INFILE="$1" OUTFILE="$2" if [ -z "$INFILE" ]; then INFILE=/dev/stdin fi if [ -z "$OUTFILE" ]; then OUTFILE=/dev/stdout fi trap 'rm -f "$TMPFILE" "$TMPFILE2"' EXIT INT TERM TMPFILE=`tempfile -p skk_ -s .tmp` TMPFILE2=`tempfile -p skk_ -s .tmp.cdb` LC_ALL=C awk ' /^[^;]/ { s = substr($0, index($0, " ") + 1) print "+" length($1) "," length(s) ":" $1 "->" s } END { print "" } ' "$INFILE" | "$CDB" -c -t "$TMPFILE" "$TMPFILE2" cat "$TMPFILE2" > "$OUTFILE" exit 0 debian/copyright0000644000000000000000000001135112172240421011115 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: SKK Tools Source: http://openlab.jp/skk/tools/ Files: * Copyright: 2001-2002, SKK Development Team 1994-2002, Hironobu Takahashi, Masahiko Sato, Kiyotaka Sakai, Kenji Yabuuchi 2005-2006, MITA Yuusuke 1998-2003, NAKAJIMA Mikio 2003-2004, Kimura Fuyuki 2002 Kentaro Fukuchi License: GPL-2+ This program 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; either version 2 of the License, or (at your option) any later version. . On Debian systems, the complete text of the GNU General Public License, version 2, can be found in `/usr/share/common-licenses/GPL-2'. Files: skk2cdb.py Copyright: 2010, Yusuke Shinyama License: public-domain by Yusuke Shinyama * public domain * Files: config.guess config.sub Copyright: 1992-2013, Free Software Foundation, Inc. License: GPL-3+ with Autoconf exception This file 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; either version 3 of the License, or (at your option) any later version. . On Debian systems, the complete text of the GNU General Public License, version 3, can be found in `/usr/share/common-licenses/GPL-3'. . As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. This Exception is an additional permission under section 7 of the GNU General Public License, version 3 ("GPLv3"). Files: compile depcomp missing Copyright: 1996-2013, Free Software Foundation, Inc. License: GPL-2+ with Autoconf exception This program 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; either version 2, or (at your option) any later version. . As a special exception to the GNU General Public License, if you distribute this file as part of a program that contains a configuration script generated by Autoconf, you may include it under the same distribution terms that you use for the rest of that program. Files: ltmain.sh Copyright: 1996-2011, Free Software Foundation, Inc. License: GPL-2+ with Libtool exception GNU Libtool 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; either version 2 of the License, or (at your option) any later version. . As a special exception to the GNU General Public License, if you distribute this file as part of a program or library that is built using GNU Libtool, you may include this file under the same distribution terms that you use for the rest of that program. Files: install-sh Copyright: 1994, X Consortium License: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. . Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other deal- ings in this Software without prior written authorization from the X Consor- tium. Files: configure Copyright: 1992-2010, Free Software Foundation, Inc. License: This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. Files: debian/* Copyright: 2006-2013, Tatsuya Kinoshita 2006, Matej Vela 2000-2003, Takao KAWAMURA License: The Debian packaging is distributed under the same conditions as the upstream. debian/skkdic-expr.10000644000000000000000000000174312144013422011472 0ustar .TH SKKDIC-EXPR 1 .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME skkdic-expr \- manipulate skk dictionaries .SH SYNOPSIS .B skkdic-expr .I "[-d dir] [-o file] [-O] jisho1 {+-} jisho2 ..." .SH "DESCRIPTION" This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. .PP .B skkdic-expr is a program that merges/subtracts dictionary files. .SH OPTIONS .TP .B \-d dir Use .B dir as a temporary directory instead of /tmp. .TP .B \-o file Output the result to .B file instead of standard output. .TP .B \-O Leave "okurigana" entries in the result. .SH EXAMPLES .TP .B skkdic-expr jisho1 + jisho2 - jisho3 Merge entries in jisho1 and in jisho2, remove entries in jisho3, and print the result to standard output. .SH AUTHOR This manual page was written by Takao KAWAMURA , for the Debian GNU/Linux system (but may be used by others). debian/update-skkdic.80000644000000000000000000000146212144013422012003 0ustar .TH UPDATE-SKKDIC 8 .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME update-skkdic \- make a local skk dictionariy .SH SYNOPSIS .B update-skkdic .I [-c] dictionary... .br .B update-skkdic .I -d .br .B update-skkdic .I -u .SH "DESCRIPTION" .B update-skkdic is a program that make a local SKK dictionary as /usr/share/skk/SKK-JISYO.local and install the alternative for SKK-JISYO or SKK-JISYO.cdb. .SH OPTIONS .TP .B \-c Make a cdb style dictionary as /usr/share/skk/SKK-JISYO.local.cdb. .TP .B \-d Remove the alternative for SKK-JISYO or SKK-JISYO.cdb. .TP .B \-u Only Install the alternative for SKK-JISYO or SKK-JISYO.cdb. .SH AUTHOR This manual page was written by Takao KAWAMURA , for the Debian GNU/Linux system. debian/skk2cdb.10000644000000000000000000000162712144013424010574 0ustar .TH SKK2CDB 1 .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME skk2cdb \- convert SKK dictionary file to cdb .SH SYNOPSIS .B skk2cdb [SKK-JISYO [SKK-JISYO-CDB]] .SH DESCRIPTION skk2cdb converts SKK dictionary plain text file to cdb (DJB's constant database) from standard input (or SKK-JISYO) to standard output (or SKK-JISYO-CDB). .PP This command requires tinycdb's `cdb' command. .SH EXAMPLES .SS Convert SKK-JISYO.foobar to SKK-JISYO.foobar.cdb .na .nf skk2cdb < SKK-JISYO.foobar > SKK-JISYO.foobar.cdb or skk2cdb SKK-JISYO.foobar SKK-JISYO.foobar.cdb .fi .ad .SH BUGS This command is provided by Debian. It is not integrated in the upstream source. .\" This manual page is written by Tatsuya Kinoshita . .\" Unlimited permission is granted to use, copy, distribute and/or modify .\" this file. There is NO WARRANTY. debian/control0000644000000000000000000000217312257411553010601 0ustar Source: skktools Section: utils Priority: optional Maintainer: Tatsuya Kinoshita Build-Depends: debhelper (>= 7), libdb-dev, libglib2.0-dev, pkg-config, autotools-dev (>= 20100122) Homepage: http://openlab.jp/skk/ Vcs-Git: git://anonscm.debian.org/collab-maint/skktools.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/skktools.git Standards-Version: 3.9.5 Package: skktools Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Recommends: tinycdb Replaces: skk-dictools Conflicts: skk-dictools Suggests: skkdic, skkdic-extra, emacs | emacsen, gawk, python, ruby | ruby-interpreter, gauche, chasen, mecab, kakasi, nkf, w3m Description: SKK dictionary maintenance tools This package provides tools to maintain dictionary files for SKK Japanese input systems. . SKK dictionary files are provided by the skkdic package and the skkdic-extra package. You can make a local dictionary file from them. . If you want to convert a dictionary file to cdb (DJB's constant database), install the tinycdb package. To use the optional scripts, install the required tools, such as gawk, ruby, gauche, etc. debian/watch0000644000000000000000000000007512144013427010217 0ustar version=3 http://openlab.jp/skk/tools/skktools-(.*)\.tar\.gz debian/docs0000644000000000000000000000021212144013424010027 0ustar README READMEs/FAQ.txt READMEs/README.C READMEs/README.filters READMEs/README.perl READMEs/README.skkdic-diff READMEs/README.skkdic-expr2 debian/dirs0000644000000000000000000000015012144013424010041 0ustar usr/share/doc/skktools usr/share/skktools/convert2skk usr/share/skktools/dbm usr/share/skktools/filters debian/source/0000755000000000000000000000000012144013427010464 5ustar debian/source/format0000644000000000000000000000001412144013427011672 0ustar 3.0 (quilt) debian/skkdic-expr2.10000644000000000000000000000175012144013422011552 0ustar .TH SKKDIC-EXPR2 1 .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME skkdic-expr2 \- manipulate skk dictionaries .SH SYNOPSIS .B skkdic-expr2 .I "[-d dir] [-o file] [-O] jisho1 {+-} jisho2 ..." .SH "DESCRIPTION" This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. .PP .B skkdic-expr2 is a program that merges/subtracts dictionary files. .SH OPTIONS .TP .B \-d dir Use .B dir as a temporary directory instead of /tmp. .TP .B \-o file Output the result to .B file instead of standard output. .TP .B \-O Leave "okurigana" entries in the result. .SH EXAMPLES .TP .B skkdic-expr2 jisho1 + jisho2 - jisho3 Merge entries in jisho1 and in jisho2, remove entries in jisho3, and print the result to standard output. .SH AUTHOR This manual page was written by Takao KAWAMURA , for the Debian GNU/Linux system (but may be used by others). debian/update-skkdic0000644000000000000000000000375712144013424011650 0ustar #!/bin/bash skkdir=/usr/share/skk base=SKK-JISYO suffix=local file="$skkdir/$base.$suffix" priority=100 #### print usage and exit. #### never return usage () { echo "Usage: $0 [-c] dictionary... (Merge dictionaries) $0 -d (update-alternatives --remove) $0 -u (update-alternatives --install)" 1>&2 exit 1 } #### read a dictionary from stdin, write a cdb-style dictionary to $1. cdb () { CDB="`which cdb`" || CDB="" if [[ -z "$CDB" ]]; then echo "${0##*/}: tinycdb's cdb command not found" >&2 exit 1 fi tmpf=`tempfile -p skk_ -d "$skkdir"` trap "if [[ -e "$tmpf" ]]; then rm "$tmpf"; exit 1; fi" EXIT INT TERM LC_ALL=C awk ' /^[^;]/ { s = substr($0, index($0, " ") + 1) print "+" length($1) "," length(s) ":" $1 "->" s } END { print "" } ' | "$CDB" -c -t $tmpf $1 } #### merge $* into a dictionary make_dic () { if [[ $cdb == ".cdb" ]]; then tailcmd="|$0 __CDB__ $file" else tailcmd=">|$file" fi bash -c "skkdic-expr `(echo \"$@\" | sed 's/ / + /g' )` | skkdic-sort $tailcmd" if [[ ! -f $file ]]; then echo "${0##*/}: cannot create $file" >&2 exit 1 fi chmod 644 $file } #### update-alternatives --install #### never return update () { exec update-alternatives --install $skkdir/$base$cdb $base$cdb $file $priority } #### MAIN if [[ $1 == __CDB__ ]]; then # called by myself cdb $2 exit 0 fi cdb="" set -- `getopt cduh "$@"` for i; do case "$i" in -c ) cdb=".cdb"; file=$file$cdb; shift;; -d ) exec update-alternatives --remove $base$cdb $file;; -u ) update;; -h ) usage;; -- ) shift; break;; esac done if (( $# == 0 )); then usage fi for i; do if [[ ! -f $i ]]; then echo "$0: $i: can't open." 1>&2 exit 1 fi done if [[ ! -w $skkdir ]]; then echo "$0: $skkdir: can't write. Are you root?" 1>&2 exit 1 fi make_dic "$@" update debian/skkdic-sort.10000644000000000000000000000116312144013424011501 0ustar .TH SKKDIC-SORT 1 .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection .\" other parms are allowed: see man(7), man(1) .SH NAME skkdic-sort \- sort skk dictionary .SH SYNOPSIS .B skkdic-sort .SH "DESCRIPTION" This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. .PP .B skkdic-sort is a program that reads an skk dictionary from standard input and prints a sorted dictionary to standard output. .SH AUTHOR This manual page was written by Takao KAWAMURA , for the Debian GNU/Linux system (but may be used by others). debian/changelog0000644000000000000000000001705012257411625011050 0ustar skktools (1.3.3-2) unstable; urgency=low * Use autotools-dev to update config.* at build time * Update Standards-Version to 3.9.5 -- Tatsuya Kinoshita Sat, 28 Dec 2013 08:55:58 +0900 skktools (1.3.3-1) unstable; urgency=low * Imported Upstream version 1.3.3 * Remove debian/patches (merged upstream) * Update README.Debian (skk2cdb.py is merged upstream) * Update debian/copyright -- Tatsuya Kinoshita Fri, 19 Jul 2013 22:47:32 +0900 skktools (1.3.2-5) unstable; urgency=low * New patch 050_libtool.patch for arm64 -- Tatsuya Kinoshita Sat, 13 Jul 2013 19:44:39 +0900 skktools (1.3.2-4) unstable; urgency=low * Do not depend on ruby1.8 * New patch 030_Rescue-LoadError-of-jcode-for-Ruby-1.9.patch * New patch 040_Add-magic-comment-for-Ruby-1.9.patch * Add Vcs-Git and Vcs-Browser * Update debian/copyright * Update Standards-Version to 3.9.4 -- Tatsuya Kinoshita Thu, 23 May 2013 22:27:21 +0900 skktools (1.3.2-3) unstable; urgency=low * debian/rules: Use dpkg-buildflags to support hardening flags * debian/copyright: Update copyright-format version to 1.0 * debian/control: Update Standards-Version to 3.9.3 -- Tatsuya Kinoshita Sun, 08 Jul 2012 15:02:40 +0900 skktools (1.3.2-2) unstable; urgency=low * debian/patches/010_makedbmdic5.patch: Transition to Perl 5.16 for makedbmdic5. (closes: #659427) * debian/rules: New targets build-arch and build-indep. * debian/copyright: Updated. -- Tatsuya Kinoshita Sun, 12 Feb 2012 13:26:38 +0900 skktools (1.3.2-1) unstable; urgency=low * New upstream release. * debian/patches/010_upstream.patch: Removed. * debian/copyright: Switch to the DEP-5 format. -- Tatsuya Kinoshita Sun, 17 Apr 2011 23:33:42 +0900 skktools (1.3.1-3) unstable; urgency=low * Migration for libdb5.1. (closes: #621399) * debian/patches/010_upstream.patch: Upstream development snapshot on 2011-04-10. * debian/patches/020_skk2cdb-py.patch: New file skk2cdb.py, dictionary convertion tool written with Python, downloaded from upstream. It is not part of skk/tools, but fit for this Debian package. * debian/rules: - Use ruby1.8 for the ruby scripts with the -K option. - Install *.py in /usr/share/skktools. - Prevent redundant output of grep. * debian/control: - Add ${misc:Depends} to Depends. - Add python and ruby1.8 to Suggests. - Update Standards-Version to 3.9.2. * README.Debian: Updated for skk2cdb.py. * debian/copyright: Updated. * Switch to dpkg-source 3.0 (quilt) format. -- Tatsuya Kinoshita Mon, 11 Apr 2011 00:57:26 +0900 skktools (1.3.1-2) unstable; urgency=low * debian/control: - Change Depends to libdb-dev from libdb4.6-dev. - Move Homepage from Description to the header. - Update Standards-Version to 3.8.2. * debian/rules: - Use dh_prep instead of `dh_clean -k'. - Set LC_ALL=C for sed. * compile, config.sub, config.guess, depcomp, install-sh, ltmain.sh, missing: Updated from libtool 2.2.6a-4 and autotools-dev 20090611.1. * debian/rules, debian/control: Remove autotools-dev dependency. * debian/compat, debian/control: Update debhelper version to 7. * debian/copyright: Updated. -- Tatsuya Kinoshita Sun, 26 Jul 2009 08:29:27 +0900 skktools (1.3.1-1) unstable; urgency=low * New upstream release. * debian/copyright, debian/watch: Replace "openlab.ring.gr.jp" with "openlab.jp". -- Tatsuya Kinoshita Mon, 01 Oct 2007 01:27:04 +0900 skktools (1.3-2) unstable; urgency=low * skkdic-expr2.c: Fix cast from pointer to int. (Thanks to MATSUU Takuto, [skk 6762] on 2007-09-22) -- Tatsuya Kinoshita Sat, 22 Sep 2007 21:00:46 +0900 skktools (1.3-1) unstable; urgency=low * New upstream release. -- Tatsuya Kinoshita Sat, 22 Sep 2007 09:40:58 +0900 skktools (1.2+0.20061004-3) unstable; urgency=high * skkdic-expr.c: - Create a temporary subdirectory safely. [CVE-2007-3916] - Use snprintf() instead of sprintf(). * debian/control: Build-depends libdb4.6-dev instead of libdb4.3-dev. (closes: #442670) -- Tatsuya Kinoshita Tue, 18 Sep 2007 21:04:47 +0900 skktools (1.2+0.20061004-2) unstable; urgency=low * debian/rules: Use /usr/bin/gawk instead of /usr/bin/awk for *.awk scripts. (closes: #430544) * debian/control: - Add gawk to Suggests and Description. - Prefer emacs to emacs21. * debian/copyright: Update copyright years. -- Tatsuya Kinoshita Tue, 26 Jun 2007 21:11:36 +0900 skktools (1.2+0.20061004-1) unstable; urgency=low * New upstream release. (CVS trunk on 2006-10-04) * debian/rules: Use "nkf -e" instead of "qkc" for `doc2skk.sh'. * debian/skkdic-sort.1: Typo fix. * debian/skk2cdb: Put $OUTFILE in double quotes. * debian/control (Suggests): Add required packages for `doc2skk.sh', `chasen, mecab, kakasi, nkf, w3m'. * debian/control (Description): Revised. * debian/copyright: Updated. -- Tatsuya Kinoshita Thu, 5 Oct 2006 20:44:11 +0900 skktools (1.2-3) unstable; urgency=low * Install the scripts *.rb, *.scm, *.awk, convert2skk/*, dbm/* and filters/* into `/usr/share/skktools'. * Install *.el into `/usr/share/emacs/site-lisp'. * Install new command `debian/skk2cdb' and the manpage. * Don't contain `convert2skk/obsolete/skkconv.t'. * debian/update-skkdic (cdb): Use tinycdb's cdb command instead of the cdbmake command. * debian/update-skkdic (cdb): Remove a temporary file when EXIT. * debian/update-skkdic (cdb): Set LC_ALL to C for awk. * debian/update-skkdic (make_dic): Display an error message if the file cannot be created. * debian/control (Recommends): Add `tinycdb'. * debian/control (Suggests): Add `ruby, gauche, emacs21 | emacsen'. * debian/control (Description): Revised. * debian/README.Debian: New file. * debian/copyright: Revised. -- Tatsuya Kinoshita Sun, 10 Sep 2006 20:45:56 +0900 skktools (1.2-2) unstable; urgency=low * New maintainer. (closes: #353633) * debian/rules: Backup upstream's config.sub and config.guess. * debian/rules (clean): Remove libtool and stamp-*. * debian/copyright: Clarify copyright holders. * debian/control (Description): Typo fix. * debian/control (Standards-Version): 3.6.2 -> 3.7.2. -- Tatsuya Kinoshita Sat, 22 Jul 2006 00:34:54 +0900 skktools (1.2-1) unstable; urgency=low * QA upload. * New upstream release. * Package is orphaned (#353633); set maintainer to Debian QA Group. * Link against libdb4.3 to match skksearch. Closes: #289309. * Automatically update config.sub and config.guess from autotools-dev. Closes: #342449. * Switch to debhelper 5. * debian/changelog: Remove obsolete Emacs local variables. * debian/rules: Add support for DEB_BUILD_OPTIONS=noopt. * debian/watch: Add. * Conforms to Standards version 3.6.2. -- Matej Vela Sun, 9 Apr 2006 12:15:36 +0200 skktools (1.1-1) unstable; urgency=low * New upstream release. * Fixed the extended description. (Closes: Bug#209892) -- Takao KAWAMURA Thu, 18 Sep 2003 15:31:09 +0900 skktools (1.0-2) unstable; urgency=low * Build-Depends: libdb3-dev. (Closes: Bug#100789) -- Takao KAWAMURA Sat, 16 Jun 2001 23:31:56 +0900 skktools (1.0-1) unstable; urgency=low * Initial Release. * Renamed from skk-dictools. -- Takao KAWAMURA Sun, 10 Dec 2000 09:48:42 +0900