]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd.spec
- up to 1.4.31
[packages/lighttpd.git] / lighttpd.spec
1
2 # TODO:
3 # - provide or autogenerate self signed cert in post, so after installing
4 #   lighttpd-ssl server will still work
5 #
6 # Conditional build:
7 %bcond_without  tests           # build with tests
8 %bcond_without  xattr           # support of extended attributes
9 %bcond_without  ipv6            # IPv4-only version (doesn't require IPv6 in kernel)
10 %bcond_without  largefile       # largefile support (see notes above)
11 %bcond_without  ssl             # ssl support
12 %bcond_without  mysql           # mysql support in mod_mysql_vhost
13 %bcond_without  ldap            # ldap support in mod_auth
14 %bcond_without  lua             # LUA support in mod_cml (needs LUA >= 5.1)
15 %bcond_with     memcache        # memcached support in mod_cml / mod_trigger_b4_dl
16 %bcond_with     gamin           # gamin for reducing number of stat() calls.
17                                 # NOTE: must be enabled in config: server.stat-cache-engine = "fam"
18 %bcond_with     gdbm            # gdbm in mod_trigger_b4_dl
19 %bcond_with     webdav_props    # properties in mod_webdav (includes extra sqlite3/libxml deps)
20 %bcond_with     webdav_locks    # webdav locks with extra efsprogs deps
21 %bcond_with     valgrind        # compile code with valgrind support.
22 %bcond_with     deflate         # build deflate module (needs patch update with current svn)
23
24 %if %{with webdav_locks}
25 %define         webdav_progs    1
26 %endif
27
28 Summary:        Fast and light HTTP server
29 Summary(pl.UTF-8):      Szybki i lekki serwer HTTP
30 Name:           lighttpd
31 Version:        1.4.31
32 Release:        1
33 License:        BSD
34 Group:          Networking/Daemons/HTTP
35 Source0:        http://download.lighttpd.net/lighttpd/releases-1.4.x/%{name}-%{version}.tar.bz2
36 # Source0-md5:  c718cc27658240d307b8a1d1c7c4bb54
37 Source1:        %{name}.init
38 Source2:        %{name}.conf
39 Source3:        %{name}.user
40 Source4:        %{name}.logrotate
41 Source5:        %{name}.sysconfig
42 Source6:        %{name}-mime.types.sh
43 Source7:        http://glen.alkohol.ee/pld/lighty/favicon.ico
44 # Source7-md5:  00fcac5b861a54f5eb147a589504d480
45 Source8:        light_button.png
46 # Source8-md5:  3e1008ee1d3d6d390cf81fe3072b4f50
47 Source9:        light_logo.png
48 # Source9-md5:  cbb7f0676e51ee2e26cf004df293fc62
49 Source10:       pld_button.png
50 # Source10-md5: 185afa921e81bd726b9f0f9f0909dc6e
51 Source11:       %{name}-pld.html
52 Source12:       %{name}.monitrc
53 Source13:       branch.sh
54 Source14:       TODO
55 Source15:       %{name}.upstart
56 Source16:       %{name}.tmpfiles
57 Source100:      %{name}-mod_access.conf
58 Source101:      %{name}-mod_accesslog.conf
59 Source102:      %{name}-mod_alias.conf
60 Source103:      %{name}-mod_auth.conf
61 Source104:      %{name}-mod_cgi.conf
62 Source105:      %{name}-mod_cml.conf
63 Source106:      %{name}-mod_compress.conf
64 Source107:      %{name}-mod_deflate.conf
65 Source108:      %{name}-mod_dirlisting.conf
66 Source109:      %{name}-mod_evasive.conf
67 Source110:      %{name}-mod_evhost.conf
68 Source111:      %{name}-mod_expire.conf
69 Source112:      %{name}-mod_fastcgi.conf
70 Source113:      %{name}-mod_flv_streaming.conf
71 Source114:      %{name}-mod_indexfile.conf
72 Source115:      %{name}-mod_proxy.conf
73 Source116:      %{name}-mod_redirect.conf
74 Source117:      %{name}-mod_rewrite.conf
75 Source118:      %{name}-mod_rrdtool.conf
76 Source119:      %{name}-mod_scgi.conf
77 Source120:      %{name}-mod_secdownload.conf
78 Source121:      %{name}-mod_setenv.conf
79 Source122:      %{name}-mod_simple_vhost.conf
80 Source123:      %{name}-mod_ssi.conf
81 Source124:      %{name}-mod_staticfile.conf
82 Source125:      %{name}-mod_status.conf
83 Source126:      %{name}-mod_trigger_b4_dl.conf
84 Source127:      %{name}-mod_userdir.conf
85 Source128:      %{name}-mod_usertrack.conf
86 Source129:      %{name}-mod_webdav.conf
87 Source130:      %{name}-php-spawned.conf
88 Source131:      %{name}-php-external.conf
89 Source132:      %{name}-ssl.conf
90 Source133:      %{name}-mod_mysql_vhost.conf
91 Source134:      %{name}-mod_magnet.conf
92 Source135:      %{name}-mod_extforward.conf
93 Source136:      %{name}-mod_h264_streaming.conf
94 Source137:      %{name}-mod_cgi_php.conf
95 #Patch100:      %{name}-branch.diff
96 Patch0:         %{name}-use_bin_sh.patch
97 Patch1:         %{name}-mod_evasive-status_code.patch
98 Patch2:         %{name}-mod_h264_streaming.patch
99 Patch3:         %{name}-branding.patch
100 Patch5:         %{name}-mod_deflate.patch
101 Patch6:         test-port-setup.patch
102 #Patch:         %{name}-modinit-before-fork.patch
103 #Patch:         %{name}-errorlog-before-fork.patch
104 URL:            http://www.lighttpd.net/
105 %{?with_xattr:BuildRequires:    attr-devel}
106 BuildRequires:  autoconf >= 2.57
107 BuildRequires:  automake
108 BuildRequires:  bzip2-devel
109 BuildRequires:  fcgi-devel
110 %{?with_gamin:BuildRequires:    gamin-devel}
111 %{?with_gdbm:BuildRequires:     gdbm-devel}
112 %{?with_memcache:BuildRequires: libmemcache-devel}
113 BuildRequires:  libtool
114 BuildRequires:  libuuid-devel
115 %{?with_webdav_props:BuildRequires:     libxml2-devel}
116 %{?with_lua:BuildRequires:      lua51-devel}
117 BuildRequires:  mailcap >= 2.1.14-4.4
118 %{?with_mysql:BuildRequires:    mysql-devel}
119 %{?with_ldap:BuildRequires:     openldap-devel}
120 %{?with_ssl:BuildRequires:      openssl-devel}
121 BuildRequires:  pcre-devel
122 BuildRequires:  pkgconfig
123 BuildRequires:  rpmbuild(macros) >= 1.647
124 %{?with_webdav_props:BuildRequires:     sqlite3-devel}
125 %{?with_valgrind:BuildRequires: valgrind}
126 BuildRequires:  which
127 BuildRequires:  zlib-devel
128 Requires(post,preun):   /sbin/chkconfig
129 Requires(postun):       /usr/sbin/groupdel
130 Requires(postun):       /usr/sbin/userdel
131 Requires(pre):  /bin/id
132 Requires(pre):  /usr/bin/getgid
133 Requires(pre):  /usr/lib/rpm/user_group.sh
134 Requires(pre):  /usr/sbin/groupadd
135 Requires(pre):  /usr/sbin/useradd
136 Requires(pre):  /usr/sbin/usermod
137 Requires:       %{name}-mod_dirlisting = %{version}-%{release}
138 Requires:       %{name}-mod_indexfile = %{version}-%{release}
139 Requires:       %{name}-mod_staticfile = %{version}-%{release}
140 Requires:       rc-scripts >= 0.4.3.0
141 Requires:       rpm-whiteout >= 1.5
142 Suggests:       %{name}-mod_accesslog
143 Provides:       group(http)
144 Provides:       group(lighttpd)
145 Provides:       user(lighttpd)
146 Provides:       webserver
147 Provides:       webserver(mime)
148 Conflicts:      logrotate < 3.7-4
149 # for the posttrans scriptlet, conflicts because in vserver environment rpm package is not installed.
150 Conflicts:      rpm < 4.4.2-0.2
151 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
152
153 %define         _libdir         %{_prefix}/%{_lib}/%{name}
154 %define         _lighttpddir    /home/services/%{name}
155 %define         _sysconfdir     /etc/%{name}
156
157 %description
158 lighttpd is a secure, fast, compliant and very flexible web-server
159 which has been optimized for high-performance environments. It has a
160 very low memory footprint compared to other webservers and takes care
161 of cpu-load. Its advanced feature-set (FastCGI, CGI, Auth,
162 Output-Compression, URL-Rewriting and many more) make lighttpd the
163 perfect webserver-software for every server that is suffering load
164 problems.
165
166 %description -l pl.UTF-8
167 lighttpd jest bezpiecznym, szybkim, przyjaznym i bardzo elastycznym
168 serwerem WWW, który został zoptymalizowany pod kątem
169 wysokowydajnościowych środowisk. Zajmuje bardzo małą ilość pamięci w
170 porównaniu do innych serwerów WWW oraz dba o zajętość procesora.
171 Szeroki zestaw opcji (FastCGI, CGI, uwierzytelnianie, kompresja
172 wyjścia, przepisywanie URL-i i wiele innych) czynią z lighttpd
173 doskonałe oprogramowanie web-serwerowe na każdy serwer cierpiący z
174 powodu problemów z obciążeniem.
175
176 %package mod_access
177 Summary:        lighttpd module for making access restrictions
178 Summary(pl.UTF-8):      Moduł lighttpd ograniczający dostęp
179 Group:          Networking/Daemons/HTTP
180 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModAccess
181 Requires:       %{name} = %{version}-%{release}
182 Provides:       webserver(access)
183
184 %description mod_access
185 The access module is used to deny access to files with given trailing
186 path names.
187
188 %description mod_access -l pl.UTF-8
189 Moduł access służy do ograniczania dostępu do plików o podanych
190 ścieżkach.
191
192 %package mod_accesslog
193 Summary:        lighttpd module to record access logs
194 Summary(pl.UTF-8):      Moduł lighttpd do zapisu logów dostępu
195 Group:          Networking/Daemons/HTTP
196 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModAccessLog
197 Requires:       %{name} = %{version}-%{release}
198
199 %description mod_accesslog
200 CLF like by default, flexible like Apache.
201
202 %description mod_accesslog -l pl.UTF-8
203 Domyślnie podobny do CLF, elastyczny jak Apache.
204
205 %package mod_alias
206 Summary:        lighttpd module for making URL aliasing
207 Summary(pl.UTF-8):      Moduł lighttpd odpowiadający za aliasy URL-i
208 Group:          Networking/Daemons/HTTP
209 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModAlias
210 Requires:       %{name} = %{version}-%{release}
211 Provides:       webserver(alias)
212
213 %description mod_alias
214 The alias module is used to specify a special document-root for a
215 given URL-subset.
216
217 %description mod_alias -l pl.UTF-8
218 Modul alias służy do określania specjalnego drzewa (document-roota)
219 dla podanego podzbioru URL-i.
220
221 %package mod_auth
222 Summary:        lighttpd module for authentication support
223 Summary(pl.UTF-8):      Moduł lighttpd do obsługi uwierzytelniania
224 Group:          Networking/Daemons/HTTP
225 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModAuth
226 Requires:       %{name} = %{version}-%{release}
227 Provides:       webserver(auth)
228
229 %description mod_auth
230 lighttpd supportes both authentication method described by RFC 2617:
231 basic and digest.
232
233 %description mod_auth -l pl.UTF-8
234 lighttpd obsługuje obie metody uwierzytelniania opisane w RFC 2617:
235 basic i digest.
236
237 %package mod_cgi
238 Summary:        lighttpd module for CGI handling
239 Summary(pl.UTF-8):      Moduł lighttpd do obsługi CGI
240 Group:          Networking/Daemons/HTTP
241 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModCGI
242 Requires:       %{name} = %{version}-%{release}
243 Requires:       %{name}-mod_alias = %{version}-%{release}
244 Provides:       webserver(cgi)
245
246 %description mod_cgi
247 The cgi module provides a CGI-conforming interface.
248
249 CGI programs allow you to enhance the functionality of the server in a
250 very straight and simple way.
251
252 %description mod_cgi -l pl.UTF-8
253 Moduł cgi udostępnia interfejs zgodny z CGI.
254
255 Programy CGI pozwalają rozszerzać funkcjonalność serwera w bardzo
256 prosty i naturalny sposób.
257
258 %package mod_cgi_php
259 Summary:        lighttpd module for CGI handling PHP scripts
260 Summary(pl.UTF-8):      Moduł lighttpd do obsługi skryptów PHP przez CGI
261 Group:          Networking/Daemons/HTTP
262 Requires:       %{name}-mod_cgi = %{version}-%{release}
263 Requires:       php(cgi)
264 Provides:       webserver(php)
265
266 %description mod_cgi_php
267 The cgi module provides a CGI-conforming interface for PHP scripts.
268
269 CGI programs allow you to enhance the functionality of the server in a
270 very straight and simple way.
271
272 %description mod_cgi_php -l pl.UTF-8
273 Moduł cgi udostępnia interfejs zgodny z CGI do wywoływania skryptów
274 PHP.
275
276 Programy CGI pozwalają rozszerzać funkcjonalność serwera w bardzo
277 prosty i naturalny sposób.
278
279 %package mod_cml
280 Summary:        lighttpd module for Cache Meta Language
281 Summary(pl.UTF-8):      Moduł Cache Meta Language
282 Group:          Networking/Daemons/HTTP
283 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModCML
284 Requires:       %{name} = %{version}-%{release}
285
286 %description mod_cml
287 CML is a Meta language to describe the dependencies of a page at one
288 side and building a page from its fragments on the other side using
289 LUA.
290
291 %description mod_cml -l pl.UTF-8
292 CML to metajęzyk służący z jednej strony do opisu zależności strony i
293 z drugiej strony do budowania strony z fragmentów przy użyciu LUA.
294
295 %package mod_compress
296 Summary:        lighttpd module for output compression
297 Summary(pl.UTF-8):      Moduł lighttpd do kompresji wyjścia
298 Group:          Networking/Daemons/HTTP
299 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModCompress
300 Requires:       %{name} = %{version}-%{release}
301
302 %description mod_compress
303 Output compression reduces the network load and can improve the
304 overall throughput of the webserver.
305
306 Only static content is supported up to now.
307
308 The server negotiates automatically which compression method is used.
309 Supported are gzip, deflate, bzip.
310
311 %description mod_compress -l pl.UTF-8
312 Kompresja wyjścia zmniejsza obciążenie sieci i może poprawić całkowitą
313 przepustowość serwera WWW.
314
315 Jak na razie obsługiwana jest tylko statyczna treść.
316
317 Serwer automatycznie negocjuje, która metoda kompresji jest używana.
318 Obsługiwane są gzip, deflate i bzip.
319
320 %package mod_deflate
321 Summary:        lighttpd module for output compression using deflate method
322 Summary(pl.UTF-8):      Moduł lighttpd do kompresji wyjścia metodą deflate
323 Group:          Networking/Daemons/HTTP
324 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Mod_Deflate
325 Requires:       %{name} = %{version}-%{release}
326
327 %description mod_deflate
328 mod_deflate can compress any output from lighttpd static or dynamic.
329 It doesn't support caching compressed output like mod_compress.
330
331 %description mod_deflate -l pl.UTF-8
332 mod_deflate potrafi kompresować statyczne i dynamiczne wyjście z
333 lighttpd. Nie obsługuje cache'owania wyniku kompresji, jak robi to
334 mod_compress.
335
336 %package mod_dirlisting
337 Summary:        lighttpd module for directory listings
338 Summary(pl.UTF-8):      Moduł lighttpd do tworzenia listingów katalogów
339 Group:          Networking/Daemons/HTTP
340 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModDirlisting
341 Requires:       %{name} = %{version}-%{release}
342
343 %description mod_dirlisting
344 mod_dirlisting generates HTML based directory listings with full CSS
345 control.
346
347 %description mod_dirlisting -l pl.UTF-8
348 mod_dirlisting tworzy listingi katalogów w formacie HTML z pełną
349 kontrolą CSS.
350
351 %package mod_evasive
352 Summary:        lighttpd evasive module
353 Summary(pl.UTF-8):      Moduł evasive dla lighttpd
354 Group:          Networking/Daemons/HTTP
355 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModEvasive
356 Requires:       %{name} = %{version}-%{release}
357
358 %description mod_evasive
359 lighttpd evasive module.
360
361 %description mod_evasive -l pl.UTF-8
362 Moduł evasive dla lighttpd.
363
364 %package mod_evhost
365 Summary:        lighttpd module for enhanced virtual-hosting
366 Summary(pl.UTF-8):      Moduł lighttpd rozszerzający obsługę hostów wirtualnych
367 Group:          Networking/Daemons/HTTP
368 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModEVhost
369 Requires:       %{name} = %{version}-%{release}
370
371 %description mod_evhost
372 mod_evhost builds the document-root based on a pattern which contains
373 wildcards. Those wildcards can represent parts of the submitted
374 hostname.
375
376 %description mod_evhost -l pl.UTF-8
377 mod_evhost tworzy document-root w oparciu o wzorzec zawierający znaki
378 wieloznaczne (wildcards). Znaki te reprezentują części przekazanej
379 nazwy hosta.
380
381 %package mod_expire
382 Summary:        lighttpd module for controlling the expiration of content in caches
383 Summary(pl.UTF-8):      Moduł lighttpd sterujący wygasaniem treści w cache'ach
384 Group:          Networking/Daemons/HTTP
385 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModExpire
386 Requires:       %{name} = %{version}-%{release}
387 Provides:       webserver(expires)
388
389 %description mod_expire
390 mod_expire controls the setting of the the Expire response header.
391
392 %description mod_expire -l pl.UTF-8
393 mod_expire steruje ustawianiem nagłówka odpowiedzi Expire.
394
395 %package mod_extforward
396 Summary:        lighttpd module to extract the client's "real" IP from X-Forwarded-For header
397 Summary(pl.UTF-8):      Moduł lighttpd wyciągający "prawdziwy" IP klienta z nagłówka X-Forwarded-For
398 Group:          Networking/Daemons/HTTP
399 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/DocsModExtForward
400 Requires:       %{name} = %{version}-%{release}
401
402 %description mod_extforward
403 This module will extract the client's "real" IP from X-Forwarded-For
404 header which is added by Squid or other proxies. It might be useful
405 for servers behind reverse proxy servers.
406
407 %description mod_extforward -l pl.UTF-8
408 Ten moduł wyciąga "prawdziwy" IP klienta z nagłówka X-Forwarded-For
409 dodawanego przez Squida czy inne proxy. Może być przydatny dla
410 serwerów stojących za odwrotnymi serwerami proxy.
411
412 %package mod_fastcgi
413 Summary:        lighttpd module for FastCGI interface
414 Summary(pl.UTF-8):      Moduł lighttpd do interfejsu FastCGI
415 Group:          Networking/Daemons/HTTP
416 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModFastCGI
417 Requires:       %{name} = %{version}-%{release}
418
419 %description mod_fastcgi
420 The FastCGI interface is the fastest and most secure way to interface
421 external process-handlers like Perl, PHP and your self-written
422 applications.
423
424 %description mod_fastcgi -l pl.UTF-8
425 Interfejs FastCGI to najszybszy i najbezpieczniejszy sposób
426 komunikacji z zewnętrznymi programami obsługującymi procesy, takimi
427 jak Perl, PHP czy własne aplikacje.
428
429 %package mod_flv_streaming
430 Summary:        lighttpd module for flv streaming
431 Summary(pl.UTF-8):      Moduł lighttpd do streamingu flv
432 Group:          Networking/Daemons/HTTP
433 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModFLVStreaming
434 Requires:       %{name} = %{version}-%{release}
435
436 %description mod_flv_streaming
437 lighttpd module for flv streaming.
438
439 %description mod_flv_streaming -l pl.UTF-8
440 Moduł lighttpd do streamingu flv.
441
442 %package mod_h264_streaming
443 Summary:        lighttpd module for h264 streaming
444 Summary(pl.UTF-8):      Moduł lighttpd do emisji strumieni h264
445 License:        CC 3.0 BY-NC-SA
446 Group:          Networking/Daemons/HTTP
447 URL:            http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Lighttpd-Version2
448 Requires:       %{name} = %{version}-%{release}
449
450 %description mod_h264_streaming
451 A lighttpd plugin for pseudo-streaming QuickTime/MPEG-4 files.
452
453 %description mod_h264_streaming -l pl.UTF-8
454 Moduł lighttpd do pseudostreamingu plików QuickTime/MPEG-4.
455
456 %package mod_indexfile
457 Summary:        lighttpd indexfile module
458 Summary(pl.UTF-8):      Moduł indexfile dla lighttpd
459 Group:          Networking/Daemons/HTTP
460 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Index-file-names.Details
461 Requires:       %{name} = %{version}-%{release}
462 Provides:       webserver(indexfile)
463
464 %description mod_indexfile
465 indexfile module.
466
467 %description mod_indexfile -l pl.UTF-8
468 Moduł indexfile.
469
470 %package mod_magnet
471 Summary:        lighttpd powermagnet module
472 Summary(pl.UTF-8):      Moduł powermagnet dla lighttpd
473 Group:          Networking/Daemons/HTTP
474 URL:            http://redmine.lighttpd.net/wiki/lighttpd/Docs:ModMagnet
475 Requires:       %{name} = %{version}-%{release}
476
477 %description mod_magnet
478 mod_magnet is a module to control the request handling in lighty.
479
480 %description mod_magnet -l pl.UTF-8
481 mod_magnet to moduł sterujący obsługą żądań w lighty.
482
483 %package mod_mysql_vhost
484 Summary:        lighttpd module for MySQL based vhosting
485 Summary(pl.UTF-8):      Moduł lighttpd obsługujący vhosty oparte na MySQL-u
486 Group:          Networking/Daemons/HTTP
487 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModMySQLVhost
488 Requires:       %{name} = %{version}-%{release}
489 Conflicts:      %{name}-mod_simple_vhost
490
491 %description mod_mysql_vhost
492 This module provides virtual hosts (vhosts) based on a MySQL table.
493
494 %description mod_mysql_vhost -l pl.UTF-8
495 Ten moduł udostępnia wirtualne hosty (vhosty) oparte na tabeli MySQL.
496
497 %package mod_proxy
498 Summary:        lighttpd module for proxying requests
499 Summary(pl.UTF-8):      Moduł lighttpd do przekazywania żądań
500 Group:          Networking/Daemons/HTTP
501 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModProxy
502 Requires:       %{name} = %{version}-%{release}
503
504 %description mod_proxy
505 The proxy module a simplest way to connect lighttpd to Java servers
506 which have a HTTP-interface.
507
508 %description mod_proxy -l pl.UTF-8
509 Moduł proxy to najprostszy sposób łączenia lighttpd z serwerami Javy
510 mającymi interfejs HTTP.
511
512 %package mod_proxy_core
513 Summary:        lighttpd module for proxying requests
514 Summary(pl.UTF-8):      Moduł lighttpd do przekazywania żądań
515 Group:          Networking/Daemons/HTTP
516 URL:            http://blog.lighttpd.net/articles/2006/07/18/mod_proxy_core-commited-to-svn
517 Requires:       %{name} = %{version}-%{release}
518
519 %description mod_proxy_core
520 The proxy module a simplest way to connect lighttpd to java servers
521 which have a HTTP-interface.
522
523 This is the new proxy code.
524
525 %description mod_proxy_core -l pl.UTF-8
526 Moduł proxy to najprostszy sposób łączenia lighttpd z serwerami Javy
527 mającymi interfejs HTTP.
528
529 Ten pakiet zawiera nowy moduł proxy.
530
531 %package mod_redirect
532 Summary:        lighttpd module for URL redirects
533 Summary(pl.UTF-8):      Moduł lighttpd do przekierowań URL-i
534 Group:          Networking/Daemons/HTTP
535 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModRedirect
536 Requires:       %{name} = %{version}-%{release}
537
538 %description mod_redirect
539 With mod_redirect module you can redirect a set of URLs externally.
540
541 %description mod_redirect -l pl.UTF-8
542 Przy użyciu modułu mod_redirect można przekierować zbiór URL-i na
543 zewnątrz.
544
545 %package mod_rewrite
546 Summary:        lighttpd module for internal redirects, URL rewrite
547 Summary(pl.UTF-8):      Moduł lighttpd do wewnętrznych przekierowań i przepisywania URL-i
548 Group:          Networking/Daemons/HTTP
549 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModRewrite
550 Requires:       %{name} = %{version}-%{release}
551 Provides:       webserver(rewrite)
552
553 %description mod_rewrite
554 This module allows you rewrite a set of URLs interally in the
555 webserver BEFORE they are handled.
556
557 %description mod_rewrite -l pl.UTF-8
558 Ten moduł pozwala na przepisywanie zbioru URL-i wewnętrznie w serwerze
559 WWW _przed_ ich obsługą.
560
561 %package mod_rrdtool
562 Summary:        lighttpd module for monitoring traffic and server load
563 Summary(pl.UTF-8):      Moduł lighttpd do monitorowania ruchu i obciążenia serwera
564 Group:          Networking/Daemons/HTTP
565 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModRRDTool
566 Requires:       %{name} = %{version}-%{release}
567 Requires:       rrdtool
568
569 %description mod_rrdtool
570 RRD is a system to store and display time-series data (i.e. network
571 bandwidth, machine-room temperature, server load average).
572
573 With this module you can monitor the traffic and load on the
574 webserver.
575
576 %description mod_rrdtool -l pl.UTF-8
577 RRD to system przechowywania i wyświetlania danych zależnych od czasu
578 (np. obciążenia sieci, temperatury w serwerowni, średniego obciążenia
579 serwera).
580
581 Przy użyciu tego modułu można monitorować ruch i obciążenie serwera
582 WWW.
583
584 %package mod_scgi
585 Summary:        lighttpd module for SCGI interface
586 Summary(pl.UTF-8):      Moduł lighttpd do interfejsu SCGI
587 Group:          Networking/Daemons/HTTP
588 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSCGI
589 Requires:       %{name} = %{version}-%{release}
590
591 %description mod_scgi
592 SCGI is a fast and simplified CGI interface. It is mostly used by
593 Python + WSGI.
594
595 %description mod_scgi -l pl.UTF-8
596 SCGI to szybki i uproszczony interfejs CGI. Jest używany głównie przez
597 Pythona z WSGI.
598
599 %package mod_secdownload
600 Summary:        lighttpd module for secure and fast downloading
601 Summary(pl.UTF-8):      Moduł lighttpd do bezpiecznego i szybkiego ściągania danych
602 Group:          Networking/Daemons/HTTP
603 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSecDownload
604 Requires:       %{name} = %{version}-%{release}
605
606 %description mod_secdownload
607 With this module you can easily achieve authenticated file requests
608 and a countermeasure against deep-linking.
609
610 %description mod_secdownload -l pl.UTF-8
611 Przy użyciu tego modułu można łatwo umożliwić ściąganie plików z
612 uwierzytelnieniem i zapobiec używaniu bezpośrednich odnośników.
613
614 %package mod_setenv
615 Summary:        lighttpd module for setting conditional request headers
616 Summary(pl.UTF-8):      Moduł lighttpd do ustawiania warunkowych nagłówków żądań
617 Group:          Networking/Daemons/HTTP
618 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSetEnv
619 Requires:       %{name} = %{version}-%{release}
620 Provides:       webserver(setenv)
621
622 %description mod_setenv
623 mod_setenv is used to add request headers.
624
625 %description mod_setenv -l pl.UTF-8
626 mod_setenv służy do dodawania nagłówków żądań.
627
628 %package mod_simple_vhost
629 Summary:        lighttpd module for simple virtual-hosting
630 Summary(pl.UTF-8):      Moduł lighttpd do prostych hostów wirtualnych
631 Group:          Networking/Daemons/HTTP
632 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSimpleVhost
633 Requires:       %{name} = %{version}-%{release}
634 Conflicts:      %{name}-mod_mysql_vhost
635
636 %description mod_simple_vhost
637 lighttpd module for simple virtual-hosting.
638
639 %description mod_simple_vhost -l pl.UTF-8
640 Moduł lighttpd do prostych hostów wirtualnych.
641
642 %package mod_ssi
643 Summary:        lighttpd module for server-side includes
644 Summary(pl.UTF-8):      Moduł lighttpd do SSI (server-side includes)
645 Group:          Networking/Daemons/HTTP
646 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSSI
647 Requires:       %{name} = %{version}-%{release}
648
649 %description mod_ssi
650 The module for server-side includes provides a compatability layer for
651 NSCA/Apache SSI.
652
653 %description mod_ssi -l pl.UTF-8
654 Moduł server-side includes udostępnia warstwę kompatybilności z SSI
655 znanym z NSCA/Apache'a.
656
657 %package mod_staticfile
658 Summary:        lighttpd module for static file serving
659 Summary(pl.UTF-8):      Moduł lighttpd do serwowania statycznych plików
660 Group:          Networking/Daemons/HTTP
661 Requires:       %{name} = %{version}-%{release}
662
663 %description mod_staticfile
664 lighttpd module for static file serving.
665
666 %description mod_staticfile -l pl.UTF-8
667 Moduł lighttpd do serwowania statycznych plików.
668
669 %package mod_status
670 Summary:        lighttpd module for displaying server status
671 Summary(pl.UTF-8):      Moduł lighttpd do wyświetlania stanu serwera
672 Group:          Networking/Daemons/HTTP
673 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModStatus
674 Requires:       %{name} = %{version}-%{release}
675
676 %description mod_status
677 mod_status displays the server's status and configuration.
678
679 %description mod_status -l pl.UTF-8
680 mod_status wyświetla stan i konfigurację serwera.
681
682 %package mod_trigger_b4_dl
683 Summary:        Trigger before Download
684 Summary(pl.UTF-8):      Wyzwalacz przed ściąganiem
685 Group:          Networking/Daemons/HTTP
686 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModTriggerBeforeDownload
687 Requires:       %{name} = %{version}-%{release}
688
689 %description mod_trigger_b4_dl
690 Another anti hot-linking module.
691
692 %description mod_trigger_b4_dl -l pl.UTF-8
693 Jeszcze jeden moduł blokujący bezpośrednie linkowanie.
694
695 %package mod_userdir
696 Summary:        lighttpd module for user homedirs
697 Summary(pl.UTF-8):      Moduł lighttpd obsługujący katalogi domowe użytkowników
698 Group:          Networking/Daemons/HTTP
699 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModUserDir
700 Requires:       %{name} = %{version}-%{release}
701
702 %description mod_userdir
703 The userdir module provides a simple way to link user-based
704 directories into the global namespace of the webserver.
705
706 %description mod_userdir -l pl.UTF-8
707 Moduł userdir udostępnia prosty sposób włączenia katalogów
708 użytkowników do globalnej przestrzeni nazw serwera WWW.
709
710 %package mod_usertrack
711 Summary:        lighttpd usertrack module
712 Summary(pl.UTF-8):      Moduł usertrack dla lighttpd
713 Group:          Networking/Daemons/HTTP
714 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModUserTrack
715 Requires:       %{name} = %{version}-%{release}
716
717 %description mod_usertrack
718 lighttpd usertrack module.
719
720 %description mod_usertrack -l pl.UTF-8
721 Moduł usertrack dla lighttpd.
722
723 %package mod_webdav
724 Summary:        WebDAV module for lighttpd
725 Summary(pl.UTF-8):      Moduł WebDAV dla libghttpd
726 Group:          Networking/Daemons/HTTP
727 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModWebDAV
728 Requires:       %{name} = %{version}-%{release}
729
730 %description mod_webdav
731 The WebDAV module is a very minimalistic implementation of RFC 2518.
732 Minimalistic means that not all operations are implementated yet.
733
734 So far we have
735 - PROPFIND
736 - OPTIONS
737 - MKCOL
738 - DELETE
739 - PUT
740 - LOCK (experimental)
741
742 and the usual GET, POST, HEAD from HTTP/1.1.
743
744 So far mounting a webdav resource into Windows XP works and the basic
745 litmus tests are passed.
746
747 %description mod_webdav -l pl.UTF-8
748 Moduł WebDAV to bardzo minimalistyczna implementacja RFC 2518.
749 Minimalistyczna oznacza, że jeszcze nie wszystkie operacje są
750 zaimplementowane. Jak na razie są:
751 - PROPFIND
752 - OPTIONS
753 - MKCOL
754 - DELETE
755 - PUT
756 - LOCK (experimental)
757
758 oraz zwykłe GET, POST, HEAD z HTTP/1.1.
759
760 Jak na razie montowanie zasobu webdav pod Windows XP działa i
761 podstawowe testy lakmusowe przechodzą.
762
763 %package php-spawned
764 Summary:        PHP support via FastCGI, spawned by lighttpd
765 Summary(pl.UTF-8):      Obsługa PHP przez FastCGI, uruchamiane przez lighttpd
766 Group:          Networking/Daemons/HTTP
767 Requires:       %{name} = %{version}-%{release}
768 Requires:       %{name}-mod_fastcgi = %{version}-%{release}
769 Requires:       php-fcgi
770 Provides:       webserver(php)
771 Obsoletes:      lighttpd-php-external
772
773 %description php-spawned
774 PHP support via FastCGI, spawned by lighttpd.
775
776 %description php-spawned -l pl.UTF-8
777 Obsługa PHP przez FastCGI, uruchamiane przez lighttpd.
778
779 %package php-external
780 Summary:        PHP support via FastCGI, spawning controlled externally
781 Summary(pl.UTF-8):      Obsługa PHP przez FastCGI, uruchamianie sterowane zewnętrznie
782 Group:          Networking/Daemons/HTTP
783 Requires:       %{name} = %{version}-%{release}
784 Requires:       %{name}-mod_fastcgi = %{version}-%{release}
785 Suggests:       php-fcgi-init
786 Suggests:       php-fpm
787 Obsoletes:      lighttpd-php-spawned
788
789 %description php-external
790 PHP support via FastCGI, spawning controlled externally.
791
792 %description php-external -l pl.UTF-8
793 Obsługa PHP przez FastCGI, uruchamianie sterowane zewnętrznie.
794
795 %package ssl
796 Summary:        lighttpd support for SSLv2 and SSLv3
797 Summary(pl.UTF-8):      Obsługa SSLv2 i SSLv3 dla lighttpd
798 Group:          Networking/Daemons/HTTP
799 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:SSL
800 Requires:       %{name} = %{version}-%{release}
801 Suggests:       ca-certificates
802
803 %description ssl
804 lighttpd support for SSLv2 and SSLv3.
805
806 %description ssl -l pl.UTF-8
807 Obsługa SSLv2 i SSLv3 dla lighttpd.
808
809 %package -n monit-rc-lighttpd
810 Summary:        lighttpd support for monit
811 Summary(pl.UTF-8):      Wsparcie lighttpd dla monit
812 Group:          Applications/System
813 Requires:       %{name} = %{version}-%{release}
814 Requires:       monit
815
816 %description -n monit-rc-lighttpd
817 monitrc file for monitoring lighttpd web server.
818
819 %description -n monit-rc-lighttpd -l pl.UTF-8
820 Plik monitrc do monitorowania serwera www lighttpd.
821
822 %prep
823 %setup -q
824 #%patch100 -p0
825 #%patch4 -p0
826 %patch0 -p1
827 %patch1 -p1
828 %patch2 -p1
829 %patch3 -p1
830 %{?with_deflate:%patch5 -p1}
831 %patch6 -p1
832
833 rm -f src/mod_ssi_exprparser.h # bad patching: should be removed by is emptied instead
834
835 # build mime.types.conf
836 sh %{SOURCE6} /etc/mime.types
837 cp -a %{SOURCE14} PLD-TODO
838
839 %build
840 ver=$(awk '/AC_INIT/{a=$2;gsub(/[\[\],]/, "", a); print a}' configure.ac)
841 if [ "$ver" != "%{version}" ]; then
842         : configure.ac specifies wrong version
843         exit 1
844 fi
845
846 %{__libtoolize}
847 %{__aclocal}
848 %{__autoconf}
849 %{__automake}
850
851 %configure \
852         %{!?with_ipv6:--disable-ipv6} \
853         %{!?with_largefile:--disable-lfs} \
854         %{?with_valgrind:--with-valgrind} \
855         %{?with_xattr:--with-attr} \
856         %{?with_mysql:--with-mysql} \
857         %{?with_ldap:--with-ldap} \
858         %{?with_ssl:--with-openssl} \
859         %{?with_lua:--with-lua=lua51} \
860         %{?with_memcache:--with-memcache} \
861         %{?with_webdav_props:--with-webdav-props} \
862         %{?with_webdav_locks:--with-webdav-locks} \
863         %{?with_gamin:--with-gamin} \
864         %{?with_gdbm:--with-gdbm}
865
866 # -j1 as src/mod_ssi_exprparser.h regeneration deps are broken
867 %{__make} -j1
868
869 %if %{with tests}
870 export LIGHTTPD_TEST_PORT=$((2048 + RANDOM % 10))
871 %{__make} check
872 %endif
873
874 %install
875 rm -rf $RPM_BUILD_ROOT
876 install -d $RPM_BUILD_ROOT{%{_lighttpddir}/{cgi-bin,html},/etc/{logrotate.d,rc.d/init.d,sysconfig,init,monit}} \
877         $RPM_BUILD_ROOT%{_sysconfdir}/{conf,vhosts,webapps}.d \
878         $RPM_BUILD_ROOT{/var/log/{%{name},archive/%{name}},/var/run/%{name}} \
879         $RPM_BUILD_ROOT%{_datadir}/lighttpd/errordocs \
880         $RPM_BUILD_ROOT/var/lib/lighttpd \
881         $RPM_BUILD_ROOT/var/cache/lighttpd/mod_compress \
882         $RPM_BUILD_ROOT%{systemdtmpfilesdir}
883
884 %{__make} install \
885         DESTDIR=$RPM_BUILD_ROOT
886
887 install -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
888 cp -p %{SOURCE2} %{SOURCE3} mime.types.conf $RPM_BUILD_ROOT%{_sysconfdir}
889 cp -p %{SOURCE4} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
890 cp -p %{SOURCE5} $RPM_BUILD_ROOT/etc/sysconfig/%{name}
891 cp -p %{SOURCE12} $RPM_BUILD_ROOT/etc/monit/%{name}.monitrc
892 cp -p %{SOURCE15} $RPM_BUILD_ROOT/etc/init/%{name}.conf
893 install %{SOURCE16} $RPM_BUILD_ROOT%{systemdtmpfilesdir}/%{name}.conf
894
895 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
896
897 # Install lighttpd images
898 cp -p %{SOURCE7} %{SOURCE8} %{SOURCE9} $RPM_BUILD_ROOT%{_lighttpddir}/html
899 cp -p %{SOURCE10} $RPM_BUILD_ROOT%{_lighttpddir}/html/pld_button.png
900 cp -p %{SOURCE11} $RPM_BUILD_ROOT%{_lighttpddir}/html/index.html
901
902 # NOTE: the order of the modules is somewhat important as the modules are
903 # handled in the way they are specified. mod_rewrite should always be the first
904 # module, mod_accesslog always the last.
905
906 cp -p %{SOURCE117} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/10_mod_rewrite.conf
907 cp -p %{SOURCE116} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/11_mod_redirect.conf
908
909 cp -p %{SOURCE100} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_access.conf
910 cp -p %{SOURCE102} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_alias.conf
911 cp -p %{SOURCE103} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_auth.conf
912 cp -p %{SOURCE104} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cgi.conf
913 cp -p %{SOURCE137} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cgi_php.conf
914 cp -p %{SOURCE105} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cml.conf
915 cp -p %{SOURCE107} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_deflate.conf
916 cp -p %{SOURCE108} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_dirlisting.conf
917 cp -p %{SOURCE109} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_evasive.conf
918 cp -p %{SOURCE110} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_evhost.conf
919 cp -p %{SOURCE112} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_fastcgi.conf
920 cp -p %{SOURCE113} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_flv_streaming.conf
921 cp -p %{SOURCE136} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_h264_streaming.conf
922 cp -p %{SOURCE114} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_indexfile.conf
923 cp -p %{SOURCE115} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_proxy.conf
924 cp -p %{SOURCE118} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_rrdtool.conf
925 cp -p %{SOURCE119} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_scgi.conf
926 cp -p %{SOURCE120} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_secdownload.conf
927 cp -p %{SOURCE121} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_setenv.conf
928 cp -p %{SOURCE122} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_simple_vhost.conf
929 cp -p %{SOURCE123} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_ssi.conf
930 cp -p %{SOURCE124} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_staticfile.conf
931 cp -p %{SOURCE125} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_status.conf
932 cp -p %{SOURCE126} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_trigger_b4_dl.conf
933 cp -p %{SOURCE127} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_userdir.conf
934 cp -p %{SOURCE128} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_usertrack.conf
935 cp -p %{SOURCE129} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_webdav.conf
936 cp -p %{SOURCE133} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_mysql_vhost.conf
937
938 cp -p %{SOURCE134} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/55_mod_magnet.conf
939 cp -p %{SOURCE111} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/55_mod_expire.conf
940
941 cp -p %{SOURCE106} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/60_mod_compress.conf
942
943 cp -p %{SOURCE101} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/90_mod_accesslog.conf
944 cp -p %{SOURCE135} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/91_mod_extforward.conf
945
946 cp -p %{SOURCE130} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/php-spawned.conf
947 cp -p %{SOURCE131} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/php-external.conf
948 cp -p %{SOURCE132} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/ssl.conf
949
950 touch $RPM_BUILD_ROOT/var/lib/lighttpd/lighttpd.rrd
951
952 %if %{without mysql}
953 # avoid packaging dummy module
954 %{__rm} $RPM_BUILD_ROOT%{_libdir}/mod_mysql_vhost.so
955 %{__rm} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/*_mod_mysql_vhost.conf
956 %endif
957 %if %{without deflate}
958 %{__rm} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/*_mod_deflate.conf
959 %endif
960
961 touch $RPM_BUILD_ROOT/var/log/%{name}/{access,error,breakage}.log
962
963 %clean
964 rm -rf $RPM_BUILD_ROOT
965
966 %pre
967 %groupadd -g 109 lighttpd
968 %groupadd -g 51 http
969 %useradd -u 116 -d %{_lighttpddir} -c "Lighttpd User" -g lighttpd lighttpd
970 %addusertogroup lighttpd http
971
972 %post
973 for a in access.log error.log breakage.log; do
974         if [ ! -f /var/log/%{name}/$a ]; then
975                 touch /var/log/%{name}/$a
976                 chown lighttpd:lighttpd /var/log/%{name}/$a
977                 chmod 644 /var/log/%{name}/$a
978         fi
979 done
980 /sbin/chkconfig --add %{name}
981
982 %preun
983 if [ "$1" = "0" ]; then
984         %service %{name} stop
985         /sbin/chkconfig --del %{name}
986 fi
987
988 %postun
989 if [ "$1" = "0" ]; then
990         %userremove lighttpd
991         %groupremove lighttpd
992         %groupremove http
993 fi
994
995 %posttrans
996 # minimizing lighttpd restarts logics. we restart webserver:
997 #
998 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
999 # 2. first install of module (post: $1 = 1)
1000 # 2. uninstall of module (postun: $1 = 0)
1001 #
1002 # the strict internal deps between lighttpd modules and
1003 # main package are very important for all this to work.
1004 %service %{name} restart "Lighttpd webserver"
1005 exit 0
1006
1007 # macro called at module post scriptlet
1008 %define module_post \
1009 if [ "$1" = "1" ]; then \
1010         %service -q lighttpd restart \
1011 fi
1012
1013 # macro called at module postun scriptlet
1014 %define module_postun \
1015 if [ "$1" = "0" ]; then \
1016         %service -q lighttpd restart \
1017 fi
1018
1019 # it's sooo annoying to write them
1020 %define module_scripts() \
1021 %post %1 \
1022 %module_post \
1023 \
1024 %postun %1 \
1025 %module_postun
1026
1027 %module_scripts mod_access
1028 %module_scripts mod_accesslog
1029 %module_scripts mod_alias
1030 %module_scripts mod_auth
1031 %module_scripts mod_cgi
1032 %module_scripts mod_cml
1033 %module_scripts mod_compress
1034 %module_scripts mod_deflate
1035 %module_scripts mod_dirlisting
1036 %module_scripts mod_evasive
1037 %module_scripts mod_evhost
1038 %module_scripts mod_expire
1039 %module_scripts mod_extforward
1040 %module_scripts mod_fastcgi
1041 %module_scripts mod_flv_streaming
1042 %module_scripts mod_h264_streaming
1043 %module_scripts mod_indexfile
1044 %module_scripts mod_magnet
1045 %module_scripts mod_mysql_vhost
1046 %module_scripts mod_proxy
1047 %module_scripts mod_redirect
1048 %module_scripts mod_rewrite
1049
1050 %post mod_rrdtool
1051 if [ ! -f /var/lib/lighttpd/lighttpd.rrd ]; then
1052         touch /var/lib/lighttpd/lighttpd.rrd
1053         chown lighttpd:stats /var/lib/lighttpd/lighttpd.rrd
1054         chmod 640 /var/lib/lighttpd/lighttpd.rrd
1055 fi
1056 %module_post
1057
1058 %postun mod_rrdtool
1059 %module_postun
1060
1061 %module_scripts mod_scgi
1062 %module_scripts mod_secdownload
1063 %module_scripts mod_setenv
1064 %module_scripts mod_simple_vhost
1065 %module_scripts mod_ssi
1066 %module_scripts mod_staticfile
1067 %module_scripts mod_status
1068 %module_scripts mod_trigger_b4_dl
1069 %module_scripts mod_userdir
1070 %module_scripts mod_usertrack
1071 %module_scripts mod_webdav
1072
1073 %module_scripts php-spawned
1074 %module_scripts php-external
1075
1076 %triggerpostun -- %{name} < 1.4.18-10.1
1077 if [ -f /etc/lighttpd/conf.d/50_mod_extforward.conf.rpmsave ]; then
1078         cp -f /etc/lighttpd/conf.d/91_mod_extforward.conf{,.rpmnew}
1079         mv -f /etc/lighttpd/conf.d/{50_mod_extforward.conf.rpmsave,91_mod_extforward.conf}
1080 fi
1081
1082 %files
1083 %defattr(644,root,root,755)
1084 %doc NEWS README PLD-TODO
1085 %dir %attr(751,root,lighttpd) %{_sysconfdir}
1086 %dir %attr(750,root,root) %{_sysconfdir}/conf.d
1087 %dir %attr(750,root,root) %{_sysconfdir}/vhosts.d
1088 %dir %attr(750,root,root) %{_sysconfdir}/webapps.d
1089 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}.conf
1090 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/mime.types.conf
1091 %attr(640,root,lighttpd) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*.user
1092 %config(noreplace) %verify(not md5 mtime size) /etc/init/%{name}.conf
1093
1094 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}
1095 %attr(750,root,root) %dir /var/log/archive/%{name}
1096 %dir %attr(751,root,root) /var/log/%{name}
1097 %attr(644,lighttpd,lighttpd) %ghost /var/log/%{name}/access.log
1098 %attr(644,lighttpd,lighttpd) %ghost /var/log/%{name}/error.log
1099 %attr(644,lighttpd,lighttpd) %ghost /var/log/%{name}/breakage.log
1100 %dir %attr(770,root,lighttpd) /var/run/%{name}
1101 %{systemdtmpfilesdir}/%{name}.conf
1102 %attr(754,root,root) /etc/rc.d/init.d/%{name}
1103 %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/*
1104 %attr(755,root,root) %{_sbindir}/lighttpd
1105 %attr(755,root,root) %{_sbindir}/lighttpd-angel
1106 %dir %{_libdir}
1107 %{_mandir}/man8/lighttpd.8*
1108 %dir %{_lighttpddir}
1109 %dir %{_lighttpddir}/cgi-bin
1110 %dir %{_lighttpddir}/html
1111 %config(noreplace,missingok) %verify(not md5 mtime size) %{_lighttpddir}/html/index.html
1112 %config(missingok) %verify(not md5 mtime size) %{_lighttpddir}/html/*.png
1113 %config(missingok) %verify(not md5 mtime size) %{_lighttpddir}/html/*.ico
1114
1115 %dir %{_datadir}/lighttpd
1116 %dir %{_datadir}/lighttpd/errordocs
1117
1118 # rrdtool database is stored there
1119 %dir %attr(771,root,lighttpd) /var/lib/lighttpd
1120
1121 # mod_compress can put cached files there
1122 %dir /var/cache/lighttpd
1123
1124 %files mod_access
1125 %defattr(644,root,root,755)
1126 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_access.conf
1127 %attr(755,root,root) %{_libdir}/mod_access.so
1128
1129 %files mod_accesslog
1130 %defattr(644,root,root,755)
1131 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_accesslog.conf
1132 %attr(755,root,root) %{_libdir}/mod_accesslog.so
1133
1134 %files mod_alias
1135 %defattr(644,root,root,755)
1136 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_alias.conf
1137 %attr(755,root,root) %{_libdir}/mod_alias.so
1138
1139 %files mod_auth
1140 %defattr(644,root,root,755)
1141 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_auth.conf
1142 %attr(755,root,root) %{_libdir}/mod_auth.so
1143
1144 %files mod_cgi
1145 %defattr(644,root,root,755)
1146 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cgi.conf
1147 %attr(755,root,root) %{_libdir}/mod_cgi.so
1148
1149 %files mod_cgi_php
1150 %defattr(644,root,root,755)
1151 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cgi_php.conf
1152
1153 %files mod_cml
1154 %defattr(644,root,root,755)
1155 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cml.conf
1156 %attr(755,root,root) %{_libdir}/mod_cml.so
1157
1158 %files mod_compress
1159 %defattr(644,root,root,755)
1160 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_compress.conf
1161 %attr(755,root,root) %{_libdir}/mod_compress.so
1162 %dir %attr(775,root,lighttpd) /var/cache/lighttpd/mod_compress
1163
1164 %if %{with deflate}
1165 %files mod_deflate
1166 %defattr(644,root,root,755)
1167 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_deflate.conf
1168 %attr(755,root,root) %{_libdir}/mod_deflate.so
1169 %endif
1170
1171 %files mod_dirlisting
1172 %defattr(644,root,root,755)
1173 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_dirlisting.conf
1174 %attr(755,root,root) %{_libdir}/mod_dirlisting.so
1175
1176 %files mod_evasive
1177 %defattr(644,root,root,755)
1178 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_evasive.conf
1179 %attr(755,root,root) %{_libdir}/mod_evasive.so
1180
1181 %files mod_evhost
1182 %defattr(644,root,root,755)
1183 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_evhost.conf
1184 %attr(755,root,root) %{_libdir}/mod_evhost.so
1185
1186 %files mod_expire
1187 %defattr(644,root,root,755)
1188 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_expire.conf
1189 %attr(755,root,root) %{_libdir}/mod_expire.so
1190
1191 %files mod_extforward
1192 %defattr(644,root,root,755)
1193 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_extforward.conf
1194 %attr(755,root,root) %{_libdir}/mod_extforward.so
1195
1196 %files mod_fastcgi
1197 %defattr(644,root,root,755)
1198 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_fastcgi.conf
1199 %attr(755,root,root) %{_libdir}/mod_fastcgi.so
1200
1201 %files mod_flv_streaming
1202 %defattr(644,root,root,755)
1203 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_flv_streaming.conf
1204 %attr(755,root,root) %{_libdir}/mod_flv_streaming.so
1205
1206 %files mod_h264_streaming
1207 %defattr(644,root,root,755)
1208 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_h264_streaming.conf
1209 %attr(755,root,root) %{_libdir}/mod_h264_streaming.so
1210
1211 %files mod_indexfile
1212 %defattr(644,root,root,755)
1213 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_indexfile.conf
1214 %attr(755,root,root) %{_libdir}/mod_indexfile.so
1215
1216 %files mod_magnet
1217 %defattr(644,root,root,755)
1218 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_magnet.conf
1219 %attr(755,root,root) %{_libdir}/mod_magnet.so
1220
1221 %if %{with mysql}
1222 %files mod_mysql_vhost
1223 %defattr(644,root,root,755)
1224 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_mysql_vhost.conf
1225 %attr(755,root,root) %{_libdir}/mod_mysql_vhost.so
1226 %endif
1227
1228 %files mod_proxy
1229 %defattr(644,root,root,755)
1230 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_proxy.conf
1231 %attr(755,root,root) %{_libdir}/mod_proxy.so
1232
1233 %files mod_redirect
1234 %defattr(644,root,root,755)
1235 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_redirect.conf
1236 %attr(755,root,root) %{_libdir}/mod_redirect.so
1237
1238 %files mod_rewrite
1239 %defattr(644,root,root,755)
1240 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_rewrite.conf
1241 %attr(755,root,root) %{_libdir}/mod_rewrite.so
1242
1243 %files mod_rrdtool
1244 %defattr(644,root,root,755)
1245 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_rrdtool.conf
1246 %attr(755,root,root) %{_libdir}/mod_rrdtool.so
1247 %attr(640,lighttpd,stats) %ghost /var/lib/lighttpd/lighttpd.rrd
1248
1249 %files mod_scgi
1250 %defattr(644,root,root,755)
1251 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_scgi.conf
1252 %attr(755,root,root) %{_libdir}/mod_scgi.so
1253
1254 %files mod_secdownload
1255 %defattr(644,root,root,755)
1256 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_secdownload.conf
1257 %attr(755,root,root) %{_libdir}/mod_secdownload.so
1258
1259 %files mod_setenv
1260 %defattr(644,root,root,755)
1261 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_setenv.conf
1262 %attr(755,root,root) %{_libdir}/mod_setenv.so
1263
1264 %files mod_simple_vhost
1265 %defattr(644,root,root,755)
1266 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_simple_vhost.conf
1267 %attr(755,root,root) %{_libdir}/mod_simple_vhost.so
1268
1269 %files mod_ssi
1270 %defattr(644,root,root,755)
1271 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_ssi.conf
1272 %attr(755,root,root) %{_libdir}/mod_ssi.so
1273
1274 %files mod_staticfile
1275 %defattr(644,root,root,755)
1276 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_staticfile.conf
1277 %attr(755,root,root) %{_libdir}/mod_staticfile.so
1278
1279 %files mod_status
1280 %defattr(644,root,root,755)
1281 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_status.conf
1282 %attr(755,root,root) %{_libdir}/mod_status.so
1283
1284 %files mod_trigger_b4_dl
1285 %defattr(644,root,root,755)
1286 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_trigger_b4_dl.conf
1287 %attr(755,root,root) %{_libdir}/mod_trigger_b4_dl.so
1288
1289 %files mod_userdir
1290 %defattr(644,root,root,755)
1291 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_userdir.conf
1292 %attr(755,root,root) %{_libdir}/mod_userdir.so
1293
1294 %files mod_usertrack
1295 %defattr(644,root,root,755)
1296 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_usertrack.conf
1297 %attr(755,root,root) %{_libdir}/mod_usertrack.so
1298
1299 %files mod_webdav
1300 %defattr(644,root,root,755)
1301 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_webdav.conf
1302 %attr(755,root,root) %{_libdir}/mod_webdav.so
1303
1304 %files php-spawned
1305 %defattr(644,root,root,755)
1306 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/php-spawned.conf
1307
1308 %files php-external
1309 %defattr(644,root,root,755)
1310 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/php-external.conf
1311
1312 %files ssl
1313 %defattr(644,root,root,755)
1314 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ssl.conf
1315
1316 %files -n monit-rc-lighttpd
1317 %defattr(644,root,root,755)
1318 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/monit/%{name}.monitrc
This page took 0.145818 seconds and 3 git commands to generate.