|
@@ -0,0 +1,173 @@
|
|
|
|
+#############################################################
|
|
|
|
+#
|
|
|
|
+# avahi (zeroconf implementation)
|
|
|
|
+#
|
|
|
|
+#############################################################
|
|
|
|
+#
|
|
|
|
+# This program is free software; you can redistribute it
|
|
|
|
+# and/or modify it under the terms of the GNU Lesser General
|
|
|
|
+# Public License as published by the Free Software Foundation;
|
|
|
|
+# either version 2.1 of the License, or (at your option) any
|
|
|
|
+# later version.
|
|
|
|
+
|
|
|
|
+AVAHI_VER:=0.6.14
|
|
|
|
+AVAHI_DIR:=$(BUILD_DIR)/avahi-$(AVAHI_VER)
|
|
|
|
+AVAHI_SITE:=http://www.avahi.org/download/
|
|
|
|
+AVAHI_SOURCE:=avahi-$(AVAHI_VER).tar.gz
|
|
|
|
+AVAHI_CAT:=zcat
|
|
|
|
+
|
|
|
|
+$(DL_DIR)/$(AVAHI_SOURCE):
|
|
|
|
+ $(WGET) -P $(DL_DIR) $(AVAHI_SITE)/$(AVAHI_SOURCE)
|
|
|
|
+
|
|
|
|
+avahi-source: $(DL_DIR)/$(AVAHI_SOURCE)
|
|
|
|
+
|
|
|
|
+$(AVAHI_DIR)/.unpacked: $(DL_DIR)/$(AVAHI_SOURCE)
|
|
|
|
+ $(AVAHI_CAT) $(DL_DIR)/$(AVAHI_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
|
|
+ toolchain/patch-kernel.sh $(AVAHI_DIR) package/avahi/ \*.patch
|
|
|
|
+ touch $(AVAHI_DIR)/.unpacked
|
|
|
|
+
|
|
|
|
+$(AVAHI_DIR)/.configured: $(AVAHI_DIR)/.unpacked
|
|
|
|
+ (cd $(AVAHI_DIR) && rm -rf config.cache && autoconf)
|
|
|
|
+ ( \
|
|
|
|
+ cd $(AVAHI_DIR) && \
|
|
|
|
+ $(TARGET_CONFIGURE_OPTS) \
|
|
|
|
+ CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
+ LIBDAEMON_CFLAGS="-I$(STAGING_DIR)/include" \
|
|
|
|
+ LIBDAEMON_LIBS="-L$(STAGING_DIR)/lib -ldaemon" \
|
|
|
|
+ PKG_CONFIG_PATH="$(LIBDAEMON_DIR)" \
|
|
|
|
+ ac_cv_func_strtod=yes \
|
|
|
|
+ ac_fsusage_space=yes \
|
|
|
|
+ fu_cv_sys_stat_statfs2_bsize=yes \
|
|
|
|
+ ac_cv_func_closedir_void=no \
|
|
|
|
+ ac_cv_func_getloadavg=no \
|
|
|
|
+ ac_cv_lib_util_getloadavg=no \
|
|
|
|
+ ac_cv_lib_getloadavg_getloadavg=no \
|
|
|
|
+ ac_cv_func_getgroups=yes \
|
|
|
|
+ ac_cv_func_getgroups_works=yes \
|
|
|
|
+ ac_cv_func_chown_works=yes \
|
|
|
|
+ ac_cv_have_decl_euidaccess=no \
|
|
|
|
+ ac_cv_func_euidaccess=no \
|
|
|
|
+ ac_cv_have_decl_strnlen=yes \
|
|
|
|
+ ac_cv_func_strnlen_working=yes \
|
|
|
|
+ ac_cv_func_lstat_dereferences_slashed_symlink=yes \
|
|
|
|
+ ac_cv_func_lstat_empty_string_bug=no \
|
|
|
|
+ ac_cv_func_stat_empty_string_bug=no \
|
|
|
|
+ vb_cv_func_rename_trailing_slash_bug=no \
|
|
|
|
+ ac_cv_have_decl_nanosleep=yes \
|
|
|
|
+ jm_cv_func_nanosleep_works=yes \
|
|
|
|
+ gl_cv_func_working_utimes=yes \
|
|
|
|
+ ac_cv_func_utime_null=yes \
|
|
|
|
+ ac_cv_have_decl_strerror_r=yes \
|
|
|
|
+ ac_cv_func_strerror_r_char_p=no \
|
|
|
|
+ jm_cv_func_svid_putenv=yes \
|
|
|
|
+ ac_cv_func_getcwd_null=yes \
|
|
|
|
+ ac_cv_func_getdelim=yes \
|
|
|
|
+ ac_cv_func_mkstemp=yes \
|
|
|
|
+ utils_cv_func_mkstemp_limitations=no \
|
|
|
|
+ utils_cv_func_mkdir_trailing_slash_bug=no \
|
|
|
|
+ ac_cv_func_memcmp_working=yes \
|
|
|
|
+ ac_cv_have_decl_malloc=yes \
|
|
|
|
+ gl_cv_func_malloc_0_nonnull=yes \
|
|
|
|
+ ac_cv_func_malloc_0_nonnull=yes \
|
|
|
|
+ ac_cv_func_calloc_0_nonnull=yes \
|
|
|
|
+ ac_cv_func_realloc_0_nonnull=yes \
|
|
|
|
+ jm_cv_func_gettimeofday_clobber=no \
|
|
|
|
+ am_cv_func_working_getline=yes \
|
|
|
|
+ gl_cv_func_working_readdir=yes \
|
|
|
|
+ jm_ac_cv_func_link_follows_symlink=no \
|
|
|
|
+ utils_cv_localtime_cache=no \
|
|
|
|
+ ac_cv_struct_st_mtim_nsec=no \
|
|
|
|
+ gl_cv_func_tzset_clobber=no \
|
|
|
|
+ gl_cv_func_getcwd_null=yes \
|
|
|
|
+ gl_cv_func_getcwd_path_max=yes \
|
|
|
|
+ ac_cv_func_fnmatch_gnu=yes \
|
|
|
|
+ am_getline_needs_run_time_check=no \
|
|
|
|
+ am_cv_func_working_getline=yes \
|
|
|
|
+ gl_cv_func_mkdir_trailing_slash_bug=no \
|
|
|
|
+ gl_cv_func_mkstemp_limitations=no \
|
|
|
|
+ ac_cv_func_working_mktime=yes \
|
|
|
|
+ jm_cv_func_working_re_compile_pattern=yes \
|
|
|
|
+ ac_use_included_regex=no \
|
|
|
|
+ ./configure \
|
|
|
|
+ --target=$(GNU_TARGET_NAME) \
|
|
|
|
+ --host=$(GNU_TARGET_NAME) \
|
|
|
|
+ --build=$(GNU_HOST_NAME) \
|
|
|
|
+ --prefix=/usr \
|
|
|
|
+ --exec-prefix=/usr \
|
|
|
|
+ --bindir=/usr/bin \
|
|
|
|
+ --sbindir=/usr/sbin \
|
|
|
|
+ --libexecdir=/usr/sbin \
|
|
|
|
+ --sysconfdir=/etc \
|
|
|
|
+ --datadir=/usr/share \
|
|
|
|
+ --localstatedir=/var \
|
|
|
|
+ --mandir=/usr/man \
|
|
|
|
+ --infodir=/usr/info \
|
|
|
|
+ --includedir=$(STAGING_DIR)/include \
|
|
|
|
+ $(DISABLE_NLS) \
|
|
|
|
+ $(DISABLE_LARGEFILE) \
|
|
|
|
+ --disable-glib \
|
|
|
|
+ --disable-qt3 \
|
|
|
|
+ --disable-qt4 \
|
|
|
|
+ --disable-gtk \
|
|
|
|
+ --disable-dbus \
|
|
|
|
+ --disable-expat \
|
|
|
|
+ --disable-gdbm \
|
|
|
|
+ --disable-python \
|
|
|
|
+ --disable-python-dbus \
|
|
|
|
+ --disable-pygtk \
|
|
|
|
+ --disable-mono \
|
|
|
|
+ --disable-monodoc \
|
|
|
|
+ --with-distro=none \
|
|
|
|
+ --with-avahi-user=default \
|
|
|
|
+ --with-avahi-group=default \
|
|
|
|
+ --with-autoipd-user=default \
|
|
|
|
+ --with-autoipd-group=default \
|
|
|
|
+ );
|
|
|
|
+ touch $(AVAHI_DIR)/.configured
|
|
|
|
+
|
|
|
|
+$(AVAHI_DIR)/.compiled: $(AVAHI_DIR)/.configured
|
|
|
|
+ $(MAKE) -C $(AVAHI_DIR)
|
|
|
|
+ touch $(AVAHI_DIR)/.compiled
|
|
|
|
+
|
|
|
|
+$(STAGING_DIR)/sbin/avahi-autoipd: $(AVAHI_DIR)/.compiled
|
|
|
|
+ $(MAKE) \
|
|
|
|
+ -C $(AVAHI_DIR)/avahi-autoipd \
|
|
|
|
+ prefix=$(STAGING_DIR) \
|
|
|
|
+ exec_prefix=$(STAGING_DIR) \
|
|
|
|
+ bindir=$(STAGING_DIR)/bin \
|
|
|
|
+ datadir=$(STAGING_DIR)/share \
|
|
|
|
+ sbindir=$(STAGING_DIR)/sbin \
|
|
|
|
+ sysconfdir=$(STAGING_DIR)/etc \
|
|
|
|
+ install
|
|
|
|
+ touch -c $(STAGING_DIR)/sbin/avahi-autoipd
|
|
|
|
+
|
|
|
|
+$(TARGET_DIR)/usr/sbin/avahi-autoipd: $(STAGING_DIR)/sbin/avahi-autoipd
|
|
|
|
+ cp $^ $@
|
|
|
|
+ mkdir -p $(TARGET_DIR)/etc/avahi
|
|
|
|
+ mkdir -p $(TARGET_DIR)/var/lib
|
|
|
|
+ ln -sf /tmp/avahi-autoipd $(TARGET_DIR)/var/lib/avahi-autoipd
|
|
|
|
+ cp -af $(STAGING_DIR)/etc/avahi/avahi-autoipd.action $(TARGET_DIR)/etc/avahi/
|
|
|
|
+ cp -af $(BASE_DIR)/package/avahi/busybox-udhcpc-default.script $(TARGET_DIR)/usr/share/udhcpc/default.script
|
|
|
|
+ cp -af $(BASE_DIR)/package/avahi/S05avahi-setup.sh $(TARGET_DIR)/etc/init.d/
|
|
|
|
+ chmod 0755 $(TARGET_DIR)/usr/share/udhcpc/default.script
|
|
|
|
+ $(STRIP) --strip-unneeded $@
|
|
|
|
+
|
|
|
|
+avahi: uclibc busybox libdaemon $(TARGET_DIR)/usr/sbin/avahi-autoipd
|
|
|
|
+
|
|
|
|
+avahi-clean:
|
|
|
|
+ $(MAKE) -C $(AVAHI_DIR) distclean
|
|
|
|
+ rm -rf $(TARGET_DIR)/etc/avahi
|
|
|
|
+ rm -f $(TARGET_DIR)/var/lib/avahi-autoipd
|
|
|
|
+ rm -f $(TARGET_DIR)/etc/init.d/S*avahi*
|
|
|
|
+
|
|
|
|
+avahi-dirclean:
|
|
|
|
+ rm -rf $(AVAHI_DIR)
|
|
|
|
+
|
|
|
|
+#############################################################
|
|
|
|
+#
|
|
|
|
+# Toplevel Makefile options
|
|
|
|
+#
|
|
|
|
+#############################################################
|
|
|
|
+ifeq ($(strip $(BR2_PACKAGE_AVAHI)),y)
|
|
|
|
+TARGETS+=avahi
|
|
|
|
+endif
|