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

Revision 4518, 1.3 KB checked in by yasumichi, 13 years ago (diff)

バージョン番号を変更

RevLine 
[840]1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
[4518]5AC_INIT(vine-manual-build, 0.9.3, http://bts.vinelinux.org/)
[842]6AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 tar-ustar])
[840]7AM_MAINTAINER_MODE
8
9# Checks for programs.
[1141]10AC_PATH_PROG(XSLTPROC,xsltproc)
11AS_IF(test -z $XSLTPROC, AC_MSG_ERROR([xsltproc was not found.]))
[2801]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.]))
[840]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
[4209]30STYLE=`eval echo ${XSLDIR}`/local.xsl
[4184]31AC_SUBST(STYLE)
32
[2801]33CSSFILE=`pkg-config --variable=cssfile vine-manual-base`
34AC_SUBST(CSSFILE)
35
36IMAGEDIR=`pkg-config --variable=imagedir vine-manual-base`
37AC_SUBST(IMAGEDIR)
38
[2817]39VMDIR=`pkg-config --variable=manualdir vine-manual-base`
40AC_SUBST(VMDIR)
41
[840]42AC_CONFIG_FILES([
43           Makefile
[2801]44           local.xsl
[840]45           vine-manual-build
[2801]46           vine-manual-build.pc
[1165]47           vine-manual-build-vl.spec
[4068]48           web.xsl
[840]49           ])
50
51AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.