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

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

正規表現の修正

RevLine 
[2695]1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
[2950]5AC_INIT([vine-manual-base], [0.1.2], [http://vinelinux.org/bts.html])
[2703]6AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar])
[2695]7
8# Checks for programs.
[2703]9AC_PATH_PROG(MKTEMP, mktemp)
10AS_IF(test -z $MKTEMP, AC_MSG_ERROR([Cannot find mktemp.]))
[2695]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}`
[2703]25
[2695]26CVSDATA=`eval echo ${DATADIR}/vine-manual-base`/doc-list.csv
27AC_SUBST(CVSDATA)
28
[2703]29TEMPLATE=`eval echo ${DATADIR}/vine-manual-base`/index.html
30AC_SUBST(TEMPLATE)
[2695]31
[2862]32VMDIR=`eval echo ${DATADIR}/doc/Vine`
[2733]33AC_SUBST(VMDIR)
34
35INDEX=`eval echo ${VMDIR}/index.html`
[2703]36AC_SUBST(INDEX)
37
[2733]38CSSDIR=`eval echo ${VMDIR}/css`
39AC_SUBST(CSSDIR)
40
41CSS=`eval echo ${CSSDIR}/vine.css`
42AC_SUBST(CSS)
43
[2862]44IMAGEDIR=`eval echo ${DATADIR}/doc/Vine/images`
[2799]45AC_SUBST(IMAGEDIR)
46
[2695]47AC_CONFIG_FILES([Makefile
[2703]48                 vine-manual-base.spec
[2695]49                 bin/Makefile
50                 bin/vine-manual-index-update
51                 bin/vine-manual-regist
52                 css/Makefile
[2820]53                 css/gnome.css
[2833]54                 css/vine.css
[2695]55                 data/Makefile
[2703]56                 data/index.html
[2733]57                 data/vine-manual-base.pc
[2695]58                 doc/Makefile
59                 doc/index.html
60                 images/Makefile])
61
62AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.