X-Git-Url: http://git.chise.org/gitweb/?p=m17n%2Fm17n-docs.git;a=blobdiff_plain;f=configure.ac;h=3d8fbeb653637fdce090b4ba37f8980ff7272d6a;hp=462d7d080f917cfdb454eb850f82344c96f1f2dd;hb=483389f99622f9de922dc8d673751707f78a1d96;hpb=e45bc20064dd8d224f49a02aec2558129977551b diff --git a/configure.ac b/configure.ac index 462d7d0..3d8fbeb 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,14 @@ -# Process this file with autoconf to produce a configure script. -AC_INIT(m17n-docs, 0.9, bugs-m17n-lib@m17n.org) -AM_INIT_AUTOMAKE(m17n-docs, 0.9) + # Process this file with autoconf to produce a configure script. +AC_INIT(m17n-docs, 1.0, bugs-m17n-lib@m17n.org) +AM_INIT_AUTOMAKE(m17n-docs, 1.0) AM_MAINTAINER_MODE # Checks for programs. AC_PROG_INSTALL +AC_PROG_AWK + +if test $USE_MAINTAINER_MODE = yes; then # Checks for source program files. AC_ARG_WITH(m17nlib, @@ -16,18 +19,34 @@ if test "x$M17NLIB" = "x"; then if test -d ../m17n-lib; then M17NLIB=../m17n-lib elif test -d /usr/local/src/m17n-lib; then - CHARMAPS=/usr/local/src/m17n-lib + M17NLIB=/usr/local/src/m17n-lib else - CHARMAPS= + M17NLIB=. fi else : fi - AC_SUBST(M17NLIB) +# Checks for the m17n database files. +AC_ARG_WITH(m17ndb, + [ --with-m17n-db=DIR directory of m17n-db source files], + M17NDB="$withval") + +if test "x$M17NDB" = "x"; then + if test -d ../m17n-db; then + M17NDB=../m17n-db + elif test -d /usr/local/src/m17n-db; then + M17NDB=/usr/local/src/m17n-db + else + M17NDB=. + fi +else : +fi +AC_SUBST(M17NDB) + AC_CHECK_PROG(HAVEDOXYGEN, doxygen, yes, no) AC_CHECK_PROG(RUBY, ruby, yes, no) -AC_CHECK_PROG(LATEX, platex, yes, no) +AC_CHECK_PROG(LATEX, latex, yes, no) AC_CHECK_PROG(PLATEX, platex, yes, no) OK=yes @@ -51,11 +70,23 @@ if test "$OK" = "no"; then exit 1 fi -AC_CONFIG_FILES([Makefile doxyfile]) +fi + +AC_CONFIG_FILES(Makefile) AC_OUTPUT # Print configuration message. -echo "-------------------------------------------------------------" -echo "Configure to make documentations from the source files under:" -echo " $M17NLIB/src/" -echo "-------------------------------------------------------------" +if test $USE_MAINTAINER_MODE = yes; then + AC_MSG_NOTICE([Find documentation source in "$M17NLIB"]) + AC_MSG_NOTICE([Find m17n database source in "$M17NDB"]) +fi + +eval dir=${datadir} +AC_MSG_NOTICE([-------------------------------------------]) +AC_MSG_NOTICE([Install documentations in these directories]) +AC_MSG_NOTICE([-------------------------------------------]) +AC_MSG_NOTICE([ m17n-lib.dvi: ${dir}/m17n/docs]) +AC_MSG_NOTICE([ m17n-lib.ps: ${dir}/m17n/docs]) +AC_MSG_NOTICE([ html files: ${dir}/m17n/docs/html]) +eval dir=${mandir} +AC_MSG_NOTICE([ man files: ${dir}])