1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
#
# Copyright (C) 2006-2012 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=lighttpd
PKG_VERSION:=1.4.35
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=http://download.lighttpd.net/lighttpd/releases-1.4.x
PKG_MD5SUM:=c7ae774eab4cb7ac85e41b712f4ee9ba
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/lighttpd/Default
SUBMENU:=Web Servers/Proxies
SECTION:=net
CATEGORY:=Network
URL:=http://www.lighttpd.net/
MAINTAINER:=W. Michael Petullo <mike@flyn.org>
endef
define Package/lighttpd
$(call Package/lighttpd/Default)
MENU:=1
DEPENDS:=+LIGHTTPD_SSL:libopenssl +libpcre +libpthread
TITLE:=A flexible and lightweight web server
endef
define Package/lighttpd/config
config LIGHTTPD_SSL
bool "SSL support"
depends on PACKAGE_lighttpd
default y
help
Implements SSL support in lighttpd (using libopenssl). This
option is required if you enable the SSL engine in your
lighttpd confguration file.
endef
define Package/lighttpd-mod-access
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Access restrictions module
endef
define Package/lighttpd-mod-accesslog
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Access logging module
endef
define Package/lighttpd-mod-alias
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Directory alias module
endef
define Package/lighttpd-mod-auth
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Authentication module
endef
define Package/lighttpd-mod-cgi
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=CGI module
endef
define Package/lighttpd-mod-cml
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Cache Meta Language module
endef
define Package/lighttpd-mod-compress
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd +zlib
TITLE:=Compress output module
endef
define Package/lighttpd-mod-evasive
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Evasive module
endef
define Package/lighttpd-mod-evhost
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Exnhanced Virtual-Hosting module
endef
define Package/lighttpd-mod-expire
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Expire module
endef
define Package/lighttpd-mod-extforward
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Extract client IP module
endef
define Package/lighttpd-mod-fastcgi
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=FastCGI module
endef
define Package/lighttpd-mod-flv-streaming
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=flv streaming module
endef
define Package/lighttpd-mod-magnet
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=magnet module
endef
define Package/lighttpd-mod-mysql-vhost
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd +libmysqlclient
TITLE:=Mysql virtual hosting module
endef
define Package/lighttpd-mod-proxy
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Proxy module
endef
define Package/lighttpd-mod-redirect
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd +libpcre
TITLE:=URL redirection module
endef
define Package/lighttpd-mod-rewrite
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd +libpcre
TITLE:=URL rewriting module
endef
define Package/lighttpd-mod-rrdtool
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=rrdtool module
endef
define Package/lighttpd-mod-scgi
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=SCGI module
endef
define Package/lighttpd-mod-secdownload
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Secure and fast download module
endef
define Package/lighttpd-mod-setenv
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Environment variable setting module
endef
define Package/lighttpd-mod-simple-vhost
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Simple virtual hosting module
endef
define Package/lighttpd-mod-ssi
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd +libpcre
TITLE:=SSI module
endef
define Package/lighttpd-mod-status
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=Server status display module
endef
define Package/lighttpd-mod-trigger-b4-dl
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd +libpcre
TITLE:=Trigger before download module
endef
define Package/lighttpd-mod-userdir
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=User directory module
endef
define Package/lighttpd-mod-usertrack
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd
TITLE:=User tracking module
endef
define Package/lighttpd-mod-webdav
$(call Package/lighttpd/Default)
DEPENDS:=lighttpd +libsqlite3 +libuuid +libxml2
TITLE:=WebDAV module
endef
CONFIGURE_ARGS+= \
--libdir=/usr/lib/lighttpd \
--sysconfdir=/etc/lighttpd \
--enable-shared \
--enable-static \
--disable-rpath \
--without-attr \
--without-bzip2 \
--without-fam \
--without-gdbm \
--without-ldap \
--without-lua \
--without-memcache \
--without-mysql \
--with-pcre \
--without-valgrind \
$(call autoconf_bool,CONFIG_IPV6,ipv6)
CONFIGURE_VARS+= \
PCRE_LIB="-lpcre" \
ifneq ($(strip $(CONFIG_LIGHTTPD_SSL)),)
CONFIGURE_ARGS+= \
--with-openssl="$(STAGING_DIR)/usr"
else
CONFIGURE_ARGS+= \
--without-openssl
endif
ifneq ($(SDK)$(CONFIG_PACKAGE_lighttpd-mod-webdav),)
CONFIGURE_ARGS+= \
--with-webdav-locks \
--with-webdav-props
# XXX: needed by sqlite3 to prevent segfaults in mod_webdav.so
CONFIGURE_VARS+= \
LIBS="-lpthread"
else
CONFIGURE_ARGS+= \
--without-webdav-locks \
--without-webdav-props
endif
define Build/Configure
$(call Build/Configure/Default)
# XXX: override pcre (mis)detection by ./configure when cross-compiling
echo "#define HAVE_LIBPCRE 1" >>$(PKG_BUILD_DIR)/config.h
echo "#define HAVE_PCRE_H 1" >>$(PKG_BUILD_DIR)/config.h
endef
define Package/lighttpd/conffiles
/etc/lighttpd/lighttpd.conf
endef
define Package/lighttpd/install
$(INSTALL_DIR) $(1)/etc/lighttpd
$(INSTALL_DATA) ./files/lighttpd.conf $(1)/etc/lighttpd/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/lighttpd.init $(1)/etc/init.d/lighttpd
$(INSTALL_DIR) $(1)/usr/lib/lighttpd
for m in dirlisting indexfile staticfile; do \
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lighttpd/mod_$$$${m}.so $(1)/usr/lib/lighttpd/ ; \
done
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/lighttpd $(1)/usr/sbin/
endef
define BuildPlugin
define Package/$(1)/install
[ -z "$(2)" ] || $(INSTALL_DIR) $$(1)/usr/lib/lighttpd
for m in $(2); do \
$(CP) $(PKG_INSTALL_DIR)/usr/lib/lighttpd/mod_$$$$$$$${m}.so $$(1)/usr/lib/lighttpd/ ; \
done
endef
$$(eval $$(call BuildPackage,$(1)))
endef
$(eval $(call BuildPackage,lighttpd))
$(eval $(call BuildPlugin,lighttpd-mod-access,access))
$(eval $(call BuildPlugin,lighttpd-mod-accesslog,accesslog))
$(eval $(call BuildPlugin,lighttpd-mod-alias,alias))
$(eval $(call BuildPlugin,lighttpd-mod-auth,auth))
$(eval $(call BuildPlugin,lighttpd-mod-cgi,cgi))
$(eval $(call BuildPlugin,lighttpd-mod-cml,cml))
$(eval $(call BuildPlugin,lighttpd-mod-compress,compress))
$(eval $(call BuildPlugin,lighttpd-mod-evasive,evasive))
$(eval $(call BuildPlugin,lighttpd-mod-evhost,evhost))
$(eval $(call BuildPlugin,lighttpd-mod-expire,expire))
$(eval $(call BuildPlugin,lighttpd-mod-extforward,extforward))
$(eval $(call BuildPlugin,lighttpd-mod-fastcgi,fastcgi))
$(eval $(call BuildPlugin,lighttpd-mod-flv-streaming,flv_streaming))
$(eval $(call BuildPlugin,lighttpd-mod-magnet,magnet))
$(eval $(call BuildPlugin,lighttpd-mod-proxy,proxy))
$(eval $(call BuildPlugin,lighttpd-mod-redirect,redirect))
$(eval $(call BuildPlugin,lighttpd-mod-rewrite,rewrite))
$(eval $(call BuildPlugin,lighttpd-mod-rrdtool,rrdtool))
$(eval $(call BuildPlugin,lighttpd-mod-scgi,scgi))
$(eval $(call BuildPlugin,lighttpd-mod-secdownload,secdownload))
$(eval $(call BuildPlugin,lighttpd-mod-setenv,setenv))
$(eval $(call BuildPlugin,lighttpd-mod-simple-vhost,simple_vhost))
$(eval $(call BuildPlugin,lighttpd-mod-ssi,ssi))
$(eval $(call BuildPlugin,lighttpd-mod-status,status))
$(eval $(call BuildPlugin,lighttpd-mod-trigger-b4-dl,trigger_b4_dl))
$(eval $(call BuildPlugin,lighttpd-mod-userdir,userdir))
$(eval $(call BuildPlugin,lighttpd-mod-usertrack,usertrack))
$(eval $(call BuildPlugin,lighttpd-mod-webdav,webdav))
|