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