a5371d6de4307707f3170a5bc731b7e4350b1e17
[packages.git] / libs / avahi / Makefile
1 #
2
3 # Copyright (C) 2007 OpenWrt.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8 # $Id$
9
10 include $(TOPDIR)/rules.mk
11
12 PKG_NAME:=avahi
13 PKG_VERSION:=0.6.23
14 PKG_RELEASE:=2
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=http://avahi.org/download/
18 PKG_MD5SUM:=aab1a304851d8145ea5f6a85c10af9e9
19
20 PKG_BUILD_DEPENDS:=libexpat libdaemon libgdbm
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/avahi/Default
25   SECTION:=net
26   CATEGORY:=Network
27   TITLE:=An mDNS/DNS-SD implementation
28   URL:=http://www.avahi.org/
29 endef
30
31 define Package/avahi/Default/description
32  An mDNS/DNS-SD (aka RendezVous/Bonjour/ZeroConf) implementation (library).
33  Avahi is a system which facilitates service discovery on a local network --
34  this means that you can plug your laptop or computer into a network and
35  instantly be able to view other people who you can chat with, find printers
36  to print to or find files being shared. This kind of technology is already
37  found in MacOS X (branded 'Rendezvous', 'Bonjour' and sometimes 'ZeroConf')
38  and is very convenient.
39 endef
40
41 define Package/libavahi
42   $(call Package/avahi/Default)
43   SECTION:=libs
44   CATEGORY:=Libraries
45   DEPENDS:=+libdaemon +libpthread
46   TITLE+= (library)
47 endef
48
49 define Package/libavahi/description
50 $(call Package/avahi/Default/description) 
51  .
52  This package contains the mDNS/DNS-SD shared libraries, used by other programs.
53 endef
54
55 define Package/avahi-autoipd
56   $(call Package/avahi/Default)
57   DEPENDS:=+libdaemon
58   TITLE:=IPv4LL network address configuration daemon
59 endef
60
61 define Package/avahi-autoipd/description
62 $(call Package/avahi/Default/description)
63  .
64  This package implements IPv4LL, "Dynamic Configuration of IPv4 Link-Local 
65  Addresses" (IETF RFC3927), a protocol for automatic IP address configuration 
66  from the link-local 169.254.0.0/16 range without the need for a central 
67  server. It is primarily intended to be used in ad-hoc networks which lack a
68  DHCP server.
69 endef
70
71 define Package/avahi-daemon
72   $(call Package/avahi/Default)
73   DEPENDS:=+libavahi +libexpat
74   TITLE+= (daemon)
75 endef
76
77 define Package/avahi-daemon/description
78 $(call Package/avahi/Default/description)
79  .
80  This package contains an mDNS/DNS-SD daemon.
81 endef
82
83 define Package/avahi-daemon/conffiles
84 /etc/avahi/avahi-daemon.conf
85 /etc/avahi/services/http.service
86 /etc/avahi/services/ssh.service
87 endef
88
89 define Package/avahi-dnsconfd
90   $(call Package/avahi/Default)
91   DEPENDS:=+libavahi
92   TITLE:=An Unicast DNS server from mDNS/DNS-SD configuration daemon
93 endef
94
95 define Package/avahi-dnsconfd/description
96 $(call Package/avahi/Default/description)
97  .
98  This package contains an Unicast DNS server from mDNS/DNS-SD configuration
99  daemon, which may be used to configure conventional DNS servers using mDNS
100  in a DHCP-like fashion. Especially useful on IPv6.
101 endef
102
103 CONFIGURE_ARGS+= \
104         --enable-shared \
105         --enable-static \
106         --disable-glib \
107         --disable-gobject \
108         --disable-qt3 \
109         --disable-qt4 \
110         --disable-gtk \
111         --disable-dbus \
112         --with-xml=expat \
113         --disable-dbm \
114         --enable-gdbm \
115         --enable-libdaemon \
116         --disable-python \
117         --disable-pygtk \
118         --disable-python-dbus \
119         --disable-mono \
120         --disable-monodoc \
121         --disable-doxygen-doc \
122         --disable-doxygen-dot \
123         --disable-doxygen-man \
124         --disable-doxygen-rtf \
125         --disable-doxygen-xml \
126         --disable-doxygen-chm \
127         --disable-doxygen-chi \
128         --disable-doxygen-html \
129         --disable-doxygen-ps \
130         --disable-doxygen-pdf \
131         --disable-xmltoman \
132         --with-distro=none \
133         --with-avahi-user=nobody \
134         --with-avahi-group=nogroup \
135         --with-autoipd-user=nobody \
136         --with-autoipd-group=nogroup
137
138 ifneq ($(CONFIG_SSP_SUPPORT),y)
139 CONFIGURE_ARGS+= \
140         --disable-stack-protector
141 endif
142
143 CONFIGURE_VARS+= \
144         CFLAGS="$$$$CFLAGS -DNDEBUG" \
145         $(if $(CONFIG_LINUX_2_4),ac_cv_header_sys_inotify_h=no)
146
147 define Build/Compile
148         $(MAKE) -C $(PKG_BUILD_DIR) \
149                 DESTDIR="$(PKG_INSTALL_DIR)" \
150                 all install
151 endef
152
153 define Build/InstallDev
154         mkdir -p $(1)/usr/include
155         $(CP) $(PKG_INSTALL_DIR)/usr/include/avahi-{common,core} $(1)/usr/include/
156         mkdir -p $(1)/usr/lib
157         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-{common,core}.{a,so*} $(1)/usr/lib/
158         mkdir -p $(1)/usr/lib/pkgconfig
159         $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/avahi-core.pc $(1)/usr/lib/pkgconfig/
160 endef
161
162 define Package/libavahi/install
163         $(INSTALL_DIR) $(1)/usr/lib
164         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-{common,core}.so.* $(1)/usr/lib/
165 endef
166
167 define Package/avahi-autoipd/install
168         $(INSTALL_DIR) $(1)/etc/avahi
169         $(CP) $(PKG_INSTALL_DIR)/etc/avahi/avahi-autoipd.action $(1)/etc/avahi/
170         $(INSTALL_DIR) $(1)/usr/sbin
171         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-autoipd $(1)/usr/sbin/
172 endef
173
174 define Package/avahi-daemon/install
175         $(INSTALL_DIR) $(1)/usr/sbin
176         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-daemon $(1)/usr/sbin/
177         $(INSTALL_DIR) $(1)/etc/avahi
178         $(INSTALL_DATA) ./files/avahi-daemon.conf $(1)/etc/avahi/
179         $(INSTALL_DIR) $(1)/etc/avahi/services
180         $(INSTALL_DATA) ./files/service-http $(1)/etc/avahi/services/http.service
181         $(INSTALL_DATA) ./files/service-ssh $(1)/etc/avahi/services/ssh.service
182         $(INSTALL_DIR) $(1)/etc/init.d
183         $(INSTALL_BIN) ./files/avahi-daemon.init $(1)/etc/init.d/avahi-daemon
184 endef
185
186 define Package/avahi-dnsconfd/install
187         $(INSTALL_DIR) $(1)/etc/avahi
188         $(CP) $(PKG_INSTALL_DIR)/etc/avahi/avahi-dnsconfd.action $(1)/etc/avahi/
189         $(INSTALL_DIR) $(1)/usr/sbin
190         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-dnsconfd $(1)/usr/sbin/
191 endef
192
193 $(eval $(call BuildPackage,libavahi))
194 $(eval $(call BuildPackage,avahi-autoipd))
195 $(eval $(call BuildPackage,avahi-daemon))
196 $(eval $(call BuildPackage,avahi-dnsconfd))
197
198 $(eval $(call RequireCommand,intltool-update, \
199         $(PKG_NAME) requires intltool >= 0.35.0 \
200 ))
201