source: projects/vine-install-guide/branches/6.x/configure.ac @ 2915

Revision 2915, 1.0 KB checked in by yasumichi, 13 years ago (diff)

・バージョン 5.9.2 に変更
・アップグレード時には、postun を走らせないようにした。

RevLine 
[2748]1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
[2915]5AC_INIT([vine-install-guide], [5.9.2], [http://vinelinux.org/bts.html])
[2748]6AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar])
7
8# Checks for programs.
9PKG_CHECK_EXISTS([vine-manual-base], , AC_MSG_ERROR([Cannot find vine-manual-base.]))
[2806]10PKG_CHECK_EXISTS([vine-manual-build], , AC_MSG_ERROR([Cannot find vine-manual-build.]))
[2748]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.
[2751]19
20# Define variables
21if test "x${prefix}" = "xNONE"; then
22        prefix=${ac_default_prefix}
23fi
24OMFDIR=`eval echo ${datadir}/omf/vine-install-guide`
25AC_SUBST(OMFDIR)
26
27VMDIR=`pkg-config --variable=manualdir vine-manual-base`
28AC_SUBST(VMDIR)
29
[2748]30AC_CONFIG_FILES([
31        Makefile
[2754]32        vine-install-guide.spec
[2748]33        help/Makefile
[2759]34        help/vine-install-guide-ja.omf
[2748]35        help/figures/Makefile
36        help/figures/textmode/Makefile
37])
38
39AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.