avahi: add libavahi-compat-libdnssd support.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
parent
cad9bdbc85
commit
f36017a44c
1 changed files with 25 additions and 2 deletions
|
@ -18,7 +18,7 @@ endif
|
||||||
|
|
||||||
PKG_NAME:=avahi
|
PKG_NAME:=avahi
|
||||||
PKG_VERSION:=0.6.31
|
PKG_VERSION:=0.6.31
|
||||||
PKG_RELEASE:=6
|
PKG_RELEASE:=7
|
||||||
|
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
@ -172,6 +172,22 @@ $(call Package/avahi/Default/description)
|
||||||
For more information please see the avahi documentation.
|
For more information please see the avahi documentation.
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libavahi-compat-libdnssd
|
||||||
|
$(call Package/avahi/Default)
|
||||||
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
DEPENDS:=+libavahi-client
|
||||||
|
TITLE+= (libdnssd)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/libavahi-compat-libdnssd/description
|
||||||
|
$(call Package/avahi/Default/description)
|
||||||
|
.
|
||||||
|
This packages adds the libavahi-compat-libdnssd library.
|
||||||
|
It also automatically adds the required libavahi-client package.
|
||||||
|
For more information please see the avahi documentation.
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/avahi-utils
|
define Package/avahi-utils
|
||||||
$(call Package/avahi/Default)
|
$(call Package/avahi/Default)
|
||||||
SUBMENU:=IP Addresses and Names
|
SUBMENU:=IP Addresses and Names
|
||||||
|
@ -201,6 +217,7 @@ CONFIGURE_ARGS+= \
|
||||||
--disable-gtk3 \
|
--disable-gtk3 \
|
||||||
--with-xml=expat \
|
--with-xml=expat \
|
||||||
--disable-dbm \
|
--disable-dbm \
|
||||||
|
--enable-compat-libdns_sd \
|
||||||
--enable-gdbm \
|
--enable-gdbm \
|
||||||
--enable-libdaemon \
|
--enable-libdaemon \
|
||||||
--disable-python \
|
--disable-python \
|
||||||
|
@ -246,7 +263,7 @@ define Build/InstallDev
|
||||||
$(INSTALL_DIR) $(1)/usr/include
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
|
||||||
$(INSTALL_DIR) $(1)/usr/lib
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/{libavahi-*,libdns_sd*} $(1)/usr/lib/
|
||||||
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
|
||||||
endef
|
endef
|
||||||
|
@ -273,6 +290,11 @@ define Package/libavahi-client/install
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-client.so.* $(1)/usr/lib/
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-client.so.* $(1)/usr/lib/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Package/libavahi-compat-libdnssd/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdns_sd.so.* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
define Package/avahi-utils/install
|
define Package/avahi-utils/install
|
||||||
$(INSTALL_DIR) $(1)/usr/bin
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
||||||
|
@ -305,6 +327,7 @@ define Package/avahi-dnsconfd/install
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libavahi-client))
|
$(eval $(call BuildPackage,libavahi-client))
|
||||||
|
$(eval $(call BuildPackage,libavahi-compat-libdnssd))
|
||||||
$(eval $(call BuildPackage,avahi-utils))
|
$(eval $(call BuildPackage,avahi-utils))
|
||||||
$(eval $(call BuildPackage,libavahi-dbus-support))
|
$(eval $(call BuildPackage,libavahi-dbus-support))
|
||||||
$(eval $(call BuildPackage,libavahi))
|
$(eval $(call BuildPackage,libavahi))
|
||||||
|
|
Loading…
Reference in a new issue