Hiroyuki Komatsu
komat****@users*****
2005年 3月 29日 (火) 11:07:09 JST
Index: suikyo/ChangeLog diff -u suikyo/ChangeLog:1.18 suikyo/ChangeLog:1.19 --- suikyo/ChangeLog:1.18 Tue Mar 8 16:49:36 2005 +++ suikyo/ChangeLog Tue Mar 29 11:07:09 2005 @@ -1,3 +1,9 @@ +2005-03-29 Hiroyuki Komatsu <komat****@taiya*****> + + * Suikyo 2.1.0: + - Modified the Ruby implementation for PRIME 1.1.0. + - Modified the AZIK table. + 2005-03-08 Masaki Yatsu <yatsu****@yatsu*****> * conv-table/azik: Index: suikyo/configure.ac diff -u suikyo/configure.ac:1.18 suikyo/configure.ac:1.19 --- suikyo/configure.ac:1.18 Mon Jan 17 00:11:22 2005 +++ suikyo/configure.ac Tue Mar 29 11:07:09 2005 @@ -1,5 +1,5 @@ dnl configure.in: Creates a configure script for suikyo. -dnl $Id: configure.ac,v 1.18 2005/01/16 15:11:22 komatsu Exp $ +dnl $Id: configure.ac,v 1.19 2005/03/29 02:07:09 komatsu Exp $ dnl dnl Copyright (C) 2003, 2004 Hiroyuki Komatsu <komat****@taiya*****> dnl All rights reserved. @@ -9,14 +9,14 @@ dnl the GNU General Public License version 2. # Process this file with autoconf to produce a configure script. -AC_INIT(suikyo, 2.0.1.2, komat****@taiya*****, +AC_INIT(suikyo, 2.1.0, komat****@taiya*****, [SUIKYO - Romaji-Kana conversion library]) AC_PREREQ(2.53) AM_INIT_AUTOMAKE($PACKAGE_NAME, $PACKAGE_VERSION) # AM_MAINTAINER_MODE AC_INIT_DEFAULT_VALUES -AC_SUBST(DATE, "2005-01-16") +AC_SUBST(DATE, "2005-03-29") MY_AC_PROG_RUBY Index: suikyo/missing diff -u suikyo/missing:1.2 suikyo/missing:1.3 --- suikyo/missing:1.2 Tue Jan 11 04:19:51 2005 +++ suikyo/missing Tue Mar 29 11:07:09 2005 @@ -1,9 +1,9 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2004-09-07.08 +scriptversion=2005-02-08.22 -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004 +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard <pinar****@iro*****>, 1996. @@ -87,12 +87,12 @@ yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to <bug-a****@gnu*****>." - exit 0 + exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" - exit 0 + exit $? ;; -*) @@ -288,10 +288,14 @@ call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then - file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` - file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi touch $file ;;