fftw3 is broken on avr32
[openwrt/svn-archive/archive.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 TARGET_CFLAGS += $(FPIC)
104 CONFIGURE_ARGS+= \
105 --enable-shared \
106 --enable-static \
107 --disable-glib \
108 --disable-gobject \
109 --disable-qt3 \
110 --disable-qt4 \
111 --disable-gtk \
112 --disable-dbus \
113 --with-xml=expat \
114 --disable-dbm \
115 --enable-gdbm \
116 --enable-libdaemon \
117 --disable-python \
118 --disable-pygtk \
119 --disable-python-dbus \
120 --disable-mono \
121 --disable-monodoc \
122 --disable-doxygen-doc \
123 --disable-doxygen-dot \
124 --disable-doxygen-man \
125 --disable-doxygen-rtf \
126 --disable-doxygen-xml \
127 --disable-doxygen-chm \
128 --disable-doxygen-chi \
129 --disable-doxygen-html \
130 --disable-doxygen-ps \
131 --disable-doxygen-pdf \
132 --disable-xmltoman \
133 --with-distro=none \
134 --with-avahi-user=nobody \
135 --with-avahi-group=nogroup \
136 --with-autoipd-user=nobody \
137 --with-autoipd-group=nogroup
138
139 ifneq ($(CONFIG_SSP_SUPPORT),y)
140 CONFIGURE_ARGS+= \
141 --disable-stack-protector
142 endif
143
144 CONFIGURE_VARS+= \
145 CFLAGS="$$$$CFLAGS -DNDEBUG" \
146 $(if $(CONFIG_LINUX_2_4),ac_cv_header_sys_inotify_h=no)
147
148 define Build/Compile
149 $(MAKE) -C $(PKG_BUILD_DIR) \
150 DESTDIR="$(PKG_INSTALL_DIR)" \
151 all install
152 endef
153
154 define Build/InstallDev
155 mkdir -p $(1)/usr/include
156 $(CP) $(PKG_INSTALL_DIR)/usr/include/avahi-{common,core} $(1)/usr/include/
157 mkdir -p $(1)/usr/lib
158 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-{common,core}.{a,so*} $(1)/usr/lib/
159 mkdir -p $(1)/usr/lib/pkgconfig
160 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/avahi-core.pc $(1)/usr/lib/pkgconfig/
161 endef
162
163 define Package/libavahi/install
164 $(INSTALL_DIR) $(1)/usr/lib
165 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-{common,core}.so.* $(1)/usr/lib/
166 endef
167
168 define Package/avahi-autoipd/install
169 $(INSTALL_DIR) $(1)/etc/avahi
170 $(CP) $(PKG_INSTALL_DIR)/etc/avahi/avahi-autoipd.action $(1)/etc/avahi/
171 $(INSTALL_DIR) $(1)/usr/sbin
172 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-autoipd $(1)/usr/sbin/
173 endef
174
175 define Package/avahi-daemon/install
176 $(INSTALL_DIR) $(1)/usr/sbin
177 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-daemon $(1)/usr/sbin/
178 $(INSTALL_DIR) $(1)/etc/avahi
179 $(INSTALL_DATA) ./files/avahi-daemon.conf $(1)/etc/avahi/
180 $(INSTALL_DIR) $(1)/etc/avahi/services
181 $(INSTALL_DATA) ./files/service-http $(1)/etc/avahi/services/http.service
182 $(INSTALL_DATA) ./files/service-ssh $(1)/etc/avahi/services/ssh.service
183 $(INSTALL_DIR) $(1)/etc/init.d
184 $(INSTALL_BIN) ./files/avahi-daemon.init $(1)/etc/init.d/avahi-daemon
185 endef
186
187 define Package/avahi-dnsconfd/install
188 $(INSTALL_DIR) $(1)/etc/avahi
189 $(CP) $(PKG_INSTALL_DIR)/etc/avahi/avahi-dnsconfd.action $(1)/etc/avahi/
190 $(INSTALL_DIR) $(1)/usr/sbin
191 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-dnsconfd $(1)/usr/sbin/
192 endef
193
194 $(eval $(call BuildPackage,libavahi))
195 $(eval $(call BuildPackage,avahi-autoipd))
196 $(eval $(call BuildPackage,avahi-daemon))
197 $(eval $(call BuildPackage,avahi-dnsconfd))
198
199 $(eval $(call RequireCommand,intltool-update, \
200 $(PKG_NAME) requires intltool >= 0.35.0 \
201 ))
202