*** empty log message *** REL-2-0-0alpha
authorhanda <handa>
Wed, 31 Mar 2010 04:21:05 +0000 (04:21 +0000)
committerhanda <handa>
Wed, 31 Mar 2010 04:21:05 +0000 (04:21 +0000)
ChangeLog
NEWS
README
m17n-config.in [deleted file]
m17n-core.pc.in [deleted file]
m17n-flt.pc.in [deleted file]
m17n-gui.pc.in [deleted file]
m17n-shell.pc.in [deleted file]

index eeee295..ec37a09 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2010-03-31  Kenichi Handa  <handa@m17n.org>
 
+       * Version 2.0.0 released.
+
        * configure.ac: Change version to 2.0.0.
        (M17N_BINARY_VERSION): AC_SUBST it.
        (AC_CONFIG_FILES): Change *.pc to *-2.0.pc.
diff --git a/NEWS b/NEWS
index ea5508d..5c295ad 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -5,6 +5,11 @@ Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
 See the end for copying conditions.
 
 \f
+* Changes in the m17n library 2.0.0
+
+** Load XML files of m17n-db-2.0.0.
+
+\f
 * Changes in the m17n library 1.5.5
 
 ** Now libtool 2.2.4 or the later is required to build the library
diff --git a/README b/README
index 16904ba..40d6667 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This directory tree holds version 1.6.0 of the m17n library.   -*- text -*-
+This directory tree holds version 2.0.0 of the m17n library.   -*- text -*-
 
 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
   National Institute of Advanced Industrial Science and Technology (AIST)
@@ -9,6 +9,8 @@ The m17n library is a multilingual text processing library for the C
 language.
 
 
+This version is still in ALPHA stage, very experimental.
+
 (1) INSTALLATION
 
 (1-1) From CVS working directory.
@@ -64,25 +66,25 @@ Thus, these header files are installed in /usr/local/include:
        m17n-core.h, m17n.h, m17n-gui.h, m17n-err.h, m17n-X.h, m17n-flt.h
 
 These library files are installed in /usr/local/lib:
-       libm17n-core.{a,so*,la}
-       libm17n.{a,so*,la}
-       libm17n-gui.{a,so*,la}
-       libm17n-flt.{a,so*,la}
+       libm17n-core-2.0.{a,so*,la}
+       libm17n-2.0.{a,so*,la}
+       libm17n-gui-2.0.{a,so*,la}
+       libm17n-flt-2.0.{a,so*,la}
 
-These modules are installed in /usr/local/lib/m17n/1.0:
+These modules are installed in /usr/local/lib/m17n/2.0:
        libm17n-X.{a,so*,la}
        libm17n-gd.{a,so*,la}
        libimx-anthy.{a,so*,la},
        libimx-ispell.{a,so*,la},
 
 This shell script is installed in /usr/local/bin:
-       m17n-config
+       m17n-config-2.0
 
 These pkgconfig metadata files are installed in
 /usr/local/lib/pkgconfig:
-       m17n-core.pc, m17n-shell.pc, m17n-flt.pc, m17n-gui.pc
+       m17n-core-2.0.pc, m17n-shell-2.0.pc, m17n-flt-2.0.pc, m17n-gui-2.0.pc
 
-These sample programs are installed in /usr/local/bin too:
+These sample programs are not installed.
        m17n-conv, m17n-date, m17n-view, m17n-dump, m17n-edit
 
 If you don't need GUI libraries (libm17n-gui.so and etc.), you can
