The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / avahi / avahi.mk
1 ################################################################################
2 #
3 # avahi
4 #
5 ################################################################################
6
7 #
8 # This program is free software; you can redistribute it
9 # and/or modify it under the terms of the GNU Lesser General
10 # Public License as published by the Free Software Foundation
11 # either version 2.1 of the License, or (at your option) any
12 # later version.
13
14 AVAHI_VERSION = 0.6.31
15 AVAHI_SITE = http://www.avahi.org/download
16 AVAHI_LICENSE = LGPLv2.1+
17 AVAHI_LICENSE_FILES = LICENSE
18 AVAHI_INSTALL_STAGING = YES
19
20 AVAHI_CONF_ENV = \
21         ac_cv_func_strtod=yes \
22         ac_fsusage_space=yes \
23         fu_cv_sys_stat_statfs2_bsize=yes \
24         ac_cv_func_closedir_void=no \
25         ac_cv_func_getloadavg=no \
26         ac_cv_lib_util_getloadavg=no \
27         ac_cv_lib_getloadavg_getloadavg=no \
28         ac_cv_func_getgroups=yes \
29         ac_cv_func_getgroups_works=yes \
30         ac_cv_func_chown_works=yes \
31         ac_cv_have_decl_euidaccess=no \
32         ac_cv_func_euidaccess=no \
33         ac_cv_have_decl_strnlen=yes \
34         ac_cv_func_strnlen_working=yes \
35         ac_cv_func_lstat_dereferences_slashed_symlink=yes \
36         ac_cv_func_lstat_empty_string_bug=no \
37         ac_cv_func_stat_empty_string_bug=no \
38         vb_cv_func_rename_trailing_slash_bug=no \
39         ac_cv_have_decl_nanosleep=yes \
40         jm_cv_func_nanosleep_works=yes \
41         gl_cv_func_working_utimes=yes \
42         ac_cv_func_utime_null=yes \
43         ac_cv_have_decl_strerror_r=yes \
44         ac_cv_func_strerror_r_char_p=no \
45         jm_cv_func_svid_putenv=yes \
46         ac_cv_func_getcwd_null=yes \
47         ac_cv_func_getdelim=yes \
48         ac_cv_func_mkstemp=yes \
49         utils_cv_func_mkstemp_limitations=no \
50         utils_cv_func_mkdir_trailing_slash_bug=no \
51         jm_cv_func_gettimeofday_clobber=no \
52         am_cv_func_working_getline=yes \
53         gl_cv_func_working_readdir=yes \
54         jm_ac_cv_func_link_follows_symlink=no \
55         utils_cv_localtime_cache=no \
56         ac_cv_struct_st_mtim_nsec=no \
57         gl_cv_func_tzset_clobber=no \
58         gl_cv_func_getcwd_null=yes \
59         gl_cv_func_getcwd_path_max=yes \
60         ac_cv_func_fnmatch_gnu=yes \
61         am_getline_needs_run_time_check=no \
62         am_cv_func_working_getline=yes \
63         gl_cv_func_mkdir_trailing_slash_bug=no \
64         gl_cv_func_mkstemp_limitations=no \
65         ac_cv_func_working_mktime=yes \
66         jm_cv_func_working_re_compile_pattern=yes \
67         ac_use_included_regex=no \
68         avahi_cv_sys_cxx_works=yes \
69         DATADIRNAME=share
70
71 AVAHI_CONF_OPTS = \
72         --disable-qt3 \
73         --disable-qt4 \
74         --disable-gdbm \
75         --disable-pygtk \
76         --disable-mono \
77         --disable-monodoc \
78         --disable-stack-protector \
79         --with-distro=none \
80         --disable-manpages \
81         $(if $(BR2_PACKAGE_AVAHI_AUTOIPD),--enable,--disable)-autoipd \
82         --with-avahi-user=avahi \
83         --with-avahi-group=avahi \
84         --with-autoipd-user=avahi \
85         --with-autoipd-group=avahi
86
87 AVAHI_DEPENDENCIES = \
88         $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) host-intltool \
89         host-pkgconf host-gettext
90
91 AVAHI_CFLAGS = $(TARGET_CFLAGS)
92
93 ifeq ($(BR2_PACKAGE_SYSTEMD),)
94 AVAHI_CFLAGS += -DDISABLE_SYSTEMD
95 endif
96
97 ifneq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_AVAHI_AUTOIPD),)
98 AVAHI_DEPENDENCIES += libdaemon
99 else
100 AVAHI_CONF_OPTS += --disable-libdaemon
101 endif
102
103 ifeq ($(BR2_PACKAGE_AVAHI_DAEMON),y)
104 AVAHI_DEPENDENCIES += expat
105 AVAHI_CONF_OPTS += --with-xml=expat
106 else
107 AVAHI_CONF_OPTS += --with-xml=none
108 endif
109
110 ifeq ($(BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY),y)
111 AVAHI_CONF_OPTS += --enable-compat-libdns_sd
112 endif
113
114 ifeq ($(BR2_PACKAGE_DBUS),y)
115 AVAHI_DEPENDENCIES += dbus
116 else
117 AVAHI_CONF_OPTS += --disable-dbus
118 endif
119
120 ifeq ($(BR2_PACKAGE_LIBGLIB2),y)
121 AVAHI_DEPENDENCIES += libglib2
122 else
123 AVAHI_CONF_OPTS += --disable-glib --disable-gobject
124 endif
125
126 ifeq ($(BR2_PACKAGE_LIBGLADE),y)
127 AVAHI_DEPENDENCIES += libglade
128 else
129 AVAHI_CONF_OPTS += --disable-gtk
130 endif
131
132 ifeq ($(BR2_PACKAGE_LIBGTK3),y)
133 AVAHI_DEPENDENCIES += libgtk3
134 AVAHI_CONF_OPTS += --enable-gtk3
135 else
136 AVAHI_CONF_OPTS += --disable-gtk3
137 endif
138
139 ifeq ($(BR2_PACKAGE_PYTHON),y)
140 AVAHI_CONF_ENV += \
141         am_cv_pathless_PYTHON=python \
142         am_cv_path_PYTHON=$(PYTHON_TARGET_BINARY) \
143         am_cv_python_version=$(PYTHON_VERSION) \
144         am_cv_python_platform=linux2 \
145         am_cv_python_pythondir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
146         am_cv_python_pyexecdir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \
147         py_cv_mod_socket_=yes
148
149 AVAHI_DEPENDENCIES += python
150 AVAHI_CONF_OPTS += --enable-python
151 else
152 AVAHI_CONF_OPTS += --disable-python
153 endif
154
155 ifeq ($(BR2_PACKAGE_DBUS_PYTHON),y)
156 AVAHI_CONF_OPTS += --enable-python-dbus
157 AVAHI_CONF_ENV += py_cv_mod_dbus_=yes
158 AVAHI_DEPENDENCIES += dbus-python
159 else
160 AVAHI_CONF_OPTS += --disable-python-dbus
161 endif
162
163 AVAHI_CONF_ENV += CFLAGS="$(AVAHI_CFLAGS)"
164
165 AVAHI_MAKE_OPTS += $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),LIBS=-lintl)
166
167 define AVAHI_USERS
168         avahi -1 avahi -1 * - - -
169 endef
170
171 define AVAHI_REMOVE_INITSCRIPT
172         rm -rf $(TARGET_DIR)/etc/init.d/avahi-*
173 endef
174
175 AVAHI_POST_INSTALL_TARGET_HOOKS += AVAHI_REMOVE_INITSCRIPT
176
177 ifeq ($(BR2_PACKAGE_AVAHI_AUTOIPD),y)
178 define AVAHI_INSTALL_AUTOIPD
179         rm -f $(TARGET_DIR)/var/lib/avahi-autoipd
180         $(INSTALL) -d -m 0755 $(TARGET_DIR)/var/lib
181         ln -sf /tmp/avahi-autoipd $(TARGET_DIR)/var/lib/avahi-autoipd
182 endef
183
184 define AVAHI_INSTALL_AUTOIPD_INIT_SYSV
185         $(INSTALL) -D -m 0755 package/avahi/S05avahi-setup.sh $(TARGET_DIR)/etc/init.d/S05avahi-setup.sh
186 endef
187
188 AVAHI_POST_INSTALL_TARGET_HOOKS += AVAHI_INSTALL_AUTOIPD
189 endif
190
191 ifeq ($(BR2_PACKAGE_AVAHI_DAEMON),y)
192
193 define AVAHI_INSTALL_INIT_SYSTEMD
194         mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
195
196         ln -fs ../../../../usr/lib/systemd/system/avahi-daemon.service \
197                 $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-daemon.service
198
199         ln -fs ../../../../usr/lib/systemd/system/avahi-dnsconfd.service \
200                 $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-dnsconfd.service
201
202         $(INSTALL) -D -m 644 package/avahi/avahi_tmpfiles.conf \
203                 $(TARGET_DIR)/usr/lib/tmpfiles.d/avahi.conf
204 endef
205
206 define AVAHI_INSTALL_DAEMON_INIT_SYSV
207         $(INSTALL) -D -m 0755 package/avahi/S50avahi-daemon $(TARGET_DIR)/etc/init.d/S50avahi-daemon
208 endef
209
210 endif
211
212 define AVAHI_INSTALL_INIT_SYSV
213         $(AVAHI_INSTALL_AUTOIPD_INIT_SYSV)
214         $(AVAHI_INSTALL_DAEMON_INIT_SYSV)
215 endef
216
217 # applications expects to be able to #include <dns_sd.h>
218 define AVAHI_STAGING_INSTALL_LIBDNSSD_LINK
219         ln -sf avahi-compat-libdns_sd/dns_sd.h \
220                 $(STAGING_DIR)/usr/include/dns_sd.h
221 endef
222
223 ifeq ($(BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY),y)
224 AVAHI_POST_INSTALL_STAGING_HOOKS += AVAHI_STAGING_INSTALL_LIBDNSSD_LINK
225 endif
226
227 $(eval $(autotools-package))