File: configure.ac

package info (click to toggle)
scim-tables 0.4.3-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,220 kB
  • ctags: 19
  • sloc: sh: 459; makefile: 145
file content (63 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Process this file with autoconf to produce a configure script.
AC_INIT(scim-tables, 0.4.3, suzhe@turbolinux.com.cn)
AC_CONFIG_SRCDIR([README])

SCIM_VERSION=0.99.7

AC_SUBST(SCIM_VERSION)

# Init automake stuff
AM_INIT_AUTOMAKE

PKG_CHECK_MODULES(SCIM,[scim >= $SCIM_VERSION])

# Checks for programs.
AC_PATH_PROG(SCIM_MAKE_TABLE, scim-make-table, no)

if test "x$SCIM_MAKE_TABLE" = "xno"; then
  AC_MSG_ERROR(Could not find a scim-make-table in your PATH)
fi

SCIM_ICONDIR=`$PKG_CONFIG --variable=icondir scim`
SCIM_TABLEDIR=`$PKG_CONFIG --variable=tabledir scim`

if test "x$SCIM_ICONDIR" = "x"; then
  SCIM_ICONDIR=/usr/share/scim/icons
fi

if test "x$SCIM_TABLEDIR" = "x"; then
  SCIM_TABLEDIR=/usr/share/scim/tables
fi

AC_SUBST(ac_aux_dir)
AC_SUBST(SCIM_MAKE_TABLE)
AC_SUBST(SCIM_ICONDIR)
AC_SUBST(SCIM_TABLEDIR)

AC_CONFIG_FILES([Makefile
		 zh/Makefile
		 zh/Array30.txt
		 zh/CangJie.txt
		 zh/Cantonese.txt
		 zh/Dayi3.txt
		 zh/Erbi.txt
		 zh/Erbi-QS.txt
		 zh/EZ.txt
		 zh/Jyutping.txt
		 zh/Simplex.txt
		 zh/Wubi.txt
		 zh/Ziranma.txt
		 zh/ZhuYin.txt
		 ja/Makefile
		 ja/HIRAGANA.txt
		 ja/KATAKANA.txt
		 ja/Nippon.txt
		 ko/Makefile
		 ko/Hangul.txt
		 ko/Hanja.txt
		 additional/Makefile
		 additional/Yawerty.txt
		 additional/Amharic.txt
		 icons/Makefile
		 scim-tables.spec])
AC_OUTPUT