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