move json-c to packages feed
[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 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
146 define Build/Compile
147 $(MAKE) -C $(PKG_BUILD_DIR) \
148 DESTDIR="$(PKG_INSTALL_DIR)" \
149 all install
150 endef
151
152 define Build/InstallDev
153 mkdir -p $(1)/usr/include
154 $(CP) $(PKG_INSTALL_DIR)/usr/include/avahi-{common,core} $(1)/usr/include/
155 mkdir -p $(1)/usr/lib
156 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-{common,core}.{a,so*} $(1)/usr/lib/
157 mkdir -p $(1)/usr/lib/pkgconfig
158 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/avahi-core.pc $(1)/usr/lib/pkgconfig/
159 endef
160
161 define Package/libavahi/install
162 $(INSTALL_DIR) $(1)/usr/lib
163 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libavahi-{common,core}.so.* $(1)/usr/lib/
164 endef
165
166 define Package/avahi-autoipd/install
167 $(INSTALL_DIR) $(1)/etc/avahi
168 $(CP) $(PKG_INSTALL_DIR)/etc/avahi/avahi-autoipd.action $(1)/etc/avahi/
169 $(INSTALL_DIR) $(1)/usr/sbin
170 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-autoipd $(1)/usr/sbin/
171 endef
172
173 define Package/avahi-daemon/install
174 $(INSTALL_DIR) $(1)/usr/sbin
175 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-daemon $(1)/usr/sbin/
176 $(INSTALL_DIR) $(1)/etc/avahi
177 $(INSTALL_DATA) ./files/avahi-daemon.conf $(1)/etc/avahi/
178 $(INSTALL_DIR) $(1)/etc/avahi/services
179 $(INSTALL_DATA) ./files/service-http $(1)/etc/avahi/services/http.service
180 $(INSTALL_DATA) ./files/service-ssh $(1)/etc/avahi/services/ssh.service
181 $(INSTALL_DIR) $(1)/etc/init.d
182 $(INSTALL_BIN) ./files/avahi-daemon.init $(1)/etc/init.d/avahi-daemon
183 endef
184
185 define Package/avahi-dnsconfd/install
186 $(INSTALL_DIR) $(1)/etc/avahi
187 $(CP) $(PKG_INSTALL_DIR)/etc/avahi/avahi-dnsconfd.action $(1)/etc/avahi/
188 $(INSTALL_DIR) $(1)/usr/sbin
189 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/avahi-dnsconfd $(1)/usr/sbin/
190 endef
191
192 $(eval $(call BuildPackage,libavahi))
193 $(eval $(call BuildPackage,avahi-autoipd))
194 $(eval $(call BuildPackage,avahi-daemon))
195 $(eval $(call BuildPackage,avahi-dnsconfd))
196
197 $(eval $(call RequireCommand,intltool-update, \
198 $(PKG_NAME) requires intltool >= 0.35.0 \
199 ))
200