File: configure.ac

package info (click to toggle)
manpages-de 1.8-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,564 kB
  • ctags: 27
  • sloc: sh: 649; makefile: 62; perl: 32
file content (53 lines) | stat: -rw-r--r-- 1,566 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Configuration for manpages-de
#
# Copyright © 2012 Tobias Quathamer <toddy@debian.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

AC_INIT(manpages-de, [1.8])

AM_INIT_AUTOMAKE([foreign dist-xz no-dist-gzip])

# Check that po4a is available on the system
AC_PATH_PROG([po4a], [po4a], [no])
if test "x$po4a" = "xno"; then
    AC_MSG_ERROR([You need to install po4a])
fi

# Support the downloading of manpages from Debian
AC_ARG_ENABLE(
    [download],
    [AS_HELP_STRING([--enable-download],
        [download manpages from Debian instead of using manpages installed on the system (default is no)])],
    [ac_enable_download=yes],
    [ac_enable_download=no]
)
AC_SUBST([ac_enable_download])

AC_CONFIG_FILES([
    Makefile
    english/Makefile
    english/links/Makefile
    po/Makefile
    po/man1/Makefile
    po/man2/Makefile
    po/man3/Makefile
    po/man4/Makefile
    po/man5/Makefile
    po/man6/Makefile
    po/man7/Makefile
    po/man8/Makefile
])

AC_OUTPUT