lighttpd: update to lighttpd 1.4.74 release hash
[feed/packages.git] / net / lighttpd / Makefile
1 #
2 # Copyright (C) 2006-2018 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=lighttpd
11 PKG_VERSION:=1.4.74
12 PKG_RELEASE:=1
13 # release candidate ~rcX testing; remove for release
14 #PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
15
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
17 PKG_SOURCE_URL:=https://download.lighttpd.net/lighttpd/releases-1.4.x
18 PKG_HASH:=5c08736e83088f7e019797159f306e88ec729abe976dc98fb3bed71b9d3e53b5
19
20 PKG_MAINTAINER:=Glenn Strauss <gstrauss@gluelogic.com>
21 PKG_LICENSE:=BSD-3-Clause
22 PKG_LICENSE_FILES:=COPYING
23 PKG_CPE_ID:=cpe:/a:lighttpd:lighttpd
24
25 # list config packages affecting MESON_ARGS
26 REBUILD_MODULES:= \
27 authn_dbi \
28 authn_gssapi \
29 authn_ldap \
30 authn_pam \
31 authn_sasl \
32 deflate \
33 gnutls \
34 magnet \
35 maxminddb \
36 mbedtls \
37 nss \
38 openssl \
39 vhostdb_dbi \
40 vhostdb_ldap \
41 vhostdb_mysql \
42 vhostdb_pgsql \
43 webdav \
44 wolfssl \
45
46 PKG_CONFIG_DEPENDS:= \
47 $(patsubst %,CONFIG_PACKAGE_lighttpd-mod-%,$(REBUILD_MODULES)) \
48 CONFIG_LIGHTTPD_PCRE2 \
49 CONFIG_LIGHTTPD_CRYPTOLIB_NONE \
50 CONFIG_LIGHTTPD_CRYPTOLIB_NETTLE \
51 CONFIG_LIGHTTPD_CRYPTOLIB_MBEDTLS \
52 CONFIG_LIGHTTPD_CRYPTOLIB_WOLFSSL
53
54 PKG_BUILD_DEPENDS:= \
55 LIGHTTPD_PCRE2:pcre2 \
56 LIGHTTPD_CRYPTOLIB_NETTLE:nettle \
57 LIGHTTPD_CRYPTOLIB_MBEDTLS:mbedtls \
58 LIGHTTPD_CRYPTOLIB_WOLFSSL:wolfssl
59
60 include $(INCLUDE_DIR)/package.mk
61 include $(INCLUDE_DIR)/meson.mk
62
63 # choose crypto lib for lighttpd to use for crypto algorithms
64 # (separate from lighttpd TLS modules, which are each standalone)
65 cryptolibdep= \
66 +LIGHTTPD_CRYPTOLIB_NETTLE:libnettle \
67 +LIGHTTPD_CRYPTOLIB_MBEDTLS:libmbedtls \
68 +LIGHTTPD_CRYPTOLIB_WOLFSSL:libwolfssl
69 ifdef CONFIG_LIGHTTPD_CRYPTOLIB_MBEDTLS
70 TARGET_CPPFLAGS += -DFORCE_MBEDTLS_CRYPTO
71 else ifdef CONFIG_LIGHTTPD_CRYPTOLIB_WOLFSSL
72 TARGET_CPPFLAGS += -DFORCE_WOLFSSL_CRYPTO
73 endif
74
75 define Package/lighttpd/Default
76 SECTION:=net
77 CATEGORY:=Network
78 SUBMENU:=Web Servers/Proxies
79 URL:=https://www.lighttpd.net/
80 endef
81
82 define Package/lighttpd
83 $(call Package/lighttpd/Default)
84 MENU:=1
85 DEPENDS:=+libpthread +LIGHTTPD_LOGROTATE:logrotate \
86 +LIGHTTPD_PCRE2:libpcre2 \
87 $(cryptolibdep)
88 TITLE:=A flexible and lightweight web server
89 endef
90
91 define Package/lighttpd/config
92 config LIGHTTPD_SSL
93 bool "SSL support (recommended)"
94 depends on PACKAGE_lighttpd
95 default y
96 help
97 Implements SSL support in lighttpd (using libopenssl). This
98 option is enabled by default for backwards compatibility.
99 Select one TLS module below if you enable the SSL engine in
100 your lighttpd configuration file.
101 (mod_gnutls, mod_mbedtls, mod_nss, mod_openssl, mod_wolfssl)
102
103 config LIGHTTPD_SSL_DEPENDS
104 bool
105 depends on LIGHTTPD_SSL
106 default PACKAGE_lighttpd-mod-mbedtls || PACKAGE_lighttpd-mod-wolfssl || PACKAGE_lighttpd-mod-gnutls || PACKAGE_lighttpd-mod-nss
107
108 config LIGHTTPD_SSL_SELECT
109 tristate
110 depends on LIGHTTPD_SSL
111 default m if !LIGHTTPD_SSL_DEPENDS
112 select PACKAGE_lighttpd-mod-openssl
113
114 config LIGHTTPD_PCRE2
115 bool "PCRE2 support (recommended)"
116 depends on PACKAGE_lighttpd
117 default y
118 help
119 PCRE2 regular expressions for lighttpd.conf conditions
120
121 if PACKAGE_lighttpd
122 choice
123 prompt "crypto library"
124 default LIGHTTPD_CRYPTOLIB_MBEDTLS
125 help
126 library to use for cryptographic algorithms
127
128 config LIGHTTPD_CRYPTOLIB_NONE
129 bool "None"
130
131 config LIGHTTPD_CRYPTOLIB_NETTLE
132 bool "libnettle"
133
134 config LIGHTTPD_CRYPTOLIB_MBEDTLS
135 bool "libmbedtls"
136
137 config LIGHTTPD_CRYPTOLIB_WOLFSSL
138 bool "libwolfssl"
139 endchoice
140 endif
141
142 config LIGHTTPD_LOGROTATE
143 bool "Logrotate support"
144 depends on PACKAGE_lighttpd
145 default n
146 help
147 It adds support for logrotate functionality.
148 endef
149
150 MESON_ARGS += \
151 -Dwith_brotli=disabled \
152 -Dwith_bzip=disabled \
153 -Dwith_dbi=$(if $(CONFIG_PACKAGE_lighttpd-mod-authn_dbi)$(CONFIG_PACKAGE_lighttpd-mod-vhostdb_dbi),enabled,disabled) \
154 -Dwith_fam=disabled \
155 -Dwith_gnutls=$(if $(CONFIG_PACKAGE_lighttpd-mod-gnutls),true,false) \
156 -Dwith_krb5=$(if $(CONFIG_PACKAGE_lighttpd-mod-authn_gssapi),enabled,disabled) \
157 -Dwith_ldap=$(if $(CONFIG_PACKAGE_lighttpd-mod-authn_ldap)$(CONFIG_PACKAGE_lighttpd-mod-vhostdb_ldap),enabled,disabled) \
158 -Dwith_libunwind=disabled \
159 -Dwith_lua=$(if $(CONFIG_PACKAGE_lighttpd-mod-magnet),true,false) \
160 -Dlua_version=lua \
161 -Dwith_maxminddb=$(if $(CONFIG_PACKAGE_lighttpd-mod-maxminddb),enabled,disabled) \
162 -Dwith_mbedtls=$(if $(CONFIG_PACKAGE_lighttpd-mod-mbedtls),true,false) \
163 -Dwith_mysql=$(if $(CONFIG_PACKAGE_lighttpd-mod-vhostdb_mysql),enabled,disabled) \
164 -Dwith_nettle=$(if $(CONFIG_LIGHTTPD_CRYPTOLIB_NETTLE),true,false) \
165 -Dwith_nss=$(if $(CONFIG_PACKAGE_lighttpd-mod-nss),true,false) \
166 -Dwith_openssl=$(if $(CONFIG_PACKAGE_lighttpd-mod-openssl),true,false) \
167 -Dwith_pam=$(if $(CONFIG_PACKAGE_lighttpd-mod-authn_pam),enabled,disabled) \
168 -Dwith_pcre2=$(if $(CONFIG_LIGHTTPD_PCRE2),true,false) \
169 -Dwith_pgsql=$(if $(CONFIG_PACKAGE_lighttpd-mod-vhostdb_pgsql),enabled,disabled) \
170 -Dwith_sasl=$(if $(CONFIG_PACKAGE_lighttpd-mod-authn_sasl),enabled,disabled) \
171 -Dwith_webdav_locks=$(if $(CONFIG_PACKAGE_lighttpd-mod-webdav),enabled,disabled) \
172 -Dwith_webdav_props=$(if $(CONFIG_PACKAGE_lighttpd-mod-webdav),enabled,disabled) \
173 -Dwith_wolfssl=$(if $(CONFIG_PACKAGE_lighttpd-mod-wolfssl),true,false) \
174 -Dwith_xattr=false \
175 -Dwith_zlib=$(if $(CONFIG_PACKAGE_lighttpd-mod-deflate),enabled,disabled) \
176 -Dwith_zstd=disabled
177
178 BASE_MODULES:=dirlisting h2
179
180 define Package/lighttpd/conffiles
181 /etc/lighttpd/lighttpd.conf
182 endef
183
184 define Package/lighttpd/install
185 $(INSTALL_DIR) $(1)/etc/lighttpd
186 $(INSTALL_DATA) ./files/lighttpd.conf $(1)/etc/lighttpd/
187 $(INSTALL_DATA) $(PKG_BUILD_DIR)/doc/config/conf.d/mime.conf $(1)/etc/lighttpd/
188 $(INSTALL_DIR) $(1)/etc/lighttpd/conf.d
189 $(INSTALL_DIR) $(1)/etc/init.d
190 $(INSTALL_BIN) ./files/lighttpd.init $(1)/etc/init.d/lighttpd
191 $(INSTALL_DIR) $(1)/usr/lib/lighttpd
192 for m in $(BASE_MODULES); do \
193 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lighttpd/mod_$$$${m}.so $(1)/usr/lib/lighttpd/ ; \
194 done
195 $(INSTALL_DIR) $(1)/usr/sbin
196 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/lighttpd $(1)/usr/sbin/
197
198 ifneq ($(strip $(CONFIG_LIGHTTPD_LOGROTATE)),)
199 $(INSTALL_DIR) $(1)/etc/logrotate.d
200 $(CP) ./files/lighttpd.logrotate $(1)/etc/logrotate.d/lighttpd.conf
201 endif
202 endef
203
204 define BuildPlugin
205 define Package/lighttpd-mod-$(1)
206 $(call Package/lighttpd/Default)
207 DEPENDS:=lighttpd
208 ifneq ($(3),)
209 DEPENDS+= $(3)
210 endif
211 TITLE:=$(2) module
212 endef
213
214 define Package/lighttpd-mod-$(1)/conffiles
215 /etc/lighttpd/conf.d/$(4)-$(1).conf
216 endef
217
218 ifneq ($(SDK)$(CONFIG_PACKAGE_lighttpd-mod-$(1)),)
219 define Package/lighttpd-mod-$(1)/install
220 $(INSTALL_DIR) $$(1)/usr/lib/lighttpd
221 $(CP) $(PKG_INSTALL_DIR)/usr/lib/lighttpd/mod_$(1).so $$(1)/usr/lib/lighttpd
222 $(INSTALL_DIR) $$(1)/etc/lighttpd/conf.d
223 if [ -f $(PKG_BUILD_DIR)/doc/config/conf.d/$(1).conf ]; then \
224 $(CP) $(PKG_BUILD_DIR)/doc/config/conf.d/$(1).conf $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf ; \
225 if ! grep -qF 'mod_$(1)' $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf; then \
226 sed -i "`sed '/^##/ !q' $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf | wc -l` i\
227 server.modules += ( \"mod_$(1)\" )" $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf ; \
228 fi \
229 else \
230 echo 'server.modules += ( "mod_$(1)" )' > $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf ; \
231 fi
232 endef
233 endif
234
235 $$(eval $$(call BuildPackage,lighttpd-mod-$(1)))
236 endef
237
238 $(eval $(call BuildPackage,lighttpd))
239
240 $(eval $(call BuildPlugin,auth,Authentication,$(cryptolibdep),20))
241 $(eval $(call BuildPlugin,authn_dbi,DBI-based authentication,lighttpd-mod-auth libdbi $(cryptolibdep),20))
242 $(eval $(call BuildPlugin,authn_file,File-based authentication,lighttpd-mod-auth $(cryptolibdep),20))
243 $(eval $(call BuildPlugin,authn_gssapi,Kerberos-based authentication,lighttpd-mod-auth krb5-libs $(cryptolibdep),20))
244 $(eval $(call BuildPlugin,authn_ldap,LDAP-based authentication,lighttpd-mod-auth libopenldap,20))
245 $(eval $(call BuildPlugin,authn_pam,PAM-based authentication,lighttpd-mod-auth libpam,20))
246 $(eval $(call BuildPlugin,authn_sasl,SASL-based authentication,lighttpd-mod-auth libsasl2,20))
247
248 $(eval $(call BuildPlugin,accesslog,Access logging,,30))
249 $(eval $(call BuildPlugin,ajp13,AJP13 Tomcat connector,,30))
250 $(eval $(call BuildPlugin,cgi,CGI,,30))
251 $(eval $(call BuildPlugin,deflate,Compress dynamic output,+PACKAGE_lighttpd-mod-deflate:zlib,30))
252 $(eval $(call BuildPlugin,extforward,Extract client,,30))
253 $(eval $(call BuildPlugin,gnutls,TLS using gnutls,@LIGHTTPD_SSL +PACKAGE_lighttpd-mod-gnutls:libgnutls,30))
254 $(eval $(call BuildPlugin,magnet,Magnet,+PACKAGE_lighttpd-mod-magnet:liblua,30))
255 $(eval $(call BuildPlugin,maxminddb,MaxMind DB,+PACKAGE_lighttpd-mod-maxminddb:libmaxminddb,30))
256 $(eval $(call BuildPlugin,mbedtls,TLS using mbedtls,@LIGHTTPD_SSL +PACKAGE_lighttpd-mod-mbedtls:libmbedtls,30))
257 $(eval $(call BuildPlugin,nss,TLS using nss,@LIGHTTPD_SSL +PACKAGE_lighttpd-mod-nss:libnss,30))
258 $(eval $(call BuildPlugin,openssl,TLS using openssl,@LIGHTTPD_SSL +PACKAGE_lighttpd-mod-openssl:libopenssl,30))
259 $(eval $(call BuildPlugin,proxy,Proxy,,30))
260 $(eval $(call BuildPlugin,rrdtool,RRDtool,rrdtool1,30))
261 $(eval $(call BuildPlugin,sockproxy,sockproxy,,30))
262 $(eval $(call BuildPlugin,ssi,SSI,,30))
263 $(eval $(call BuildPlugin,status,Server status display,,30))
264 $(eval $(call BuildPlugin,userdir,User directory,,30))
265 $(eval $(call BuildPlugin,vhostdb,Virtual Host Database,,30))
266 $(eval $(call BuildPlugin,vhostdb_dbi,Virtual Host Database (DBI),lighttpd-mod-vhostdb +PACKAGE_lighttpd-mod-vhostdb_dbi:libdbi,30))
267 $(eval $(call BuildPlugin,vhostdb_ldap,Virtual Host Database (LDAP),lighttpd-mod-vhostdb +PACKAGE_lighttpd-mod-vhostdb_ldap:libopenldap,30))
268 $(eval $(call BuildPlugin,vhostdb_mysql,Virtual Host Database (MariaDB),lighttpd-mod-vhostdb +PACKAGE_lighttpd-mod-vhostdb_mysql:libmariadb,30))
269 $(eval $(call BuildPlugin,vhostdb_pgsql,Virtual Host Database (PostgreSQL),lighttpd-mod-vhostdb +PACKAGE_lighttpd-mod-vhostdb_pgsql:libpq,30))
270 $(eval $(call BuildPlugin,webdav,WebDAV,+PACKAGE_lighttpd-mod-webdav:libsqlite3 +PACKAGE_lighttpd-mod-webdav:libxml2,30))
271 $(eval $(call BuildPlugin,webdav_min,WebDAV,,30))
272 $(eval $(call BuildPlugin,wolfssl,TLS using wolfssl,@LIGHTTPD_SSL +PACKAGE_lighttpd-mod-wolfssl:libwolfssl,30))
273 $(eval $(call BuildPlugin,wstunnel,Websocket tunneling,$(cryptolibdep),30))
274
275 # (similar to BuildPlugin, but without associated .so)
276 define BuiltinPlugin
277 define Package/lighttpd-mod-$(1)
278 $(call Package/lighttpd/Default)
279 DEPENDS:=lighttpd
280 ifneq ($(3),)
281 DEPENDS+= $(3)
282 endif
283 TITLE:=$(2) module
284 endef
285
286 define Package/lighttpd-mod-$(1)/conffiles
287 /etc/lighttpd/conf.d/$(4)-$(1).conf
288 endef
289
290 ifneq ($(SDK)$(CONFIG_PACKAGE_lighttpd-mod-$(1)),)
291 define Package/lighttpd-mod-$(1)/install
292 $(INSTALL_DIR) $$(1)/etc/lighttpd/conf.d
293 if [ -f $(PKG_BUILD_DIR)/doc/config/conf.d/$(1).conf ]; then \
294 $(CP) $(PKG_BUILD_DIR)/doc/config/conf.d/$(1).conf $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf ; \
295 if ! grep -qF 'mod_$(1)' $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf; then \
296 sed -i "`sed '/^##/ !q' $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf | wc -l` i\
297 server.modules += ( \"mod_$(1)\" )" $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf ; \
298 fi \
299 else \
300 echo 'server.modules += ( "mod_$(1)" )' > $$(1)/etc/lighttpd/conf.d/$(4)-$(1).conf ; \
301 fi
302 endef
303 endif
304
305 $$(eval $$(call BuildPackage,lighttpd-mod-$(1)))
306 endef
307
308 # included in BASE_MODULES:=dirlisting h2
309 #$(eval $(call BuildPlugin,dirlisting,dirlisting,,30))
310 #$(eval $(call BuildPlugin,h2,HTTP/2,,30))
311
312 # included in base lighttpd executable;
313 # no longer loaded as separate dynamic modules
314 # no longer in BASE_MODULES
315 #$(eval $(call BuiltinPlugin,indexfile,indexfile,,30))
316 #$(eval $(call BuiltinPlugin,staticfile,staticfile,,30))
317
318 # included in base lighttpd executable;
319 # no longer loaded as separate dynamic modules
320 # though still need to be enabled in config
321 $(eval $(call BuiltinPlugin,access,Access restrictions,,30))
322 $(eval $(call BuiltinPlugin,alias,Directory alias,,30))
323 $(eval $(call BuiltinPlugin,evhost,Enhanced Virtual-Hosting,,30))
324 $(eval $(call BuiltinPlugin,expire,Expire,,30))
325 $(eval $(call BuiltinPlugin,fastcgi,FastCGI,,30))
326 $(eval $(call BuiltinPlugin,redirect,URL redirection,+LIGHTTPD_PCRE2:libpcre2,10))
327 $(eval $(call BuiltinPlugin,rewrite,URL rewriting,+LIGHTTPD_PCRE2:libpcre2,30))
328 $(eval $(call BuiltinPlugin,scgi,SCGI,,30))
329 $(eval $(call BuiltinPlugin,setenv,Environment variable setting,,30))
330 $(eval $(call BuiltinPlugin,simple_vhost,Simple virtual hosting,,30))