]> git.ipfire.org Git - pbs.git/blob - configure.ac
configure: Depend on "location"
[pbs.git] / configure.ac
1 ###############################################################################
2 # #
3 # Pakfire - The IPFire package management system #
4 # Copyright (C) 2017 Pakfire development team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 AC_PREREQ([2.64])
22
23 AC_INIT([pakfire-build-service],
24 [2017.01],
25 [info@ipfire.org],
26 [pakfire-build-service],
27 [https://git.ipfire.org/?p=pbs.git;a=summary])
28
29 AC_CONFIG_MACRO_DIR([m4])
30 AC_CONFIG_AUX_DIR([build-aux])
31
32 AC_PREFIX_DEFAULT([/usr])
33
34 AM_INIT_AUTOMAKE([
35 foreign
36 1.11
37 -Wall
38 -Wno-portability
39 silent-rules
40 tar-pax
41 subdir-objects
42 ])
43 AM_SILENT_RULES([yes])
44
45 IT_PROG_INTLTOOL([0.40.0])
46
47 GETTEXT_PACKAGE=pakfire-build-service
48 AC_SUBST(GETTEXT_PACKAGE)
49
50 AC_PROG_LN_S
51 AC_PROG_MKDIR_P
52 AC_PROG_SED
53
54 # Python
55 AM_PATH_PYTHON([3.9])
56
57 save_LIBS="$LIBS"
58
59 # pkg-config
60 PKG_PROG_PKG_CONFIG
61 # This makes sure pkg.m4 is available.
62 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
63
64 # ------------------------------------------------------------------------------
65
66 AX_PYTHON_MODULE([location], [fatal])
67
68 # ------------------------------------------------------------------------------
69
70 AC_ARG_WITH([systemd],
71 AS_HELP_STRING([--with-systemd], [Enable systemd support.])
72 )
73
74 AS_IF([test "x$with_systemd" != "xno"],
75 [PKG_CHECK_MODULES(systemd, [libsystemd],
76 [have_systemd=yes], [have_systemd=no])],
77 [have_systemd=no]
78 )
79
80 AS_IF([test "x$have_systemd" = "xyes"],
81 [AC_MSG_CHECKING([for systemd system unit directory])
82 AC_ARG_WITH([systemdsystemunitdir],
83 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
84 [], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)]
85 )
86
87 AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
88
89 if test -n "$systemdsystemunitdir" -a "x$systemdsystemunitdir" != xno; then
90 AC_MSG_RESULT([$systemdsystemunitdir])
91 else
92 AC_MSG_ERROR([not found (try --with-systemdsystemunitdir)])
93 fi
94 ],
95 [AS_IF([test "x$with_systemd" = "xyes"],
96 [AC_MSG_ERROR([Systemd support is enabled but no systemd has been found.])
97 ])
98 ])
99
100 AM_CONDITIONAL(HAVE_SYSTEMD, [test "x$have_systemd" = "xyes"])
101
102 # ------------------------------------------------------------------------------
103
104 datadir="${datadir}/pakfire-build-service"
105 localedir="${datadir}/translations"
106
107 AC_CONFIG_FILES([
108 Makefile
109 po/Makefile.in
110 src/buildservice/__version__.py
111 ])
112
113 AC_OUTPUT
114 AC_MSG_RESULT([
115 ${PACKAGE_NAME} ${VERSION}
116
117 prefix: ${prefix}
118 sysconfdir: ${sysconfdir}
119
120 Systemd support ${have_systemd}
121 ])