source: projects/vine-manual-build/trunk/configure.ac @ 4518

Revision 4518, 1.3 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-build, 0.9.3, http://bts.vinelinux.org/)
6AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 tar-ustar])
7AM_MAINTAINER_MODE
8
9# Checks for programs.
10AC_PATH_PROG(XSLTPROC,xsltproc)
11AS_IF(test -z $XSLTPROC, AC_MSG_ERROR([xsltproc was not found.]))
12PKG_CHECK_EXISTS([vine-manual-base], , AC_MSG_ERROR([Cannot find vine-manual-base.]))
13PKG_CHECK_EXISTS([gnome-doc-utils], , AC_MSG_ERROR([Cannot find gnome-doc-utils.]))
14
15# Checks for libraries.
16
17# Checks for header files.
18
19# Checks for typedefs, structures, and compiler characteristics.
20
21# Checks for library functions.
22
23if test "x${prefix}" = "xNONE"; then
24        prefix=${ac_default_prefix}
25fi
26DATADIR=`eval echo ${datadir}`
27XSLDIR=`eval echo ${DATADIR}`/sgml/docbook/vine-style-xsl
28AC_SUBST(XSLDIR)
29
30STYLE=`eval echo ${XSLDIR}`/local.xsl
31AC_SUBST(STYLE)
32
33CSSFILE=`pkg-config --variable=cssfile vine-manual-base`
34AC_SUBST(CSSFILE)
35
36IMAGEDIR=`pkg-config --variable=imagedir vine-manual-base`
37AC_SUBST(IMAGEDIR)
38
39VMDIR=`pkg-config --variable=manualdir vine-manual-base`
40AC_SUBST(VMDIR)
41
42AC_CONFIG_FILES([
43           Makefile
44           local.xsl
45           vine-manual-build
46           vine-manual-build.pc
47           vine-manual-build-vl.spec
48           web.xsl
49           ])
50
51AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.