]> git.pld-linux.org Git - packages/lighttpd.git/blob - lighttpd.spec
- release 4
[packages/lighttpd.git] / lighttpd.spec
1 # TODO:
2 # - test mysql (failed at this time)
3 # - mysql issue: http://www.freebsd.org/cgi/query-pr.cgi?pr=76866
4 # - fam over gamin is possible, just configure doesn't check other than gamin
5 # - feature stat-cache-fam (doesn't work)
6 # - lighttpd writes early startup messages to stderr, and if started from
7 #   rc-scripts the stderr is closed which causes lighttpd to abort():
8 #   2006-07-20 21:05:52: (server.c.1233) WARNING: unknown config-key: url.rewrite-final (ignored)
9 #
10 # NOTES:
11 # - disable largefile, if you have 2.4 kernel to get sendfile() support, and don't need > 2GB file requests,
12 #   see http://article.gmane.org/gmane.comp.web.lighttpd:722
13 #
14 # Conditional build for lighttpd:
15 %bcond_without  xattr           # support of extended attributes
16 %bcond_without  ipv6            # IPv4-only version (doesn't require IPv6 in kernel)
17 %bcond_without  largefile       # largefile support (see notes above)
18 %bcond_without  ssl             # ssl support
19 %bcond_without  mysql           # mysql support in mod_mysql_vhost
20 %bcond_without  ldap            # ldap support in mod_auth
21 %bcond_without  lua             # LUA support in mod_cml (needs LUA >= 5.1)
22 %bcond_with     memcache        # memcached support in mod_cml / mod_trigger_b4_dl
23 %bcond_with     gamin           # gamin for reducing number of stat() calls.
24                                 # NOTE: must be enabled in config: server.stat-cache-engine = "fam"
25 %bcond_with     gdbm            # gdbm in mod_trigger_b4_dl
26 %bcond_with     webdav_props    # properties in mod_webdav (includes extra sqlite3/libxml deps)
27 %bcond_with     webdav_locks    # webdav locks with extra efsprogs deps
28 %bcond_with     valgrind        # compile code with valgrind support.
29 %bcond_with     deflate         # build deflate module (needs patch update with current svn)
30
31 %if %{with webdav_locks}
32 %define         webdav_progs    1
33 %endif
34
35 Summary:        Fast and light HTTP server
36 Summary(pl.UTF-8):      Szybki i lekki serwer HTTP
37 Name:           lighttpd
38 Version:        1.4.22
39 Release:        4
40 License:        BSD
41 Group:          Networking/Daemons/HTTP
42 Source0:        http://www.lighttpd.net/download/%{name}-%{version}.tar.bz2
43 # Source0-md5:  ed4ca3897eadf419c893b03fee53c982
44 Source1:        %{name}.init
45 Source2:        %{name}.conf
46 Source3:        %{name}.user
47 Source4:        %{name}.logrotate
48 Source5:        %{name}.sysconfig
49 Source6:        %{name}-mime.types.sh
50 Source7:        http://glen.alkohol.ee/pld/lighty/favicon.ico
51 # Source7-md5:  00fcac5b861a54f5eb147a589504d480
52 Source8:        http://www.lighttpd.net/light_button.png
53 # Source8-md5:  02330e2313fadc29144edfd6000879f8
54 Source9:        http://www.lighttpd.net/light_logo.png
55 # Source9-md5:  ac20784510e420d5cbe5fc1cdb53d7a7
56 Source10:       http://gdl.hopto.org/~spider/pldstats/gfx/pld1.png
57 # Source10-md5: 486ecec3f6f4fe7f9bf7cee757b864f4
58 Source11:       %{name}-pld.html
59 Source12:       %{name}.monitrc
60 Source13:       %{name}-branch.sh
61 Source100:      %{name}-mod_access.conf
62 Source101:      %{name}-mod_accesslog.conf
63 Source102:      %{name}-mod_alias.conf
64 Source103:      %{name}-mod_auth.conf
65 Source104:      %{name}-mod_cgi.conf
66 Source105:      %{name}-mod_cml.conf
67 Source106:      %{name}-mod_compress.conf
68 Source107:      %{name}-mod_deflate.conf
69 Source108:      %{name}-mod_dirlisting.conf
70 Source109:      %{name}-mod_evasive.conf
71 Source110:      %{name}-mod_evhost.conf
72 Source111:      %{name}-mod_expire.conf
73 Source112:      %{name}-mod_fastcgi.conf
74 Source113:      %{name}-mod_flv_streaming.conf
75 Source114:      %{name}-mod_indexfile.conf
76 Source115:      %{name}-mod_proxy.conf
77 Source116:      %{name}-mod_redirect.conf
78 Source117:      %{name}-mod_rewrite.conf
79 Source118:      %{name}-mod_rrdtool.conf
80 Source119:      %{name}-mod_scgi.conf
81 Source120:      %{name}-mod_secdownload.conf
82 Source121:      %{name}-mod_setenv.conf
83 Source122:      %{name}-mod_simple_vhost.conf
84 Source123:      %{name}-mod_ssi.conf
85 Source124:      %{name}-mod_staticfile.conf
86 Source125:      %{name}-mod_status.conf
87 Source126:      %{name}-mod_trigger_b4_dl.conf
88 Source127:      %{name}-mod_userdir.conf
89 Source128:      %{name}-mod_usertrack.conf
90 Source129:      %{name}-mod_webdav.conf
91 Source130:      %{name}-php-spawned.conf
92 Source131:      %{name}-php-external.conf
93 Source132:      %{name}-ssl.conf
94 Source133:      %{name}-mod_mysql_vhost.conf
95 Source134:      %{name}-mod_magnet.conf
96 Source135:      %{name}-mod_extforward.conf
97 Source136:      %{name}-mod_h264_streaming.conf
98 Source137:      %{name}-mod_cgi_php.conf
99 #Patch100:      %{name}-branch.diff
100 Patch0:         %{name}-use_bin_sh.patch
101 Patch1:         %{name}-mod_evasive-status_code.patch
102 Patch2:         %{name}-mod_h264_streaming.patch
103 Patch3:         %{name}-branding.patch
104 Patch4:         %{name}-modinit-before-fork.patch
105 Patch5:         %{name}-mod_deflate.patch
106 Patch6:         %{name}-mod_rrdtool-emptyfile.patch
107 URL:            http://www.lighttpd.net/
108 %{?with_xattr:BuildRequires:    attr-devel}
109 BuildRequires:  autoconf
110 BuildRequires:  automake
111 BuildRequires:  bzip2-devel
112 BuildRequires:  fcgi-devel
113 %{?with_gamin:BuildRequires:    gamin-devel}
114 %{?with_gdbm:BuildRequires:     gdbm-devel}
115 %{?with_memcache:BuildRequires: libmemcache-devel}
116 BuildRequires:  libtool
117 BuildRequires:  libuuid-devel
118 %{?with_webdav_props:BuildRequires:     libxml2-devel}
119 %{?with_lua:BuildRequires:      lua51-devel}
120 BuildRequires:  mailcap >= 2.1.14-4.4
121 %{?with_mysql:BuildRequires:    mysql-devel}
122 %{?with_ldap:BuildRequires:     openldap-devel}
123 %{?with_ssl:BuildRequires:      openssl-devel}
124 BuildRequires:  pcre-devel
125 BuildRequires:  pkgconfig
126 BuildRequires:  rpmbuild(macros) >= 1.268
127 %{?with_webdav_props:BuildRequires:     sqlite3-devel}
128 %{?with_valgrind:BuildRequires: valgrind}
129 BuildRequires:  zlib-devel
130 Requires(post,preun):   /sbin/chkconfig
131 Requires(postun):       /usr/sbin/groupdel
132 Requires(postun):       /usr/sbin/userdel
133 Requires(pre):  /bin/id
134 Requires(pre):  /usr/bin/getgid
135 Requires(pre):  /usr/lib/rpm/user_group.sh
136 Requires(pre):  /usr/sbin/groupadd
137 Requires(pre):  /usr/sbin/useradd
138 Requires(pre):  /usr/sbin/usermod
139 Requires:       %{name}-mod_dirlisting = %{version}-%{release}
140 Requires:       %{name}-mod_indexfile = %{version}-%{release}
141 Requires:       %{name}-mod_staticfile = %{version}-%{release}
142 Requires:       rc-scripts
143 Requires:       rpm-whiteout >= 1.5
144 Provides:       group(http)
145 Provides:       group(lighttpd)
146 Provides:       user(lighttpd)
147 Provides:       webserver
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 Requires:       %{name} = %{version}-%{release}
356
357 %description mod_evasive
358 lighttpd evasive module.
359
360 %description mod_evasive -l pl.UTF-8
361 Moduł evasive dla lighttpd.
362
363 %package mod_evhost
364 Summary:        lighttpd module for enhanced virtual-hosting
365 Summary(pl.UTF-8):      Moduł lighttpd rozszerzający obsługę hostów wirtualnych
366 Group:          Networking/Daemons/HTTP
367 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModEVhost
368 Requires:       %{name} = %{version}-%{release}
369
370 %description mod_evhost
371 mod_evhost builds the document-root based on a pattern which contains
372 wildcards. Those wildcards can represent parts of the submitted
373 hostname.
374
375 %description mod_evhost -l pl.UTF-8
376 mod_evhost tworzy document-root w oparciu o wzorzec zawierający znaki
377 wieloznaczne (wildcards). Znaki te reprezentują części przekazanej
378 nazwy hosta.
379
380 %package mod_expire
381 Summary:        lighttpd module for controlling the expiration of content in caches
382 Summary(pl.UTF-8):      Moduł lighttpd sterujący wygasaniem treści w cache'ach
383 Group:          Networking/Daemons/HTTP
384 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModExpire
385 Requires:       %{name} = %{version}-%{release}
386 Provides:       webserver(expires)
387
388 %description mod_expire
389 mod_expire controls the setting of the the Expire response header.
390
391 %description mod_expire -l pl.UTF-8
392 mod_expire steruje ustawianiem nagłówka odpowiedzi Expire.
393
394 %package mod_extforward
395 Summary:        lighttpd module to extract the client's "real" IP from X-Forwarded-For header
396 Summary(pl.UTF-8):      Moduł lighttpd wyciągający "prawdziwy" IP klienta z nagłówka X-Forwarded-For
397 Group:          Networking/Daemons/HTTP
398 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/DocsModExtForward
399 Requires:       %{name} = %{version}-%{release}
400
401 %description mod_extforward
402 This module will extract the client's "real" IP from X-Forwarded-For
403 header which is added by Squid or other proxies. It might be useful
404 for servers behind reverse proxy servers.
405
406 %description mod_extforward -l pl.UTF-8
407 Ten moduł wyciąga "prawdziwy" IP klienta z nagłówka X-Forwarded-For
408 dodawanego przez Squida czy inne proxy. Może być przydatny dla
409 serwerów stojących za odwrotnymi serwerami proxy.
410
411 %package mod_fastcgi
412 Summary:        lighttpd module for FastCGI interface
413 Summary(pl.UTF-8):      Moduł lighttpd do interfejsu FastCGI
414 Group:          Networking/Daemons/HTTP
415 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModFastCGI
416 Requires:       %{name} = %{version}-%{release}
417
418 %description mod_fastcgi
419 The FastCGI interface is the fastest and most secure way to interface
420 external process-handlers like Perl, PHP and your self-written
421 applications.
422
423 %description mod_fastcgi -l pl.UTF-8
424 Interfejs FastCGI to najszybszy i najbezpieczniejszy sposób
425 komunikacji z zewnętrznymi programami obsługującymi procesy, takimi
426 jak Perl, PHP czy własne aplikacje.
427
428 %package mod_flv_streaming
429 Summary:        lighttpd module for flv streaming
430 Summary(pl.UTF-8):      Moduł lighttpd do streamingu flv
431 Group:          Networking/Daemons/HTTP
432 URL:            http://blog.lighttpd.net/articles/2006/03/09/flv-streaming-with-lighttpd
433 Requires:       %{name} = %{version}-%{release}
434
435 %description mod_flv_streaming
436 lighttpd module for flv streaming.
437
438 %description mod_flv_streaming -l pl.UTF-8
439 Moduł lighttpd do streamingu flv.
440
441 %package mod_h264_streaming
442 Summary:        lighttpd module for h264 streaming
443 Summary(pl.UTF-8):      Moduł lighttpd do emisji strumieni h264
444 License:        CC 3.0 BY-NC-SA
445 Group:          Networking/Daemons/HTTP
446 URL:            http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Lighttpd-Version2
447 Requires:       %{name} = %{version}-%{release}
448
449 %description mod_h264_streaming
450 A lighttpd plugin for pseudo-streaming QuickTime/MPEG-4 files.
451
452 %description mod_h264_streaming -l pl.UTF-8
453 Moduł lighttpd do pseudostreamingu plików QuickTime/MPEG-4.
454
455 %package mod_indexfile
456 Summary:        lighttpd indexfile module
457 Summary(pl.UTF-8):      Moduł indexfile dla lighttpd
458 Group:          Networking/Daemons/HTTP
459 Requires:       %{name} = %{version}-%{release}
460 Provides:       webserver(indexfile)
461
462 %description mod_indexfile
463 indexfile module.
464
465 %description mod_indexfile -l pl.UTF-8
466 Moduł indexfile.
467
468 %package mod_magnet
469 Summary:        lighttpd powermagnet module
470 Summary(pl.UTF-8):      Moduł powermagnet dla lighttpd
471 Group:          Networking/Daemons/HTTP
472 Requires:       %{name} = %{version}-%{release}
473
474 %description mod_magnet
475 mod_magnet is a module to control the request handling in lighty.
476
477 %description mod_magnet -l pl.UTF-8
478 mod_magnet to moduł sterujący obsługą żądań w lighty.
479
480 %package mod_mysql_vhost
481 Summary:        lighttpd module for MySQL based vhosting
482 Summary(pl.UTF-8):      Moduł lighttpd obsługujący vhosty oparte na MySQL-u
483 Group:          Networking/Daemons/HTTP
484 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModMySQLVhost
485 Requires:       %{name} = %{version}-%{release}
486 Conflicts:      %{name}-mod_simple_vhost
487
488 %description mod_mysql_vhost
489 This module provides virtual hosts (vhosts) based on a MySQL table.
490
491 %description mod_mysql_vhost -l pl.UTF-8
492 Ten moduł udostępnia wirtualne hosty (vhosty) oparte na tabeli MySQL.
493
494 %package mod_proxy
495 Summary:        lighttpd module for proxying requests
496 Summary(pl.UTF-8):      Moduł lighttpd do przekazywania żądań
497 Group:          Networking/Daemons/HTTP
498 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModProxy
499 Requires:       %{name} = %{version}-%{release}
500
501 %description mod_proxy
502 The proxy module a simplest way to connect lighttpd to Java servers
503 which have a HTTP-interface.
504
505 %description mod_proxy -l pl.UTF-8
506 Moduł proxy to najprostszy sposób łączenia lighttpd z serwerami Javy
507 mającymi interfejs HTTP.
508
509 %package mod_proxy_core
510 Summary:        lighttpd module for proxying requests
511 Summary(pl.UTF-8):      Moduł lighttpd do przekazywania żądań
512 Group:          Networking/Daemons/HTTP
513 URL:            http://blog.lighttpd.net/articles/2006/07/18/mod_proxy_core-commited-to-svn
514 Requires:       %{name} = %{version}-%{release}
515
516 %description mod_proxy_core
517 The proxy module a simplest way to connect lighttpd to java servers
518 which have a HTTP-interface.
519
520 This is the new proxy code.
521
522 %description mod_proxy_core -l pl.UTF-8
523 Moduł proxy to najprostszy sposób łączenia lighttpd z serwerami Javy
524 mającymi interfejs HTTP.
525
526 Ten pakiet zawiera nowy moduł proxy.
527
528 %package mod_redirect
529 Summary:        lighttpd module for URL redirects
530 Summary(pl.UTF-8):      Moduł lighttpd do przekierowań URL-i
531 Group:          Networking/Daemons/HTTP
532 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModRedirect
533 Requires:       %{name} = %{version}-%{release}
534
535 %description mod_redirect
536 With mod_redirect module you can redirect a set of URLs externally.
537
538 %description mod_redirect -l pl.UTF-8
539 Przy użyciu modułu mod_redirect można przekierować zbiór URL-i na
540 zewnątrz.
541
542 %package mod_rewrite
543 Summary:        lighttpd module for internal redirects, URL rewrite
544 Summary(pl.UTF-8):      Moduł lighttpd do wewnętrznych przekierowań i przepisywania URL-i
545 Group:          Networking/Daemons/HTTP
546 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModRewrite
547 Requires:       %{name} = %{version}-%{release}
548 Provides:       webserver(rewrite)
549
550 %description mod_rewrite
551 This module allows you rewrite a set of URLs interally in the
552 webserver BEFORE they are handled.
553
554 %description mod_rewrite -l pl.UTF-8
555 Ten moduł pozwala na przepisywanie zbioru URL-i wewnętrznie w serwerze
556 WWW _przed_ ich obsługą.
557
558 %package mod_rrdtool
559 Summary:        lighttpd module for monitoring traffic and server load
560 Summary(pl.UTF-8):      Moduł lighttpd do monitorowania ruchu i obciążenia serwera
561 Group:          Networking/Daemons/HTTP
562 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModRRDTool
563 Requires:       %{name} = %{version}-%{release}
564 Requires:       rrdtool
565
566 %description mod_rrdtool
567 RRD is a system to store and display time-series data (i.e. network
568 bandwidth, machine-room temperature, server load average).
569
570 With this module you can monitor the traffic and load on the
571 webserver.
572
573 %description mod_rrdtool -l pl.UTF-8
574 RRD to system przechowywania i wyświetlania danych zależnych od czasu
575 (np. obciążenia sieci, temperatury w serwerowni, średniego obciążenia
576 serwera).
577
578 Przy użyciu tego modułu można monitorować ruch i obciążenie serwera
579 WWW.
580
581 %package mod_scgi
582 Summary:        lighttpd module for SCGI interface
583 Summary(pl.UTF-8):      Moduł lighttpd do interfejsu SCGI
584 Group:          Networking/Daemons/HTTP
585 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSCGI
586 Requires:       %{name} = %{version}-%{release}
587
588 %description mod_scgi
589 SCGI is a fast and simplified CGI interface. It is mostly used by
590 Python + WSGI.
591
592 %description mod_scgi -l pl.UTF-8
593 SCGI to szybki i uproszczony interfejs CGI. Jest używany głównie przez
594 Pythona z WSGI.
595
596 %package mod_secdownload
597 Summary:        lighttpd module for secure and fast downloading
598 Summary(pl.UTF-8):      Moduł lighttpd do bezpiecznego i szybkiego ściągania danych
599 Group:          Networking/Daemons/HTTP
600 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSecDownload
601 Requires:       %{name} = %{version}-%{release}
602
603 %description mod_secdownload
604 With this module you can easily achieve authenticated file requests
605 and a countermeasure against deep-linking.
606
607 %description mod_secdownload -l pl.UTF-8
608 Przy użyciu tego modułu można łatwo umożliwić ściąganie plików z
609 uwierzytelnieniem i zapobiec używaniu bezpośrednich odnośników.
610
611 %package mod_setenv
612 Summary:        lighttpd module for setting conditional request headers
613 Summary(pl.UTF-8):      Moduł lighttpd do ustawiania warunkowych nagłówków żądań
614 Group:          Networking/Daemons/HTTP
615 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSetEnv
616 Requires:       %{name} = %{version}-%{release}
617 Provides:       webserver(setenv)
618
619 %description mod_setenv
620 mod_setenv is used to add request headers.
621
622 %description mod_setenv -l pl.UTF-8
623 mod_setenv służy do dodawania nagłówków żądań.
624
625 %package mod_simple_vhost
626 Summary:        lighttpd module for simple virtual-hosting
627 Summary(pl.UTF-8):      Moduł lighttpd do prostych hostów wirtualnych
628 Group:          Networking/Daemons/HTTP
629 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSimpleVhost
630 Requires:       %{name} = %{version}-%{release}
631 Conflicts:      %{name}-mod_mysql_vhost
632
633 %description mod_simple_vhost
634 lighttpd module for simple virtual-hosting.
635
636 %description mod_simple_vhost -l pl.UTF-8
637 Moduł lighttpd do prostych hostów wirtualnych.
638
639 %package mod_ssi
640 Summary:        lighttpd module for server-side includes
641 Summary(pl.UTF-8):      Moduł lighttpd do SSI (server-side includes)
642 Group:          Networking/Daemons/HTTP
643 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModSSI
644 Requires:       %{name} = %{version}-%{release}
645
646 %description mod_ssi
647 The module for server-side includes provides a compatability layer for
648 NSCA/Apache SSI.
649
650 %description mod_ssi -l pl.UTF-8
651 Moduł server-side includes udostępnia warstwę kompatybilności z SSI
652 znanym z NSCA/Apache'a.
653
654 %package mod_staticfile
655 Summary:        lighttpd module for static file serving
656 Summary(pl.UTF-8):      Moduł lighttpd do serwowania statycznych plików
657 Group:          Networking/Daemons/HTTP
658 Requires:       %{name} = %{version}-%{release}
659
660 %description mod_staticfile
661 lighttpd module for static file serving.
662
663 %description mod_staticfile -l pl.UTF-8
664 Moduł lighttpd do serwowania statycznych plików.
665
666 %package mod_status
667 Summary:        lighttpd module for displaying server status
668 Summary(pl.UTF-8):      Moduł lighttpd do wyświetlania stanu serwera
669 Group:          Networking/Daemons/HTTP
670 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModStatus
671 Requires:       %{name} = %{version}-%{release}
672
673 %description mod_status
674 mod_status displays the server's status and configuration.
675
676 %description mod_status -l pl.UTF-8
677 mod_status wyświetla stan i konfigurację serwera.
678
679 %package mod_trigger_b4_dl
680 Summary:        Trigger before Download
681 Summary(pl.UTF-8):      Wyzwalacz przed ściąganiem
682 Group:          Networking/Daemons/HTTP
683 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModTriggerBeforeDownload
684 Requires:       %{name} = %{version}-%{release}
685
686 %description mod_trigger_b4_dl
687 Another anti hot-linking module.
688
689 %description mod_trigger_b4_dl -l pl.UTF-8
690 Jeszcze jeden moduł blokujący bezpośrednie linkowanie.
691
692 %package mod_userdir
693 Summary:        lighttpd module for user homedirs
694 Summary(pl.UTF-8):      Moduł lighttpd obsługujący katalogi domowe użytkowników
695 Group:          Networking/Daemons/HTTP
696 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModUserDir
697 Requires:       %{name} = %{version}-%{release}
698
699 %description mod_userdir
700 The userdir module provides a simple way to link user-based
701 directories into the global namespace of the webserver.
702
703 %description mod_userdir -l pl.UTF-8
704 Moduł userdir udostępnia prosty sposób włączenia katalogów
705 użytkowników do globalnej przestrzeni nazw serwera WWW.
706
707 %package mod_usertrack
708 Summary:        lighttpd usertrack module
709 Summary(pl.UTF-8):      Moduł usertrack dla lighttpd
710 Group:          Networking/Daemons/HTTP
711 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModUserTrack
712 Requires:       %{name} = %{version}-%{release}
713
714 %description mod_usertrack
715 lighttpd usertrack module.
716
717 %description mod_usertrack -l pl.UTF-8
718 Moduł usertrack dla lighttpd.
719
720 %package mod_webdav
721 Summary:        WebDAV module for lighttpd
722 Summary(pl.UTF-8):      Moduł WebDAV dla libghttpd
723 Group:          Networking/Daemons/HTTP
724 URL:            http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs:ModWebDAV
725 Requires:       %{name} = %{version}-%{release}
726
727 %description mod_webdav
728 The WebDAV module is a very minimalistic implementation of RFC 2518.
729 Minimalistic means that not all operations are implementated yet.
730
731 So far we have
732 - PROPFIND
733 - OPTIONS
734 - MKCOL
735 - DELETE
736 - PUT
737 - LOCK (experimental)
738
739 and the usual GET, POST, HEAD from HTTP/1.1.
740
741 So far mounting a webdav resource into Windows XP works and the basic
742 litmus tests are passed.
743
744 %description mod_webdav -l pl.UTF-8
745 Moduł WebDAV to bardzo minimalistyczna implementacja RFC 2518.
746 Minimalistyczna oznacza, że jeszcze nie wszystkie operacje są
747 zaimplementowane. Jak na razie są:
748 - PROPFIND
749 - OPTIONS
750 - MKCOL
751 - DELETE
752 - PUT
753 - LOCK (experimental)
754
755 oraz zwykłe GET, POST, HEAD z HTTP/1.1.
756
757 Jak na razie montowanie zasobu webdav pod Windows XP działa i
758 podstawowe testy lakmusowe przechodzą.
759
760 %package -n spawn-fcgi
761 Summary:        Spawn fcgi-process directly
762 Summary(pl.UTF-8):      Bezpośrednie uruchamianie procesów fcgi
763 Group:          Applications
764
765 %description -n spawn-fcgi
766 spawn-fcgi is used to spawn fcgi-process directly without the help of
767 a webserver or the programm itself.
768
769 %description -n spawn-fcgi -l pl.UTF-8
770 spawn-fcgi służy do uruchamiania procesów fcgi bezpośrednio, bez
771 pomocy serwera WWW ani samego programu.
772
773 %package php-spawned
774 Summary:        PHP support via FastCGI, spawned by lighttpd
775 Summary(pl.UTF-8):      Obsługa PHP przez FastCGI, uruchamiane przez lighttpd
776 Group:          Networking/Daemons/HTTP
777 Requires:       %{name} = %{version}-%{release}
778 Requires:       %{name}-mod_fastcgi = %{version}-%{release}
779 Requires:       php-fcgi
780 Provides:       webserver(php)
781 Obsoletes:      lighttpd-php-external
782
783 %description php-spawned
784 PHP support via FastCGI, spawned by lighttpd.
785
786 %description php-spawned -l pl.UTF-8
787 Obsługa PHP przez FastCGI, uruchamiane przez lighttpd.
788
789 %package php-external
790 Summary:        PHP support via FastCGI, spawning controlled externally
791 Summary(pl.UTF-8):      Obsługa PHP przez FastCGI, uruchamianie sterowane zewnętrznie
792 Group:          Networking/Daemons/HTTP
793 Requires:       %{name} = %{version}-%{release}
794 Requires:       %{name}-mod_fastcgi = %{version}-%{release}
795 Requires:       php-fcgi-init
796 Obsoletes:      lighttpd-php-spawned
797
798 %description php-external
799 PHP support via FastCGI, spawning controlled externally.
800
801 %description php-external -l pl.UTF-8
802 Obsługa PHP przez FastCGI, uruchamianie sterowane zewnętrznie.
803
804 %package ssl
805 Summary:        lighttpd support for SSLv2 and SSLv3
806 Summary(pl.UTF-8):      Obsługa SSLv2 i SSLv3 dla lighttpd
807 Group:          Networking/Daemons/HTTP
808 Requires:       %{name} = %{version}-%{release}
809
810 %description ssl
811 lighttpd support for SSLv2 and SSLv3.
812
813 %description ssl -l pl.UTF-8
814 Obsługa SSLv2 i SSLv3 dla lighttpd.
815
816 %package -n monit-rc-lighttpd
817 Summary:        lighttpd support for monit
818 Summary(pl.UTF-8):      Wsparcie lighttpd dla monit
819 Group:          Applications/System
820 Requires:       %{name} = %{version}-%{release}
821 Requires:       monit
822
823 %description -n monit-rc-lighttpd
824 monitrc file for monitoring lighttpd web server.
825
826 %description -n monit-rc-lighttpd -l pl.UTF-8
827 Plik monitrc do monitorowania serwera www lighttpd.
828
829 %prep
830 %setup -q
831 #%patch100 -p0
832 %patch4 -p0
833 %patch0 -p1
834 %patch1 -p1
835 %patch2 -p1
836 %patch3 -p1
837 %{?with_deflate:%patch5 -p1}
838 %patch6 -p1
839
840 rm -f src/mod_ssi_exprparser.h # bad patching: should be removed by is emptied instead
841
842 # build mime.types.conf
843 sh %{SOURCE6} /etc/mime.types
844
845 %build
846 %{__libtoolize}
847 %{__aclocal}
848 %{__autoconf}
849 %{__automake}
850
851 %configure \
852         --enable-maintainer-mode \
853         --with-distribution="PLD Linux" \
854         %{!?with_ipv6:--disable-ipv6} \
855         %{!?with_largefile:--disable-lfs} \
856         %{?with_valgrind:--with-valgrind} \
857         %{?with_xattr:--with-attr} \
858         %{?with_mysql:--with-mysql} \
859         %{?with_ldap:--with-ldap} \
860         %{?with_ssl:--with-openssl} \
861         %{?with_lua:--with-lua=lua51} \
862         %{?with_memcache:--with-memcache} \
863         %{?with_webdav_props:--with-webdav-props} \
864         %{?with_webdav_locks:--with-webdav-locks} \
865         %{?with_gamin:--with-gamin} \
866         %{?with_gdbm:--with-gdbm}
867
868 # -j1 as src/mod_ssi_exprparser.h regeneration deps are broken
869 %{__make} -j1
870
871 %install
872 rm -rf $RPM_BUILD_ROOT
873 install -d $RPM_BUILD_ROOT{%{_lighttpddir}/{cgi-bin,html},/etc/{logrotate.d,rc.d/init.d,sysconfig,monit}} \
874         $RPM_BUILD_ROOT%{_sysconfdir}/{conf,webapps}.d \
875         $RPM_BUILD_ROOT{/var/log/{%{name},archive/%{name}},/var/run/%{name}} \
876         $RPM_BUILD_ROOT%{_datadir}/lighttpd/errordocs \
877         $RPM_BUILD_ROOT/var/lib/lighttpd \
878         $RPM_BUILD_ROOT/var/cache/lighttpd/mod_compress
879
880 %{__make} install \
881         DESTDIR=$RPM_BUILD_ROOT
882
883 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
884 install %{SOURCE2} %{SOURCE3} mime.types.conf $RPM_BUILD_ROOT%{_sysconfdir}
885 install %{SOURCE4} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
886 install %{SOURCE5} $RPM_BUILD_ROOT/etc/sysconfig/%{name}
887 install %{SOURCE12} $RPM_BUILD_ROOT/etc/monit/%{name}.monitrc
888
889 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
890
891 # could use automake patch, but automake generation fails...
892 mv $RPM_BUILD_ROOT%{_bindir}/spawn-fcgi $RPM_BUILD_ROOT%{_sbindir}/spawn-fcgi
893
894 # Install lighttpd images
895 install %{SOURCE7} %{SOURCE8} %{SOURCE9} $RPM_BUILD_ROOT%{_lighttpddir}/html
896 install %{SOURCE10} $RPM_BUILD_ROOT%{_lighttpddir}/html/pld_button.png
897 install %{SOURCE11} $RPM_BUILD_ROOT%{_lighttpddir}/html/index.html
898
899 # NOTE: the order of the modules is somewhat important as the modules are
900 # handled in the way they are specified. mod_rewrite should always be the first
901 # module, mod_accesslog always the last.
902
903 install %{SOURCE117} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/10_mod_rewrite.conf
904 install %{SOURCE116} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/11_mod_redirect.conf
905
906 install %{SOURCE100} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_access.conf
907 install %{SOURCE102} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_alias.conf
908 install %{SOURCE103} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_auth.conf
909 install %{SOURCE104} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cgi.conf
910 install %{SOURCE137} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cgi_php.conf
911 install %{SOURCE105} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_cml.conf
912 install %{SOURCE107} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_deflate.conf
913 install %{SOURCE108} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_dirlisting.conf
914 install %{SOURCE109} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_evasive.conf
915 install %{SOURCE110} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_evhost.conf
916 install %{SOURCE111} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_expire.conf
917 install %{SOURCE112} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_fastcgi.conf
918 install %{SOURCE113} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_flv_streaming.conf
919 install %{SOURCE136} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_h264_streaming.conf
920 install %{SOURCE114} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_indexfile.conf
921 install %{SOURCE134} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_magnet.conf
922 install %{SOURCE115} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_proxy.conf
923 install %{SOURCE118} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_rrdtool.conf
924 install %{SOURCE119} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_scgi.conf
925 install %{SOURCE120} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_secdownload.conf
926 install %{SOURCE121} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_setenv.conf
927 install %{SOURCE122} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_simple_vhost.conf
928 install %{SOURCE123} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_ssi.conf
929 install %{SOURCE124} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_staticfile.conf
930 install %{SOURCE125} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_status.conf
931 install %{SOURCE126} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_trigger_b4_dl.conf
932 install %{SOURCE127} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_userdir.conf
933 install %{SOURCE128} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_usertrack.conf
934 install %{SOURCE129} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_webdav.conf
935 install %{SOURCE133} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_mysql_vhost.conf
936
937 install %{SOURCE106} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/60_mod_compress.conf
938
939 install %{SOURCE101} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/90_mod_accesslog.conf
940 install %{SOURCE135} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/91_mod_extforward.conf
941
942 install %{SOURCE130} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/php-spawned.conf
943 install %{SOURCE131} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/php-external.conf
944 install %{SOURCE132} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/ssl.conf
945
946 touch $RPM_BUILD_ROOT/var/lib/lighttpd/lighttpd.rrd
947
948 %if %{without mysql}
949 # avoid packaging dummy module
950 rm -f $RPM_BUILD_ROOT%{_libdir}/mod_mysql_vhost.so
951 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/*_mod_mysql_vhost.conf
952 %endif
953 %if %{without deflate}
954 rm -f $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/*_mod_deflate.conf
955 %endif
956
957 touch $RPM_BUILD_ROOT/var/log/%{name}/{access,error}.log
958
959 %clean
960 rm -rf $RPM_BUILD_ROOT
961
962 %pre
963 %groupadd -g 109 lighttpd
964 %groupadd -g 51 http
965 %useradd -u 116 -d %{_lighttpddir} -c "Lighttpd User" -g lighttpd lighttpd
966 %addusertogroup lighttpd http
967
968 %post
969 for a in access.log error.log; do
970         if [ ! -f /var/log/%{name}/$a ]; then
971                 touch /var/log/%{name}/$a
972                 chown lighttpd:lighttpd /var/log/%{name}/$a
973                 chmod 644 /var/log/%{name}/$a
974         fi
975 done
976 /sbin/chkconfig --add %{name}
977
978 %preun
979 if [ "$1" = "0" ]; then
980         %service %{name} stop
981         /sbin/chkconfig --del %{name}
982 fi
983
984 %postun
985 if [ "$1" = "0" ]; then
986         %userremove lighttpd
987         %groupremove lighttpd
988         %groupremove http
989 fi
990
991 %posttrans
992 # minimizing lighttpd restarts logics. we restart webserver:
993 #
994 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
995 # 2. first install of module (post: $1 = 1)
996 # 2. uninstall of module (postun: $1 == 0)
997 #
998 # the strict internal deps between lighttpd modules and
999 # main package are very important for all this to work.
1000 %service %{name} restart "Lighttpd webserver"
1001 exit 0
1002
1003 # macro called at module post scriptlet
1004 %define module_post \
1005 if [ "$1" = "1" ]; then \
1006         %service -q lighttpd restart \
1007 fi
1008
1009 # macro called at module postun scriptlet
1010 %define module_postun \
1011 if [ "$1" = "0" ]; then \
1012         %service -q lighttpd restart \
1013 fi
1014
1015 # it's sooo annoying to write them
1016 %define module_scripts() \
1017 %post %1 \
1018 %module_post \
1019 \
1020 %postun %1 \
1021 %module_postun
1022
1023 %module_scripts mod_access
1024 %module_scripts mod_accesslog
1025 %module_scripts mod_alias
1026 %module_scripts mod_auth
1027 %module_scripts mod_cgi
1028 %module_scripts mod_cml
1029 %module_scripts mod_compress
1030 %module_scripts mod_deflate
1031 %module_scripts mod_dirlisting
1032 %module_scripts mod_evasive
1033 %module_scripts mod_evhost
1034 %module_scripts mod_expire
1035 %module_scripts mod_extforward
1036 %module_scripts mod_fastcgi
1037 %module_scripts mod_flv_streaming
1038 %module_scripts mod_h264_streaming
1039 %module_scripts mod_indexfile
1040 %module_scripts mod_magnet
1041 %module_scripts mod_mysql_vhost
1042 %module_scripts mod_proxy
1043 %module_scripts mod_redirect
1044 %module_scripts mod_rewrite
1045
1046 %post mod_rrdtool
1047 if [ ! -f /var/lib/lighttpd/lighttpd.rrd ]; then
1048         touch /var/lib/lighttpd/lighttpd.rrd
1049         chown lighttpd:stats /var/lib/lighttpd/lighttpd.rrd
1050         chmod 640 /var/lib/lighttpd/lighttpd.rrd
1051 fi
1052 %module_post
1053
1054 %postun mod_rrdtool
1055 %module_postun
1056
1057 %module_scripts mod_scgi
1058 %module_scripts mod_secdownload
1059 %module_scripts mod_setenv
1060 %module_scripts mod_simple_vhost
1061 %module_scripts mod_ssi
1062 %module_scripts mod_staticfile
1063 %module_scripts mod_status
1064 %module_scripts mod_trigger_b4_dl
1065 %module_scripts mod_userdir
1066 %module_scripts mod_usertrack
1067 %module_scripts mod_webdav
1068
1069 %module_scripts php-spawned
1070 %module_scripts php-external
1071
1072 %triggerpostun -- %{name} < 1.4.18-10.1
1073 if [ -f /etc/lighttpd/conf.d/50_mod_extforward.conf.rpmsave ]; then
1074         cp -f /etc/lighttpd/conf.d/91_mod_extforward.conf{,.rpmnew}
1075         mv -f /etc/lighttpd/conf.d/{50_mod_extforward.conf.rpmsave,91_mod_extforward.conf}
1076 fi
1077
1078 %files
1079 %defattr(644,root,root,755)
1080 %doc NEWS README ChangeLog doc/lighttpd.conf doc/*.txt doc/rrdtool-graph.sh
1081 %dir %attr(751,root,lighttpd) %{_sysconfdir}
1082 %dir %attr(750,root,root) %{_sysconfdir}/webapps.d
1083 %dir %attr(750,root,root) %{_sysconfdir}/conf.d
1084 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/%{name}.conf
1085 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/mime.types.conf
1086 %attr(640,root,lighttpd) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*.user
1087
1088 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}
1089 %attr(750,root,root) %dir /var/log/archive/%{name}
1090 %dir %attr(751,root,root) /var/log/%{name}
1091 %ghost %attr(644,lighttpd,lighttpd) /var/log/%{name}/access.log
1092 %ghost %attr(644,lighttpd,lighttpd) /var/log/%{name}/error.log
1093 %dir %attr(770,root,lighttpd) /var/run/%{name}
1094 %attr(754,root,root) /etc/rc.d/init.d/%{name}
1095 %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/*
1096 %attr(755,root,root) %{_sbindir}/lighttpd
1097 %attr(755,root,root) %{_sbindir}/lighttpd-angel
1098 %dir %{_libdir}
1099 %{_mandir}/man1/lighttpd.1*
1100 %dir %{_lighttpddir}
1101 %dir %{_lighttpddir}/cgi-bin
1102 %dir %{_lighttpddir}/html
1103 %config(noreplace,missingok) %verify(not md5 mtime size) %{_lighttpddir}/html/*
1104
1105 %dir %{_datadir}/lighttpd
1106 %dir %{_datadir}/lighttpd/errordocs
1107
1108 # rrdtool database is stored there
1109 %dir %attr(771,root,lighttpd) /var/lib/lighttpd
1110
1111 # mod_compress can put cached files there
1112 %dir /var/cache/lighttpd
1113
1114 %files mod_access
1115 %defattr(644,root,root,755)
1116 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_access.conf
1117 %attr(755,root,root) %{_libdir}/mod_access.so
1118
1119 %files mod_accesslog
1120 %defattr(644,root,root,755)
1121 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_accesslog.conf
1122 %attr(755,root,root) %{_libdir}/mod_accesslog.so
1123
1124 %files mod_alias
1125 %defattr(644,root,root,755)
1126 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_alias.conf
1127 %attr(755,root,root) %{_libdir}/mod_alias.so
1128
1129 %files mod_auth
1130 %defattr(644,root,root,755)
1131 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_auth.conf
1132 %attr(755,root,root) %{_libdir}/mod_auth.so
1133
1134 %files mod_cgi
1135 %defattr(644,root,root,755)
1136 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cgi.conf
1137 %attr(755,root,root) %{_libdir}/mod_cgi.so
1138
1139 %files mod_cgi_php
1140 %defattr(644,root,root,755)
1141 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cgi_php.conf
1142
1143 %files mod_cml
1144 %defattr(644,root,root,755)
1145 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_cml.conf
1146 %attr(755,root,root) %{_libdir}/mod_cml.so
1147
1148 %files mod_compress
1149 %defattr(644,root,root,755)
1150 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_compress.conf
1151 %attr(755,root,root) %{_libdir}/mod_compress.so
1152 %dir %attr(775,root,lighttpd) /var/cache/lighttpd/mod_compress
1153
1154 %if %{with deflate}
1155 %files mod_deflate
1156 %defattr(644,root,root,755)
1157 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_deflate.conf
1158 %attr(755,root,root) %{_libdir}/mod_deflate.so
1159 %endif
1160
1161 %files mod_dirlisting
1162 %defattr(644,root,root,755)
1163 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_dirlisting.conf
1164 %attr(755,root,root) %{_libdir}/mod_dirlisting.so
1165
1166 %files mod_evasive
1167 %defattr(644,root,root,755)
1168 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_evasive.conf
1169 %attr(755,root,root) %{_libdir}/mod_evasive.so
1170
1171 %files mod_evhost
1172 %defattr(644,root,root,755)
1173 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_evhost.conf
1174 %attr(755,root,root) %{_libdir}/mod_evhost.so
1175
1176 %files mod_expire
1177 %defattr(644,root,root,755)
1178 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_expire.conf
1179 %attr(755,root,root) %{_libdir}/mod_expire.so
1180
1181 %files mod_extforward
1182 %defattr(644,root,root,755)
1183 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_extforward.conf
1184 %attr(755,root,root) %{_libdir}/mod_extforward.so
1185
1186 %files mod_fastcgi
1187 %defattr(644,root,root,755)
1188 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_fastcgi.conf
1189 %attr(755,root,root) %{_libdir}/mod_fastcgi.so
1190
1191 %files mod_flv_streaming
1192 %defattr(644,root,root,755)
1193 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_flv_streaming.conf
1194 %attr(755,root,root) %{_libdir}/mod_flv_streaming.so
1195
1196 %files mod_h264_streaming
1197 %defattr(644,root,root,755)
1198 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_h264_streaming.conf
1199 %attr(755,root,root) %{_libdir}/mod_h264_streaming.so
1200
1201 %files mod_indexfile
1202 %defattr(644,root,root,755)
1203 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_indexfile.conf
1204 %attr(755,root,root) %{_libdir}/mod_indexfile.so
1205
1206 %files mod_magnet
1207 %defattr(644,root,root,755)
1208 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_magnet.conf
1209 %attr(755,root,root) %{_libdir}/mod_magnet.so
1210
1211 %if %{with mysql}
1212 %files mod_mysql_vhost
1213 %defattr(644,root,root,755)
1214 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_mysql_vhost.conf
1215 %attr(755,root,root) %{_libdir}/mod_mysql_vhost.so
1216 %endif
1217
1218 %files mod_proxy
1219 %defattr(644,root,root,755)
1220 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_proxy.conf
1221 %attr(755,root,root) %{_libdir}/mod_proxy.so
1222
1223 %files mod_redirect
1224 %defattr(644,root,root,755)
1225 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_redirect.conf
1226 %attr(755,root,root) %{_libdir}/mod_redirect.so
1227
1228 %files mod_rewrite
1229 %defattr(644,root,root,755)
1230 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_rewrite.conf
1231 %attr(755,root,root) %{_libdir}/mod_rewrite.so
1232
1233 %files mod_rrdtool
1234 %defattr(644,root,root,755)
1235 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_rrdtool.conf
1236 %attr(755,root,root) %{_libdir}/mod_rrdtool.so
1237 %ghost %attr(640,lighttpd,stats) /var/lib/lighttpd/lighttpd.rrd
1238
1239 %files mod_scgi
1240 %defattr(644,root,root,755)
1241 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_scgi.conf
1242 %attr(755,root,root) %{_libdir}/mod_scgi.so
1243
1244 %files mod_secdownload
1245 %defattr(644,root,root,755)
1246 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_secdownload.conf
1247 %attr(755,root,root) %{_libdir}/mod_secdownload.so
1248
1249 %files mod_setenv
1250 %defattr(644,root,root,755)
1251 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_setenv.conf
1252 %attr(755,root,root) %{_libdir}/mod_setenv.so
1253
1254 %files mod_simple_vhost
1255 %defattr(644,root,root,755)
1256 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_simple_vhost.conf
1257 %attr(755,root,root) %{_libdir}/mod_simple_vhost.so
1258
1259 %files mod_ssi
1260 %defattr(644,root,root,755)
1261 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_ssi.conf
1262 %attr(755,root,root) %{_libdir}/mod_ssi.so
1263
1264 %files mod_staticfile
1265 %defattr(644,root,root,755)
1266 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_staticfile.conf
1267 %attr(755,root,root) %{_libdir}/mod_staticfile.so
1268
1269 %files mod_status
1270 %defattr(644,root,root,755)
1271 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_status.conf
1272 %attr(755,root,root) %{_libdir}/mod_status.so
1273
1274 %files mod_trigger_b4_dl
1275 %defattr(644,root,root,755)
1276 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_trigger_b4_dl.conf
1277 %attr(755,root,root) %{_libdir}/mod_trigger_b4_dl.so
1278
1279 %files mod_userdir
1280 %defattr(644,root,root,755)
1281 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_userdir.conf
1282 %attr(755,root,root) %{_libdir}/mod_userdir.so
1283
1284 %files mod_usertrack
1285 %defattr(644,root,root,755)
1286 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_usertrack.conf
1287 %attr(755,root,root) %{_libdir}/mod_usertrack.so
1288
1289 %files mod_webdav
1290 %defattr(644,root,root,755)
1291 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_webdav.conf
1292 %attr(755,root,root) %{_libdir}/mod_webdav.so
1293
1294 %files -n spawn-fcgi
1295 %defattr(644,root,root,755)
1296 %doc doc/spawn-php.sh
1297 %attr(755,root,root) %{_sbindir}/spawn-fcgi
1298 %{_mandir}/man1/spawn-fcgi.1*
1299
1300 %files php-spawned
1301 %defattr(644,root,root,755)
1302 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/php-spawned.conf
1303
1304 %files php-external
1305 %defattr(644,root,root,755)
1306 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/php-external.conf
1307
1308 %files ssl
1309 %defattr(644,root,root,755)
1310 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ssl.conf
1311
1312 %files -n monit-rc-lighttpd
1313 %defattr(644,root,root,755)
1314 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/monit/%{name}.monitrc
This page took 0.124301 seconds and 4 git commands to generate.