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

Revision 2696, 995 bytes checked in by yasumichi, 13 years ago (diff)

update package name.

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], [http://vinelinux.org/bts.html])
6
7AM_INIT_AUTOMAKE
8
9# Checks for programs.
10AC_CHECK_PROG(MKTEMP, mktemp, yes, no)
11if test "$MKTEMP" = no ; then
12        AC_MSG_ERROR(Cannot find mktemp.)
13fi
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
23# Define variables
24if test "x${prefix}" = "xNONE"; then
25        prefix=${ac_default_prefix}
26fi
27DATADIR=`eval echo ${datadir}`
28CVSDATA=`eval echo ${DATADIR}/vine-manual-base`/doc-list.csv
29AC_SUBST(CVSDATA)
30
31
32AC_CONFIG_FILES([Makefile
33                 bin/Makefile
34                 bin/vine-manual-index-update
35                 bin/vine-manual-regist
36                 css/Makefile
37                 data/Makefile
38                 doc/Makefile
39                 doc/index.html
40                 images/Makefile])
41
42AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.