source: projects/vine-manual-base/tags/R_0_1_2/configure.ac @ 2950

Revision 2950, 1.4 KB checked in by yasumichi, 13 years ago (diff)

正規表現の修正

Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([vine-manual-base], [0.1.2], [http://vinelinux.org/bts.html])
6AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar])
7
8# Checks for programs.
9AC_PATH_PROG(MKTEMP, mktemp)
10AS_IF(test -z $MKTEMP, AC_MSG_ERROR([Cannot find mktemp.]))
11
12# Checks for libraries.
13
14# Checks for header files.
15
16# Checks for typedefs, structures, and compiler characteristics.
17
18# Checks for library functions.
19
20# Define variables
21if test "x${prefix}" = "xNONE"; then
22        prefix=${ac_default_prefix}
23fi
24DATADIR=`eval echo ${datadir}`
25
26CVSDATA=`eval echo ${DATADIR}/vine-manual-base`/doc-list.csv
27AC_SUBST(CVSDATA)
28
29TEMPLATE=`eval echo ${DATADIR}/vine-manual-base`/index.html
30AC_SUBST(TEMPLATE)
31
32VMDIR=`eval echo ${DATADIR}/doc/Vine`
33AC_SUBST(VMDIR)
34
35INDEX=`eval echo ${VMDIR}/index.html`
36AC_SUBST(INDEX)
37
38CSSDIR=`eval echo ${VMDIR}/css`
39AC_SUBST(CSSDIR)
40
41CSS=`eval echo ${CSSDIR}/vine.css`
42AC_SUBST(CSS)
43
44IMAGEDIR=`eval echo ${DATADIR}/doc/Vine/images`
45AC_SUBST(IMAGEDIR)
46
47AC_CONFIG_FILES([Makefile
48                 vine-manual-base.spec
49                 bin/Makefile
50                 bin/vine-manual-index-update
51                 bin/vine-manual-regist
52                 css/Makefile
53                 css/gnome.css
54                 css/vine.css
55                 data/Makefile
56                 data/index.html
57                 data/vine-manual-base.pc
58                 doc/Makefile
59                 doc/index.html
60                 images/Makefile])
61
62AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.