*** empty log message ***
[m17n/m17n-lib.git] / m17n-config.in
1 #!/bin/sh
2 # m17n-config -- helper script for the m17n library.    -*- coding: euc-jp; -*-
3 # Copyright (C) 2003, 2004
4 #   National Institute of Advanced Industrial Science and Technology (AIST)
5 #   Registration Number H15PRO112
6 # See the end for copying conditions.
7
8 prefix=@prefix@
9 exec_prefix=@exec_prefix@
10
11 help ()
12 {
13   echo "Usage: $0 [CORE | X] [--version | --cflags | --libs | --libtool]"
14 }
15
16 if test $# -eq 0; then
17   help 1>&2
18   exit 0
19 fi
20
21 LIBNAME=m17n
22
23 case $1 in
24 CORE) LIBNAME=m17n-core; shift;;
25 X) LIBNAME=m17n-X; shift;;
26 esac
27
28 case $1 in
29 --version)
30   echo "@PACKAGE_VERSION@";;
31
32 --libs)
33   if test "@libdir@" != "/usr/lib"; then
34     echo "-L@libdir@ -l${LIBNAME}"
35   else
36     echo "-lm17n-X"
37   fi;;
38
39 --cflags)
40   if test "@includedir@" != "/usr/include"; then
41     echo "-I@includedir@"
42   fi;;
43
44 --libtool)
45   echo "@libdir@/lib${LIBNAME}.la"
46   ;;
47
48 *)
49     help
50     exit 1;;
51 esac
52 exit 0
53
54 cat > /dev/null <<EOF
55 /***en @page m17n-config Print compile/link options of the m17n library */
56 /***ja @page m17n-config m17n ¥é¥¤¥Ö¥é¥ê¤Î¥³¥ó¥Ñ¥¤¥ë¡¦¥ê¥ó¥¯¥ª¥×¥·¥ç¥ó¤Îɽ¼¨ */
57
58 /***
59 @section synopsis SYNOPSIS
60
61 m17n-config [CORE | X] [--cflags | --libs | --libtool] [--version]
62
63 @section description DESCRIPTION
64
65 The shell script m17n-config prints compile and link options for a
66 program that uses the m17n library.
67
68 By default, the printed options are for such a program that uses SHELL
69 API of the libray.  But, if the first argument is "CORE", the options
70 are for a program that uses only CORE API, if the first argument "X",
71 the options are for a program that uses GUI API on X window.
72
73 The other arguments are as follows.
74
75 - --cflags\n
76         Print compile option (e.g. -I/usr/local/include)
77 - --libs\n
78         Print link option (e.g. -L/usr/local/lib -lm17n)
79 - --libtool\n
80         Print libtool option (e.g. /usr/local/lib/libm17n.la)
81 - --version\n
82         Print version number of the m17n library.
83 */ 
84 EOF
85
86 # Copyright (C) 2003, 2004
87 #   National Institute of Advanced Industrial Science and Technology (AIST)
88 #   Registration Number H15PRO112
89
90 # This file is part of the m17n library.
91
92 # The m17n library is free software; you can redistribute it and/or
93 # modify it under the terms of the GNU Lesser General Public License
94 # as published by the Free Software Foundation; either version 2.1 of
95 # the License, or (at your option) any later version.
96
97 # The m17n library is distributed in the hope that it will be useful,
98 # but WITHOUT ANY WARRANTY; without even the implied warranty of
99 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
100 # Lesser General Public License for more details.
101
102 # You should have received a copy of the GNU Lesser General Public
103 # License along with the m17n library; if not, write to the Free
104 # Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
105 # 02111-1307, USA.