source: projects/vine-manual-build/tags/R_0_9_0/configure.ac @ 2817

Revision 2817, 1.2 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.0, 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
30CSSFILE=`pkg-config --variable=cssfile vine-manual-base`
31AC_SUBST(CSSFILE)
32
33IMAGEDIR=`pkg-config --variable=imagedir vine-manual-base`
34AC_SUBST(IMAGEDIR)
35
36VMDIR=`pkg-config --variable=manualdir vine-manual-base`
37AC_SUBST(VMDIR)
38
39AC_CONFIG_FILES([
40           Makefile
41           local.xsl
42           vine-manual-build
43           vine-manual-build.pc
44           vine-manual-build-vl.spec
45           ])
46
47AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.