diff --git a/m17n-config.in b/m17n-config.in
deleted file mode 100644 (file)
index f69517c..0000000
+++ /dev/null
@@ -1,144 +0,0 @@
-#!/bin/sh
-# m17n-config -- helper script for the m17n library.   -*- coding: euc-jp; -*-
-# Copyright (C) 2003, 2004, 2006, 2007
-#   National Institute of Advanced Industrial Science and Technology (AIST)
-#   Registration Number H15PRO112
-# See the end for copying conditions.
-
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-
-help ()
-{
-  echo "Usage: $0 [API-LEVEL ...] [--version | --cflags | --libs | --libtool]"
-  echo "  API-LEVEL is CORE, SHELL (default), GUI, or FLT"
-}
-
-if test $# -eq 0; then
-  help 1>&2
-  exit 0
-fi
-
-while true; do
-case $1 in
-CORE) if test "x$API" = "x"; then 
-        API="CORE"; LIBTOOLNAME="m17n-core";
-      fi;
-      shift;;
-
-SHELL) if test "x$API" != "xGUI"; then
-         API="FLT"; LIBSHELL=" -lm17n"
-         if test "x$LIBFLT" = "x"; then
-           LIBTOOLNAME="m17n";
-         else
-           LIBTOOLNAME="m17n m17n-flt";
-        fi
-       fi;
-       shift;;
-
-FLT) if test "x$API" != "xGUI"; then
-       API="FLT"; LIBFLT=" -lm17n-flt"
-       if test "x$LIBSHELL" = "x"; then
-         LIBTOOLNAME="m17n-flt";
-       else
-         LIBTOOLNAME="m17n m17n-flt";
-       fi
-     fi;
-     shift;;
-
-GUI|X) API="GUI";
-       LIBSHELL=" -lm17n"; LIBFLT=" -lm17n-flt"; LIBGUI=" -lm17n-gui";
-       LIBTOOLNAME="m17n-gui";
-       shift;;
-
-*) break;;
-esac
-done
-
-LIBNAME="-lm17n-core"
-
-if test "x$API" = "x"; then
-  LIBNAME="$LIBNAME -lm17n"
-  LIBTOOLNAME="m17n"
-else
-  LIBNAME="$LIBNAME$LIBSHELL$LIBFLT$LIBGUI"
-fi
-
-case $1 in
---version)
-  echo "@PACKAGE_VERSION@";;
-
---libs)
-  if test "@libdir@" != "/usr/lib"; then
-    echo "-L@libdir@ ${LIBNAME}"
-  else
-    echo "${LIBNAME}"
-  fi;;
-
---cflags)
-  if test "@includedir@" != "/usr/include"; then
-    echo "-I@includedir@"
-  fi;;
-
---libtool)
-  for name in $LIBTOOLNAME; do
-    echo -n "@libdir@/lib${name}.la "
-  done;
-  echo;;
-*)
-    help
-    exit 1;;
-esac
-exit 0
-
-cat > /dev/null <<EOF
-/***en @page m17n-config Print compile/link options of the m17n library */
-/***ja @page m17n-config m17n ¥é¥¤¥Ö¥é¥ê¤Î¥³¥ó¥Ñ¥¤¥ë¡¦¥ê¥ó¥¯¥ª¥×¥·¥ç¥ó¤Îɽ¼¨ */
-
-/***
-@section m17n-config-synopsis SYNOPSIS
-
-m17n-config [API-LEVEL ...] [--cflags | --libs | --libtool] [--version]
-
-@section m17n-config-description DESCRIPTION
-
-The shell script m17n-config prints compile and link options for a
-program that uses the m17n library.
-
-By default, the printed options are for such a program that uses SHELL
-API of the libray.  But, if the first argument is "CORE", "GUI", or
-"FLT", the options are for a program that uses the corresponding API.
-
-The other arguments are as follows.
-
-- --cflags\n
-       Print compile option (e.g. -I/usr/local/include)
-- --libs\n
-       Print link option (e.g. -L/usr/local/lib -lm17n)
-- --libtool\n
-       Print libtool option (e.g. /usr/local/lib/libm17n.la)
-- --version\n
-       Print version number of the m17n library.
-*/ 
-EOF
-
-# Copyright (C) 2003, 2004
-#   National Institute of Advanced Industrial Science and Technology (AIST)
-#   Registration Number H15PRO112
-
-# This file is part of the m17n library.
-
-# The m17n library 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 2.1 of
-# the License, or (at your option) any later version.
-
-# The m17n library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-
-# You should have received a copy of the GNU Lesser General Public
-# License along with the m17n library; if not, write to the Free
-# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
diff --git a/m17n-core.pc.in b/m17n-core.pc.in
deleted file mode 100644 (file)
index a08bd5d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-
-Name: m17n-core
-Description: Core API suport of the m17n library.
-Version: @PACKAGE_VERSION@
-Libs: -L${libdir} -lm17n-core
-Cflags: -I${includedir}
diff --git a/m17n-flt.pc.in b/m17n-flt.pc.in
deleted file mode 100644 (file)
index e6ceeb8..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-version=@PACKAGE_VERSION@
-
-Name: m17n-flt
-Description: FLT API suport of the m17n library.
-Version: ${version}
-Requires: m17n-core = ${version}
-Libs: -L${libdir} -lm17n-core -lm17n-flt
-Cflags: -I${includedir}
diff --git a/m17n-gui.pc.in b/m17n-gui.pc.in
deleted file mode 100644 (file)
index ba679d6..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-version=@PACKAGE_VERSION@
-
-Name: m17n-gui
-Description: GUI API suport of the m17n library.
-Version: ${version}
-Requires: m17n-core = ${version}, m17n-shell = ${version}
-Libs: -L${libdir} -lm17n-core -lm17n -lm17n-gui
-Cflags: -I${includedir}
diff --git a/m17n-shell.pc.in b/m17n-shell.pc.in
deleted file mode 100644 (file)
index ed0c6c8..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-libdir=@libdir@
-includedir=@includedir@
-version=@PACKAGE_VERSION@
-
-Name: m17n-shell
-Description: Shell API support of the m17n library.
-Version: ${version}
-Requires: m17n-core = ${version}
-Libs: -L${libdir} -lm17n-core -lm17n
-Cflags: -I${includedir}