]> git.pld-linux.org Git - packages/php.git/blob - php.spec
- mm conflicts with zts, not apache2
[packages/php.git] / php.spec
1 # TODO
2 # - NOTE: mysqlnd does not support ssl or compression (see FAQ at http://dev.mysql.com/downloads/connector/php-mysqlnd/)
3 # - wddx: restore session support (not compiled in due DL extension check)
4 # - deal with modules removed from php and not moved to PECL, still not obsoleted anywhere
5 #   - removed from php 5.0 (currently in php4):
6 #   db, hyperwave, java, mcal, overload, qtdom
7 #   - removed from php 5.1:
8 #   cpdf, fam, oracle
9 #   - removed from php 5.2:
10 #   filepro, hw
11 #   - removed from php 5.3:
12 #   dbase, mime_magic, ming, ncurses, sybase
13 # - make additional headers and checking added by mail patch configurable
14 # - modularize standard (output from pure php -m)?
15 # - lib64 patch obsolete by $PHP_LIBDIR ?
16 # - WARNING: Phar: sha256/sha512 signature support disabled if ext/hash is
17 #   built shared, also PHAR_HAVE_OPENSSL is false if openssl is built shared.
18 #   make it runtime dep and add Suggests (or php warning messages)
19 # - some mods should be shared:
20 #$ php -m
21 # [PHP Modules]
22 #+Core
23 # date
24 #+ereg
25 # libxml
26 # Reflection
27 #
28 # Conditional build:
29 %bcond_with     fdf             # with FDF (PDF forms) module           (BR: proprietary lib)
30 %bcond_with     interbase_inst  # use InterBase install., not Firebird  (BR: proprietary libs)
31 %bcond_with     oci8            # with Oracle oci8 extension module     (BR: proprietary libs)
32 %bcond_with     system_gd       # with system gd (we prefer internal since it enables few more features)
33 %bcond_with     litespeed       # build litespeed module
34 %bcond_without  curl            # without CURL extension module
35 %bcond_without  filter          # without filter extension module
36 %bcond_without  imap            # without IMAP extension module
37 %bcond_without  interbase       # without InterBase extension module
38 %bcond_without  ldap            # without LDAP extension module
39 %bcond_without  mm              # without mm support for session storage
40 %bcond_without  mssql           # without MS SQL extension module
41 # don't turn it on by default; see TODO item for mysqlnd in this spec
42 %bcond_with     mysqlnd         # without mysqlnd support in mysql related extensions
43 %bcond_without  mysqli          # without mysqli support (Requires mysql > 4.1)
44 %bcond_without  odbc            # without ODBC extension module
45 %bcond_without  openssl         # without OpenSSL support and OpenSSL extension (module)
46 %bcond_without  pcre            # without PCRE extension module
47 %bcond_without  pgsql           # without PostgreSQL extension module
48 %bcond_without  phar            # without phar extension module
49 %bcond_without  pspell          # without pspell extension module
50 %bcond_without  recode          # without recode extension module
51 %bcond_without  snmp            # without SNMP extension module
52 %bcond_without  sqlite          # without SQLite extension module
53 %bcond_without  sqlite3         # without SQLite3 extension module
54 %bcond_without  sybase_ct       # without Sybase-CT extension module
55 %bcond_without  tidy            # without Tidy extension module
56 %bcond_without  wddx            # without WDDX extension module
57 %bcond_without  xmlrpc          # without XML-RPC extension module
58 %bcond_without  apache1         # disable building Apache 1.3.x module
59 %bcond_without  apache2         # disable building Apache 2.x module
60 %bcond_without  zts             # disable Zend Thread Safety
61 %bcond_without  fpm             # fpm patches from http://www.php-fpm.org/
62 %bcond_without  suhosin         # with suhosin patch
63 %bcond_with     tests           # default off; test process very often hangs on builders, approx run time 45m; perform "make test"
64 %bcond_with     gcov            # Enable Code coverage reporting
65 %bcond_with     type_hints      # experimental support for strict typing/casting
66
67 %define apxs1           /usr/sbin/apxs1
68 %define apxs2           /usr/sbin/apxs
69
70 # mm is not thread safe
71 %if %{with zts}
72 %undefine       with_mm
73 %endif
74
75 %ifnarch %{ix86} %{x8664} sparc sparcv9 alpha
76 # ppc disabled (broken on th-ppc)
77 %undefine       with_interbase
78 %endif
79
80 %ifnarch %{ix86} %{x8664}
81 # unsupported, see sapi/cgi/fpm/fpm_atomic.h
82 %undefine       with_fpm
83 %endif
84
85 %if %{without apache1} && %{without apache2}
86 ERROR: You need to select at least one Apache SAPI to build shared modules.
87 %endif
88
89 # filter depends on pcre
90 %if %{without pcre}
91 %undefine       with_filter
92 %endif
93
94 %define         rel             5
95 Summary:        PHP: Hypertext Preprocessor
96 Summary(fr.UTF-8):      Le langage de script embarque-HTML PHP
97 Summary(pl.UTF-8):      Język skryptowy PHP
98 Summary(pt_BR.UTF-8):   A linguagem de script PHP
99 Summary(ru.UTF-8):      PHP Версии 5 - язык препроцессирования HTML-файлов, выполняемый на сервере
100 Summary(uk.UTF-8):      PHP Версії 5 - мова препроцесування HTML-файлів, виконувана на сервері
101 Name:           php
102 Version:        5.3.2
103 Release:        %{rel}%{?with_type_hints:th}
104 Epoch:          4
105 License:        PHP
106 Group:          Libraries
107 Source0:        http://www.php.net/distributions/%{name}-%{version}.tar.bz2
108 # Source0-md5:  46f500816125202c48a458d0133254a4
109 Source2:        %{name}-mod_%{name}.conf
110 Source3:        %{name}-cgi-fcgi.ini
111 Source4:        %{name}-apache.ini
112 Source5:        %{name}-cli.ini
113 # Taken from: http://browsers.garykeith.com/downloads.asp
114 Source9:        %{name}_browscap.ini
115 Source10:       %{name}-fpm.init
116 Source11:       %{name}-fpm.logrotate
117 Source12:       %{name}-branch.sh
118 Source13:       dep-tests.sh
119 Source14:       skip-tests.sh
120 Patch0:         %{name}-shared.patch
121 Patch1:         %{name}-pldlogo.patch
122 Patch2:         %{name}-mail.patch
123 Patch3:         %{name}-link-libs.patch
124 Patch4:         %{name}-libpq_fs_h_path.patch
125 Patch5:         %{name}-filter-shared.patch
126 Patch6:         %{name}-build_modules.patch
127 Patch7:         %{name}-sapi-ini-file.patch
128 Patch8:         %{name}-config-file-scan-dir.patch
129 Patch9:         %{name}-sh.patch
130 Patch10:        %{name}-ini.patch
131 %if %{with type_hints}
132 Patch12:        http://ilia.ws/patch/type_hint_53_v2.txt
133 %endif
134 Patch14:        %{name}-no_pear_install.patch
135 Patch15:        %{name}-zlib.patch
136 Patch17:        %{name}-readline.patch
137 Patch18:        %{name}-nohttpd.patch
138 Patch19:        %{name}-gd_imagerotate_enable.patch
139 Patch20:        %{name}-uint32_t.patch
140 Patch21:        %{name}-dba-link.patch
141 Patch22:        %{name}-both-apxs.patch
142 Patch23:        %{name}-builddir.patch
143 Patch24:        %{name}-zlib-for-getimagesize.patch
144 Patch25:        %{name}-stupidapache_version.patch
145 Patch26:        %{name}-pear.patch
146 Patch27:        %{name}-config-dir.patch
147 Patch29:        %{name}-fcgi-graceful.patch
148 Patch31:        %{name}-fcgi-error_log-no-newlines.patch
149 Patch32:        %{name}-curl-limit-speed.patch
150 Patch34:        %{name}-libtool.patch
151 Patch35:        %{name}-tds.patch
152 Patch36:        %{name}-mysql-charsetphpini.patch
153 Patch37:        %{name}-mysqli-charsetphpini.patch
154 Patch38:        %{name}-pdo_mysql-charsetphpini.patch
155 Patch39:        %{name}-use-prog_sendmail.patch
156 Patch40:        %{name}-fpm.patch
157 Patch41:        %{name}-fpm-config.patch
158 Patch42:        %{name}-fpm-shared.patch
159 Patch43:        %{name}-silent-session-cleanup.patch
160 Patch44:        %{name}-include_path.patch
161 Patch45:        %{name}-imap-annotations.patch
162 Patch46:        %{name}-imap-myrights.patch
163 Patch47:        suhosin.patch
164 Patch49:        %{name}-m4-divert.patch
165 Patch50:        extension-shared-optional-dep.patch
166 Patch51:        spl-shared.patch
167 Patch52:        pcre-shared.patch
168 Patch53:        fix-test-run.patch
169 Patch54:        mysqlnd-shared.patch
170 URL:            http://www.php.net/
171 %{?with_interbase:%{!?with_interbase_inst:BuildRequires:        Firebird-devel >= 1.0.2.908-2}}
172 %{?with_pspell:BuildRequires:   aspell-devel >= 2:0.50.0}
173 BuildRequires:  autoconf >= 2.53
174 BuildRequires:  automake >= 1.4d
175 BuildRequires:  bison
176 BuildRequires:  bzip2-devel
177 %{?with_curl:BuildRequires:     curl-devel >= 7.12.0}
178 BuildRequires:  cyrus-sasl-devel
179 BuildRequires:  db-devel >= 4.0
180 BuildRequires:  elfutils-devel
181 #BuildRequires: fcgi-devel
182 %{?with_fdf:BuildRequires:      fdftk-devel}
183 #BuildRequires: flex
184 BuildRequires:  pkgconfig
185 %if %{with mssql} || %{with sybase_ct}
186 BuildRequires:  freetds-devel >= 0.82
187 %endif
188 BuildRequires:  freetype-devel >= 2.0
189 %if %{with system_gd}
190 BuildRequires:  gd-devel >= 2.0.28-4
191 BuildRequires:  gd-devel(imagerotate) = 5.2.0
192 %endif
193 BuildRequires:  gdbm-devel
194 BuildRequires:  gmp-devel
195 %{?with_imap:BuildRequires:     imap-devel >= 1:2001-0.BETA.200107022325.2}
196 BuildRequires:  libicu-devel
197 BuildRequires:  libjpeg-devel
198 BuildRequires:  libltdl-devel >= 1.4
199 BuildRequires:  libmcrypt-devel >= 2.4.4
200 BuildRequires:  libpng-devel >= 1.0.8
201 #BuildRequires: libtiff-devel
202 %if "%{pld_release}" != "ac"
203 BuildRequires:  libtool >= 2:2.2
204 %else
205 BuildRequires:  libtool >= 1.4.3
206 %endif
207 #BuildRequires: libwrap-devel
208 BuildRequires:  libxml2-devel >= 1:2.7.6-4
209 BuildRequires:  libxslt-devel >= 1.1.0
210 %{?with_mm:BuildRequires:       mm-devel >= 1.3.0}
211 %{?with_ldap:BuildRequires:     openldap-devel >= 2.3.0}
212 %if %{with openssl} || %{with ldap}
213 BuildRequires:  openssl-devel >= 0.9.7d
214 %endif
215 %{?with_gcov:BuildRequires:     lcov}
216 %{?with_snmp:BuildRequires:     net-snmp-devel >= 5.0.7}
217 BuildRequires:  pam-devel
218 %{?with_pcre:BuildRequires:     pcre-devel >= 6.6}
219 BuildRequires:  pkgconfig
220 %{?with_pgsql:BuildRequires:    postgresql-backend-devel >= 7.2}
221 %{?with_pgsql:BuildRequires:    postgresql-devel}
222 BuildRequires:  readline-devel
223 %{?with_recode:BuildRequires:   recode-devel >= 3.5d-3}
224 BuildRequires:  rpm >= 4.4.9-56
225 BuildRequires:  rpm-build >= 4.4.0
226 BuildRequires:  rpmbuild(macros) >= 1.527
227 %{?with_sqlite:BuildRequires:   sqlite-devel}
228 %{?with_sqlite3:BuildRequires:  sqlite3-devel >= 3.3.9}
229 BuildRequires:  t1lib-devel
230 %{?with_tidy:BuildRequires:     tidy-devel}
231 %{?with_odbc:BuildRequires:     unixODBC-devel}
232 %{?with_xmlrpc:BuildRequires:   xmlrpc-epi-devel}
233 BuildRequires:  zlib-devel >= 1.0.9
234 %if %{with apache1}
235 BuildRequires:  apache1-devel
236 %endif
237 %if %{with apache2}
238 BuildRequires:  apache-devel >= 2.0.52-2
239 BuildRequires:  apr-devel >= 1:1.0.0
240 BuildRequires:  apr-util-devel >= 1:1.0.0
241 %endif
242 %if %{with fpm}
243 #BuildRequires: judy-devel
244 BuildRequires:  libevent-devel >= 1.4.7-3
245 %endif
246 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
247
248 %define         php_sysconfdir          /etc/php
249 %define         php_extensiondir        %{_libdir}/php
250 %define         _sysconfdir                     %{php_sysconfdir}
251
252 # must be in sync with source. extra check ensuring that it is so is done in %%build
253 %define         php_api_version         20090626
254 %define         zend_module_api         20090626
255 %define         zend_extension_api      220090626
256
257 %define         zend_zts                %{!?with_zts:0}%{?with_zts:1}
258 %define         php_debug               %{!?debug:0}%{?debug:1}
259
260 %if %{with gcov}
261 %undefine       with_ccache
262 %endif
263
264 %if %{with oci8}
265 # ORACLE_HOME is required for oci8 ext to build
266 %define _preserve_env %_preserve_env_base ORACLE_HOME
267 %endif
268
269 %description
270 PHP is an HTML-embedded scripting language. PHP attempts to make it
271 easy for developers to write dynamically generated web pages. PHP also
272 offers built-in database integration for several commercial and
273 non-commercial database management systems, so writing a
274 database-enabled web page with PHP is fairly simple. The most common
275 use of PHP coding is probably as a replacement for CGI scripts. The
276 mod_php module enables the Apache web server to understand and process
277 the embedded PHP language in web pages. This package contains PHP
278 version %{version}.
279
280 %description -l fr.UTF-8
281 PHP est un langage de script embarque dans le HTM. PHP essaye de
282 rendre simple aux developpeurs d'ecrire des pages web generees
283 dynamiquement. PHP incorpore egalement une integration avec plusieurs
284 systemes de gestion de bases de donnees commerciaux et
285 non-connerciaux, qui rent facile la creation de pages web liees avec
286 des bases de donnees. L'utilisation la plus commune de PHP est
287 probablement en remplacement de scripts CGI. Le module mod_php permet
288 au serveur web Apache de comprendre et de traiter le langage PHP
289 integre dans des pages web. Ce package contient PHP version
290 %{version}.
291
292 %description -l pl.UTF-8
293 PHP jest językiem skryptowym, którego polecenia umieszcza się w
294 plikach HTML. Jest próbą ułatwienia programistom pisania dynamicznie
295 generowanych stron WWW. Oferuje także wbudowaną integrację z bazami
296 danych dla kilku komercyjnych i niekomercyjnych systemów baz danych,
297 co czyni tworzenie stron korzystających z baz danych w miarę łatwym.
298 Najczęściej PHP jest używany prawdopodobnie jako zamiennik skryptów
299 CGI. Moduł mod_php pozwala serwerowi WWW Apache rozumieć i przetwarzać
300 język PHP osadzony w stronach. Ten pakiet zawiera PHP w wersji
301 %{version}.
302
303 %description -l pt_BR.UTF-8
304 PHP: Preprocessador de Hipertexto versão 4 é uma linguagem script
305 embutida em HTML. Muito de sua sintaxe é emprestada de C, Java e Perl,
306 com algumas características únicas, específicas ao PHP. O objetivo da
307 linguagem é permitir que desenvolvedores web escrevam páginas
308 dinamicamente geradas de forma rápida.
309
310 %description -l ru.UTF-8
311 PHP - это язык написания скриптов, встраиваемых в HTML-код. PHP
312 предлагает интерграцию с множеством СУБД, поэтому написание скриптов
313 для работы с базами данных относительно просто. Наиболее популярное
314 использование PHP - замена для CGI скриптов.
315
316 %description -l uk.UTF-8
317 PHP - це мова написання скриптів, що вбудовуються в HTML-код. PHP
318 пропонує інтеграцію з багатьма СУБД, тому написання скриптів для
319 роботи з базами даних є доволі простим. Найбільш популярне
320 використання PHP - заміна для CGI скриптів.
321
322 %package -n apache1-mod_php
323 Summary:        PHP DSO module for Apache 1.3.x
324 Summary(pl.UTF-8):      Moduł DSO (Dynamic Shared Object) PHP dla Apache 1.3.x
325 Group:          Development/Languages/PHP
326 Requires(triggerpostun):        sed >= 4.0
327 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
328 Requires:       apache1(EAPI) >= 1.3.33-2
329 Requires:       apache1-mod_mime
330 Provides:       webserver(php) = %{version}
331 Obsoletes:      apache-mod_php < 1:4.1.1
332 Obsoletes:      phpfi
333
334 %description -n apache1-mod_php
335 PHP as DSO module for Apache 1.3.x.
336
337 %description -n apache1-mod_php -l pl.UTF-8
338 PHP jako moduł DSO (Dynamic Shared Object) dla Apache 1.3.x.
339
340 %package -n apache-mod_php
341 Summary:        PHP DSO module for Apache 2.x
342 Summary(pl.UTF-8):      Moduł DSO (Dynamic Shared Object) PHP dla Apache 2.x
343 Group:          Development/Languages/PHP
344 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
345 Requires:       apache(modules-api) = %{apache_modules_api}
346 Requires:       apache-mod_mime
347 Provides:       webserver(php) = %{version}
348 Obsoletes:      phpfi
349
350 %description -n apache-mod_php
351 PHP as DSO module for Apache 2.x.
352
353 %description -n apache-mod_php -l pl.UTF-8
354 PHP jako moduł DSO (Dynamic Shared Object) dla Apache 2.x.
355
356 %package litespeed
357 Summary:        PHP for litespeed HTTP server
358 Summary(pl.UTF-8):      PHP dla serwera HTTP litespeed
359 Group:          Development/Languages/PHP
360 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
361 Provides:       webserver(php) = %{version}
362
363 %description litespeed
364 PHP for litespeed HTTP server.
365
366 %description litespeed -l pl.UTF-8
367 PHP dla serwera HTTP litespeed.
368
369 %package cgi
370 Summary:        PHP as CGI/FastCGI program
371 Summary(pl.UTF-8):      PHP jako program CGI/FastCGI
372 Group:          Development/Languages/PHP
373 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
374 Provides:       %{name}-fcgi = %{epoch}:%{version}-%{release}
375 Provides:       php(cgi)
376 Provides:       php(fcgi)
377 Provides:       webserver(php)
378 Obsoletes:      php-fcgi < 4:5.3.0
379
380 %description cgi
381 PHP as CGI or FastCGI program.
382
383 %description cgi -l pl.UTF-8
384 PHP jako program CGI lub FastCGI.
385
386 %package cli
387 Summary:        PHP as CLI interpreter
388 Summary(pl.UTF-8):      PHP jako interpreter działający z linii poleceń
389 Group:          Development/Languages/PHP
390 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
391
392 %description cli
393 PHP as CLI interpreter.
394
395 %description cli -l pl.UTF-8
396 PHP jako interpreter działający z linii poleceń.
397
398 %package program
399 Summary:        /usr/bin/php symlink
400 Summary(pl.UTF-8):      Dowiązanie symboliczne /usr/bin/php
401 Group:          Development/Languages/PHP
402 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
403 Obsoletes:      /usr/bin/php
404
405 %description program
406 Package providing /usr/bin/php symlink to PHP CLI.
407
408 %description program -l pl.UTF-8
409 Pakiet dostarczający dowiązanie symboliczne /usr/bin/php do PHP CLI.
410
411 %package fpm
412 Summary:        PHP FastCGI Process Manager
413 Group:          Development/Languages/PHP
414 URL:            http://www.php-fpm.org/
415 Requires(post,preun):   /sbin/chkconfig
416 Requires(postun):       /usr/sbin/userdel
417 Requires(pre):  /bin/id
418 Requires(pre):  /usr/sbin/useradd
419 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
420 Requires:       libevent >= 1.4.7-3
421 Requires:       rc-scripts
422 Provides:       user(http)
423 Provides:       webserver(php) = %{version}
424
425 %description fpm
426 PHP FastCGI Process Manager.
427
428 %package common
429 Summary:        Common files needed by both Apache modules and CGI/CLI SAPI-s
430 Summary(pl.UTF-8):      Wspólne pliki dla modułu Apache'a i programu CGI
431 Summary(ru.UTF-8):      Разделяемые библиотеки для PHP
432 Summary(uk.UTF-8):      Бібліотеки спільного використання для PHP
433 Group:          Libraries
434 # because of dlclose() bugs in glibc <= 2.3.4 causing SEGVs on exit
435 Requires:       glibc >= 6:2.3.5
436 Requires:       php-dirs
437 Requires:       rpm-whiteout >= 1.28
438 Provides:       php(date)
439 Provides:       php(ereg)
440 Provides:       php(hash)
441 Provides:       php(libxml)
442 Provides:       php(modules_api) = %{php_api_version}
443 Provides:       php(overload)
444 Provides:       php(reflection)
445 Provides:       php(standard)
446 Provides:       php(zend_extension_api) = %{zend_extension_api}
447 Provides:       php(zend_module_api) = %{zend_module_api}
448 Provides:       php-date
449 Provides:       php-ereg
450 Provides:       php-overload
451 Provides:       php-reflection
452 Provides:       php-standard
453 Provides:       php5(debug) = %{php_debug}
454 Provides:       php5(thread-safety) = %{zend_zts}
455 %{!?with_mysqlnd:Obsoletes:     php-mysqlnd}
456 Obsoletes:      php-pecl-domxml
457 Conflicts:      php4-common < 3:4.4.4-8
458 Conflicts:      rpm < 4.4.2-0.2
459
460 %description common
461 Common files needed by both Apache modules and CGI/CLI SAPI-s.
462
463 %description common -l pl.UTF-8
464 Wspólne pliki dla modułu Apache'a i programu CGI.
465
466 %description common -l ru.UTF-8
467 Этот пакет содержит общие файлы для разных вариантов реализации PHP
468 (самодостаточной и в качестве модуля Apache).
469
470 %description common -l uk.UTF-8
471 Цей пакет містить спільні файли для різних варіантів реалізації PHP
472 (самодостатньої та в якості модуля Apache).
473
474 %package devel
475 Summary:        Files for PHP modules development
476 Summary(pl.UTF-8):      Pliki do kompilacji modułów PHP
477 Summary(pt_BR.UTF-8):   Arquivos de desenvolvimento para PHP
478 Summary(ru.UTF-8):      Пакет разработки для построения расширений PHP
479 Summary(uk.UTF-8):      Пакет розробки для побудови розширень PHP
480 Group:          Development/Languages/PHP
481 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
482 Requires:       autoconf
483 Requires:       automake
484 %if "%{pld_release}" != "ac"
485 Requires:       libtool >= 2:2.2
486 %else
487 Requires:       libtool
488 %endif
489 %{?with_pcre:Requires:  pcre-devel >= 6.6}
490 Requires:       shtool
491 Obsoletes:      php-pear-devel
492 Obsoletes:      php4-devel
493
494 %description devel
495 The php-devel package lets you compile dynamic extensions to PHP.
496 Included here is the source for the PHP extensions. Instead of
497 recompiling the whole PHP binary to add support for, say, oracle,
498 install this package and use the new self-contained extensions
499 support. For more information, read the file
500 README.SELF-CONTAINED-EXTENSIONS.
501
502 %description devel -l pl.UTF-8
503 Ten pakiet zawiera pliki potrzebne do kompilacji modułów PHP. Zamiast
504 rekompilować całe PHP aby dodać obsługę np. oracle, można przy użyciu
505 tego pakietu skompilować samodzielne rozszerzenie. Więcej informacji o
506 samodzielnych rozszerzeniach można znaleźć w pliku
507 README.SELF-CONTAINED-EXTENSIONS.
508
509 %description devel -l pt_BR.UTF-8
510 Este pacote contém arquivos usados no desenvolvimento de programas ou
511 módulos PHP.
512
513 %description devel -l ru.UTF-8
514 Пакет php-devel дает возможность компилировать динамические расширения
515 PHP. Пакет включает исходный код этих расширений. Вместо повторной
516 компиляции бинарного файла PHP для добавления, например, поддержки
517 oracle, установите этот пакет для компилирования отдельных расширений.
518 Подробности - в файле README.SELF-CONTAINED-EXTENSIONS.
519
520 %description devel -l uk.UTF-8
521 Пакет php-devel дає можливість компілювати динамічні розширення PHP.
522 До пакету включено вихідний код для розширень. Замість повторної
523 компіляції бінарного файлу PHP для додання, наприклад, підтримки
524 oracle, встановіть цей пакет для компіляції окремих розширень.
525 Детальніша інформація - в файлі README.SELF-CONTAINED-EXTENSIONS.
526
527 %package bcmath
528 Summary:        bcmath extension module for PHP
529 Summary(pl.UTF-8):      Moduł bcmath dla PHP
530 Group:          Libraries
531 URL:            http://www.php.net/manual/en/book.bc.php
532 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
533 Provides:       php(bcmath)
534
535 %description bcmath
536 This is a dynamic shared object (DSO) for PHP that will add bc style
537 precision math functions support.
538
539 %description bcmath -l pl.UTF-8
540 Moduł PHP umożliwiający korzystanie z dokładnych funkcji
541 matematycznych takich jak w programie bc.
542
543 %package bzip2
544 Summary:        Bzip2 extension module for PHP
545 Summary(pl.UTF-8):      Moduł bzip2 dla PHP
546 Group:          Libraries
547 URL:            http://www.php.net/manual/en/book.bzip2.php
548 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
549 Provides:       php(bzip2)
550
551 %description bzip2
552 This is a dynamic shared object (DSO) for PHP that will add bzip2
553 compression support to PHP.
554
555 %description bzip2 -l pl.UTF-8
556 Moduł PHP umożliwiający używanie kompresji bzip2.
557
558 %package calendar
559 Summary:        Calendar extension module for PHP
560 Summary(pl.UTF-8):      Moduł funkcji kalendarza dla PHP
561 Group:          Libraries
562 URL:            http://www.php.net/manual/en/book.calendar.php
563 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
564 Provides:       php(calendar)
565
566 %description calendar
567 This is a dynamic shared object (DSO) for PHP that will add calendar
568 support.
569
570 %description calendar -l pl.UTF-8
571 Moduł PHP dodający wsparcie dla kalendarza.
572
573 %package ctype
574 Summary:        ctype extension module for PHP
575 Summary(pl.UTF-8):      Moduł ctype dla PHP
576 Group:          Libraries
577 URL:            http://www.php.net/manual/en/book.ctype.php
578 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
579 Provides:       php(ctype)
580
581 %description ctype
582 This is a dynamic shared object (DSO) for PHP that will add ctype
583 support.
584
585 %description ctype -l pl.UTF-8
586 Moduł PHP umożliwiający korzystanie z funkcji ctype.
587
588 %package curl
589 Summary:        curl extension module for PHP
590 Summary(pl.UTF-8):      Moduł curl dla PHP
591 Group:          Libraries
592 URL:            http://www.php.net/manual/en/book.curl.php
593 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
594 Provides:       php(curl)
595
596 %description curl
597 This is a dynamic shared object (DSO) for PHP that will add curl
598 support.
599
600 %description curl -l pl.UTF-8
601 Moduł PHP umożliwiający korzystanie z biblioteki curl.
602
603 %package dba
604 Summary:        DBA extension module for PHP
605 Summary(pl.UTF-8):      Moduł DBA dla PHP
606 Group:          Libraries
607 URL:            http://www.php.net/manual/en/book.dba.php
608 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
609 Provides:       php(dba)
610
611 %description dba
612 This is a dynamic shared object (DSO) for PHP that will add flat-file
613 databases (DBA) support.
614
615 %description dba -l pl.UTF-8
616 Moduł dla PHP dodający obsługę dla baz danych opartych na plikach
617 (DBA).
618
619 %package dom
620 Summary:        DOM extension module for PHP
621 Summary(pl.UTF-8):      Moduł DOM dla PHP
622 Group:          Libraries
623 URL:            http://www.php.net/manual/en/book.dom.php
624 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
625 Provides:       php(dom)
626 # it has some compatibility functions
627 Provides:       php(domxml)
628 Obsoletes:      php-domxml <= 3:4.3.8-1
629
630 %description dom
631 This is a dynamic shared object (DSO) for PHP that will add new DOM
632 support.
633
634 %description dom -l pl.UTF-8
635 Moduł PHP dodający nową obsługę DOM.
636
637 %package exif
638 Summary:        exif extension module for PHP
639 Summary(pl.UTF-8):      Moduł exif dla PHP
640 Group:          Libraries
641 URL:            http://www.php.net/manual/en/book.exif.php
642 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
643 Provides:       php(exif)
644
645 %description exif
646 This is a dynamic shared object (DSO) for PHP that will add EXIF tags
647 support in image files.
648
649 %description exif -l pl.UTF-8
650 Moduł PHP dodający obsługę znaczników EXIF w plikach obrazków.
651
652 %package fdf
653 Summary:        FDF extension module for PHP
654 Summary(pl.UTF-8):      Moduł FDF dla PHP
655 Group:          Libraries
656 URL:            http://www.php.net/manual/en/book.fdf.php
657 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
658 Provides:       php(fdf)
659
660 %description fdf
661 This PHP module adds support for PDF Forms through Adobe FDFTK
662 library.
663
664 %description fdf -l pl.UTF-8
665 Moduł PHP dodający obsługę formularzy PDF poprzez bibliotekę Adobe
666 FDFTK.
667
668 %package fileinfo
669 Summary:        libmagic bindings
670 Group:          Libraries
671 URL:            http://www.php.net/manual/en/book.fileinfo.php
672 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
673 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
674 Provides:       php(fileinfo)
675 Obsoletes:      php-pecl-fileinfo
676
677 %description fileinfo
678 This extension allows retrieval of information regarding vast majority
679 of file. This information may include dimensions, quality, length
680 etc...
681
682 Additionally it can also be used to retrieve the MIME type for a
683 particular file and for text files proper language encoding.
684
685 %package filter
686 Summary:        Extension for safely dealing with input parameters
687 Summary(pl.UTF-8):      Rozszerzenie do bezpiecznej obsługi danych wejściowych
688 Group:          Libraries
689 URL:            http://www.php.net/manual/en/book.filter.php
690 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
691 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
692 Provides:       php(filter)
693 Obsoletes:      php-pecl-filter
694
695 %description filter
696 We all know that you should always check input variables, but PHP does
697 not offer really good functionality for doing this in a safe way. The
698 Input Filter extension is meant to address this issue by implementing
699 a set of filters and mechanisms that users can use to safely access
700 their input data.
701
702 %description filter -l pl.UTF-8
703 Wiadomo, że trzeba zawsze sprawdzać zmienne wejściowe, ale PHP nie
704 oferuje naprawdę dobrej funkcjonalności do robienia tego w sposób
705 bezpieczny. Rozszerzenie Input Filter ma rozwiązać ten problem poprzez
706 zaimplementowanie zestawu filtrów i mechanizmów, których użytkownicy
707 mogą bezpiecznie używać do dostępu do danych.
708
709 %package ftp
710 Summary:        FTP extension module for PHP
711 Summary(pl.UTF-8):      Moduł FTP dla PHP
712 Group:          Libraries
713 URL:            http://www.php.net/manual/en/book.ftp.php
714 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
715 Provides:       php(ftp)
716
717 %description ftp
718 This is a dynamic shared object (DSO) for PHP that will add FTP
719 support.
720
721 %description ftp -l pl.UTF-8
722 Moduł PHP dodający obsługę protokołu FTP.
723
724 %package gd
725 Summary:        GD extension module for PHP
726 Summary(pl.UTF-8):      Moduł GD dla PHP
727 Group:          Libraries
728 URL:            http://www.php.net/manual/en/book.image.php
729 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
730 %if %{with system_gd}
731 Requires:       gd >= 2.0.28-4
732 Requires:       gd(gif)
733 Requires:       gd(imagerotate) = 5.2.0
734 %endif
735 Provides:       php(gd)
736
737 %description gd
738 This is a dynamic shared object (DSO) for PHP that will add GD
739 support, allowing you to create and manipulate images with PHP.
740
741 %description gd -l pl.UTF-8
742 Moduł PHP umożliwiający korzystanie z biblioteki GD, pozwalającej na
743 tworzenie i obróbkę obrazków.
744
745 %package gettext
746 Summary:        gettext extension module for PHP
747 Summary(pl.UTF-8):      Moduł gettext dla PHP
748 Group:          Libraries
749 URL:            http://www.php.net/manual/en/book.gettext.php
750 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
751 Provides:       php(gettext)
752
753 %description gettext
754 This is a dynamic shared object (DSO) for PHP that will add gettext
755 support.
756
757 %description gettext -l pl.UTF-8
758 Moduł PHP dodający obsługę lokalizacji przez gettext.
759
760 %package gmp
761 Summary:        gmp extension module for PHP
762 Summary(pl.UTF-8):      Moduł gmp dla PHP
763 Group:          Libraries
764 URL:            http://www.php.net/manual/en/book.gmp.php
765 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
766 Provides:       php(gmp)
767
768 %description gmp
769 This is a dynamic shared object (DSO) for PHP that will add arbitrary
770 length number support with GNU MP library.
771
772 %description gmp -l pl.UTF-8
773 Moduł PHP umożliwiający korzystanie z biblioteki gmp do obliczeń na
774 liczbach o dowolnej długości.
775
776 %package hash
777 Summary:        HASH Message Digest Framework
778 Summary(pl.UTF-8):      Szkielet do obliczania skrótów wiadomości
779 Group:          Libraries
780 URL:            http://www.php.net/manual/en/book.gmp.php
781 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
782 Provides:       php(hash)
783 Provides:       php(mhash)
784 Obsoletes:      php-mhash
785 Obsoletes:      php-pecl-hash
786
787 %description hash
788 Native implementations of common message digest algorithms using a
789 generic factory method.
790
791 %description hash -l pl.UTF-8
792 Natywne implementacje popularnych algorytmów obliczania skrótów
793 wiadomości przy użyciu wspólnego interfejsu.
794
795 %package iconv
796 Summary:        iconv extension module for PHP
797 Summary(pl.UTF-8):      Moduł iconv dla PHP
798 Group:          Libraries
799 URL:            http://www.php.net/manual/en/book.iconv.php
800 Requires:       %{_libdir}/gconv
801 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
802 Requires:       iconv
803 Provides:       php(iconv)
804
805 %description iconv
806 This is a dynamic shared object (DSO) for PHP that will add iconv
807 support.
808
809 %description iconv -l pl.UTF-8
810 Moduł PHP dodający obsługę iconv.
811
812 %package imap
813 Summary:        IMAP extension module for PHP
814 Summary(pl.UTF-8):      Moduł IMAP dla PHP
815 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam IMAP
816 Group:          Libraries
817 URL:            http://www.php.net/manual/en/book.imap.php
818 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
819 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
820 Provides:       php(imap)
821
822 %description imap
823 This is a dynamic shared object (DSO) for PHP that will add IMAP
824 support.
825
826 %description imap -l pl.UTF-8
827 Moduł PHP dodający obsługę skrzynek IMAP.
828
829 %description imap -l pt_BR.UTF-8
830 Um módulo para aplicações PHP que usam IMAP.
831
832 %package interbase
833 Summary:        InterBase/Firebird database module for PHP
834 Summary(pl.UTF-8):      Moduł bazy danych InterBase/Firebird dla PHP
835 Group:          Libraries
836 URL:            http://www.php.net/manual/en/book.ibase.php
837 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
838 Provides:       php(interbase)
839 %{?with_interbase_inst:Autoreq: false}
840
841 %description interbase
842 This is a dynamic shared object (DSO) for PHP that will add InterBase
843 and Firebird database support.
844
845 %description interbase -l pl.UTF-8
846 Moduł PHP umożliwiający dostęp do baz danych InterBase i Firebird.
847
848 %package intl
849 Summary:        Internationalization extension (ICU wrapper)
850 Summary(pl.UTF-8):      Rozszerzenie do internacjonalizacji (wrapper ICU)
851 Group:          Libraries
852 URL:            http://www.php.net/intl
853 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
854 Provides:       php(intl)
855
856 %description intl
857 Internationalization extension (further is referred as Intl) is a
858 wrapper for ICU library, enabling PHP programmers to perform
859 UCA-conformant collation and date/time/number/currency formatting in
860 their scripts.
861
862 %description intl -l pl.UTF-8
863 Rozszerzenie do internacjonalizacji (dalej nazywane Intl) jest
864 wrapperem biblioteki ICU, pozwalającym programistom PHP na wykonywanie
865 w skryptach porównań zdgodnych z UCA oraz formatowań daty/czasu/walut.
866
867 %package json
868 Summary:        PHP C extension for JSON serialization
869 Summary(pl.UTF-8):      Rozszerzenie C PHP dla serializacji JSON
870 Group:          Libraries
871 URL:            http://www.php.net/manual/en/book.json.php
872 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
873 Provides:       php(json)
874 Obsoletes:      php-pecl-json
875
876 %description json
877 php-json is an extremely fast PHP C extension for JSON (JavaScript
878 Object Notation) serialisation.
879
880 %description json -l pl.UTF-8
881 php-json to bardzo szybkie rozszerzenie C PHP dla serializacji JSON
882 (JavaScript Object Notation).
883
884 %package ldap
885 Summary:        LDAP extension module for PHP
886 Summary(pl.UTF-8):      Moduł LDAP dla PHP
887 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam LDAP
888 Group:          Libraries
889 URL:            http://www.php.net/manual/en/book.ldap.php
890 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
891 Provides:       php(ldap)
892
893 %description ldap
894 This is a dynamic shared object (DSO) for PHP that will add LDAP
895 support.
896
897 %description ldap -l pl.UTF-8
898 Moduł PHP dodający obsługę LDAP.
899
900 %description ldap -l pt_BR.UTF-8
901 Um módulo para aplicações PHP que usam LDAP.
902
903 %package mbstring
904 Summary:        mbstring extension module for PHP
905 Summary(pl.UTF-8):      Moduł mbstring dla PHP
906 Group:          Libraries
907 URL:            http://www.php.net/manual/en/book.mbstring.php
908 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
909 Provides:       php(mbstring)
910
911 %description mbstring
912 This is a dynamic shared object (DSO) for PHP that will add multibyte
913 string support.
914
915 %description mbstring -l pl.UTF-8
916 Moduł PHP dodający obsługę ciągów znaków wielobajtowych.
917
918 %package mcrypt
919 Summary:        mcrypt extension module for PHP
920 Summary(pl.UTF-8):      Moduł mcrypt dla PHP
921 Group:          Libraries
922 URL:            http://www.php.net/manual/en/book.mcrypt.php
923 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
924 Provides:       php(mcrypt)
925
926 %description mcrypt
927 This is a dynamic shared object (DSO) for PHP that will add mcrypt
928 support.
929
930 %description mcrypt -l pl.UTF-8
931 Moduł PHP dodający możliwość szyfrowania poprzez bibliotekę mcrypt.
932
933 %package mssql
934 Summary:        MS SQL extension module for PHP
935 Summary(pl.UTF-8):      Moduł MS SQL dla PHP
936 Group:          Libraries
937 URL:            http://www.php.net/manual/en/book.mssql.php
938 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
939 Provides:       php(mssql)
940
941 %description mssql
942 This is a dynamic shared object (DSO) for PHP that will add MS SQL
943 databases support through FreeTDS library.
944
945 %description mssql -l pl.UTF-8
946 Moduł PHP dodający obsługę baz danych MS SQL poprzez bibliotekę
947 FreeTDS.
948
949 %package mysqlnd
950 Summary:        MySQL Native Client Driver for PHP
951 Group:          Libraries
952 URL:            http://www.php.net/manual/en/book.mysqlnd.php
953 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
954 Provides:       php(mysqlnd)
955
956 %description mysqlnd
957 MySQL Native Driver is a replacement for the MySQL Client Library
958 (libmysql).
959
960 Because MySQL Native Driver is written as a PHP extension, it is
961 tightly coupled to the workings of PHP. This leads to gains in
962 efficiency, especially when it comes to memory usage, as the driver
963 uses the PHP memory management system. It also supports the PHP memory
964 limit. Using MySQL Native Driver leads to comparable or better
965 performance than using MySQL Client Library, it always ensures the
966 most efficient use of memory. One example of the memory efficiency is
967 the fact that when using the MySQL Client Library, each row is stored
968 in memory twice, whereas with the MySQL Native Driver each row is only
969 stored once in memory.
970
971 %package mysql
972 Summary:        MySQL database module for PHP
973 Summary(pl.UTF-8):      Moduł bazy danych MySQL dla PHP
974 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam bancos de dados MySQL
975 Group:          Libraries
976 URL:            http://www.php.net/manual/en/book.mysql.php
977 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
978 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
979 Provides:       php(mysql)
980
981 %description mysql
982 This is a dynamic shared object (DSO) for PHP that will add MySQL
983 database support.
984
985 %description mysql -l pl.UTF-8
986 Moduł PHP umożliwiający dostęp do bazy danych MySQL.
987
988 %description mysql -l pt_BR.UTF-8
989 Um módulo para aplicações PHP que usam bancos de dados MySQL.
990
991 %package mysqli
992 Summary:        MySQLi module for PHP
993 Summary(pl.UTF-8):      Moduł MySQLi dla PHP
994 Group:          Libraries
995 URL:            http://www.php.net/manual/en/book.mysqli.php
996 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
997 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
998 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
999 Provides:       php(mysqli)
1000
1001 %description mysqli
1002 This is a dynamic shared object (DSO) for PHP that will add MySQLi
1003 (Improved MySQL) support. The difference between it and mysql module
1004 is that it provides access to functionality of MySQL 4.1 and above.
1005
1006 %description mysqli -l pl.UTF-8
1007 Moduł PHP umożliwiający udoskonalony dostęp do bazy danych MySQL.
1008 Różnicą między nim a modułem mysql jest dostęp do funkcjonalności
1009 MySQL w wersji 4.1 i nowszych.
1010
1011 %package oci8
1012 Summary:        Oracle 8+ database module for PHP
1013 Summary(pl.UTF-8):      Moduł bazy danych Oracle 8+ dla PHP
1014 Group:          Libraries
1015 URL:            http://www.php.net/manual/en/book.oci8.php
1016 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1017 Provides:       php(oci8)
1018 AutoReq:        false
1019
1020 %description oci8
1021 This is a dynamic shared object (DSO) for PHP that will add Oracle 7,
1022 8, 9 and 10 database support through Oracle8 Call-Interface (OCI8).
1023
1024 %description oci8 -l pl.UTF-8
1025 Moduł PHP umożliwiający dostęp do bazy danych Oracle 7, 8, 9 i 10
1026 poprzez interfejs Oracle8 Call-Interface (OCI8).
1027
1028 %package odbc
1029 Summary:        ODBC extension module for PHP
1030 Summary(pl.UTF-8):      Moduł ODBC dla PHP
1031 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam bases de dados ODBC
1032 Group:          Libraries
1033 URL:            http://www.php.net/manual/en/book.uodbc.php
1034 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1035 Requires:       unixODBC >= 2.1.1-3
1036 Provides:       php(odbc)
1037
1038 %description odbc
1039 This is a dynamic shared object (DSO) for PHP that will add ODBC
1040 support.
1041
1042 %description odbc -l pl.UTF-8
1043 Moduł PHP ze wsparciem dla ODBC.
1044
1045 %description odbc -l pt_BR.UTF-8
1046 Um módulo para aplicações PHP que usam ODBC.
1047
1048 %package openssl
1049 Summary:        OpenSSL extension module for PHP
1050 Summary(pl.UTF-8):      Moduł OpenSSL dla PHP
1051 Group:          Libraries
1052 URL:            http://www.php.net/manual/en/book.openssl.php
1053 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1054 Provides:       php(openssl)
1055
1056 %description openssl
1057 This is a dynamic shared object (DSO) for PHP that will add OpenSSL
1058 support.
1059
1060 %description openssl -l pl.UTF-8
1061 Moduł PHP umożliwiający korzystanie z biblioteki OpenSSL.
1062
1063 %package pcntl
1064 Summary:        Process Control extension module for PHP
1065 Summary(pl.UTF-8):      Moduł Process Control dla PHP
1066 Group:          Libraries
1067 URL:            http://www.php.net/manual/en/book.pcntl.php
1068 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1069 Provides:       php(pcntl)
1070
1071 %description pcntl
1072 This is a dynamic shared object (DSO) for PHP that will add process
1073 spawning and control support. It supports functions like fork(),
1074 waitpid(), signal() etc.
1075
1076 %description pcntl -l pl.UTF-8
1077 Moduł PHP umożliwiający tworzenie nowych procesów i kontrolę nad nimi.
1078 Obsługuje funkcje takie jak fork(), waitpid(), signal() i podobne.
1079
1080 %package pcre
1081 Summary:        PCRE extension module for PHP
1082 Summary(pl.UTF-8):      Moduł PCRE dla PHP
1083 Group:          Libraries
1084 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1085 Provides:       php(pcre)
1086
1087 %description pcre
1088 This is a dynamic shared object (DSO) for PHP that will add Perl
1089 Compatible Regular Expression support.
1090
1091 %description pcre -l pl.UTF-8
1092 Moduł PHP umożliwiający korzystanie z perlowych wyrażeń regularnych
1093 (Perl Compatible Regular Expressions)
1094
1095 %package pdo
1096 Summary:        PHP Data Objects (PDO)
1097 Summary(pl.UTF-8):      Obsługa PHP Data Objects (PDO)
1098 Group:          Libraries
1099 URL:            http://www.php.net/manual/en/book.pdo.php
1100 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1101 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1102 Provides:       php(pdo)
1103 Obsoletes:      php-pecl-PDO
1104
1105 %description pdo
1106 This is a dynamic shared object (DSO) for PHP that will add PDO
1107 support.
1108
1109 %description pdo -l pl.UTF-8
1110 Moduł PHP dodający obsługę PDO (PHP Data Objects).
1111
1112 %package pdo-dblib
1113 Summary:        PHP Data Objects (PDO) FreeTDS support
1114 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą FreeTDS
1115 Group:          Libraries
1116 URL:            http://www.php.net/manual/en/ref.pdo-dblib.php
1117 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1118 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1119 Provides:       php(dblib)
1120
1121 %description pdo-dblib
1122 This is a dynamic shared object (DSO) for PHP that will add PDO
1123 FreeTDS support.
1124
1125 %description pdo-dblib -l pl.UTF-8
1126 Moduł dla PHP dodający obsługę baz danych FreeTDS za pośrednictwem
1127 interfejsu PDO.
1128
1129 %package pdo-firebird
1130 Summary:        PHP Data Objects (PDO) Firebird support
1131 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Firebirda
1132 Group:          Libraries
1133 URL:            http://www.php.net/manual/en/ref.pdo-firebird.php
1134 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1135 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1136 Provides:       php(pdo-firebird)
1137 Obsoletes:      php-pecl-PDO_FIREBIRD
1138
1139 %description pdo-firebird
1140 This is a dynamic shared object (DSO) for PHP that will add PDO
1141 Firebird support.
1142
1143 %description pdo-firebird -l pl.UTF-8
1144 Moduł dla PHP dodający obsługę baz danych Firebird za pośrednictwem
1145 interfejsu PDO.
1146
1147 %package pdo-mysql
1148 Summary:        PHP Data Objects (PDO) MySQL support
1149 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą MySQL-a
1150 Group:          Libraries
1151 URL:            http://www.php.net/manual/en/ref.pdo-mysql.php
1152 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1153 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
1154 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1155 Provides:       php(pdo-mysql)
1156 Obsoletes:      php-pecl-PDO_MYSQL
1157
1158 %description pdo-mysql
1159 This is a dynamic shared object (DSO) for PHP that will add PDO MySQL
1160 support.
1161
1162 %description pdo-mysql -l pl.UTF-8
1163 Moduł dla PHP dodający obsługę baz danych MySQL za pośrednictwem
1164 interfejsu PDO.
1165
1166 %package pdo-oci
1167 Summary:        PHP Data Objects (PDO) Oracle support
1168 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Oracle'a
1169 Group:          Libraries
1170 URL:            http://www.php.net/manual/en/ref.pdo-oci.php
1171 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1172 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1173 Provides:       php(pdo-oci)
1174 Obsoletes:      php-pecl-PDO_OCI
1175
1176 %description pdo-oci
1177 This is a dynamic shared object (DSO) for PHP that will add PDO Oracle
1178 support.
1179
1180 %description pdo-oci -l pl.UTF-8
1181 Moduł dla PHP dodający obsługę baz danych Oracle za pośrednictwem
1182 interfejsu PDO.
1183
1184 %package pdo-odbc
1185 Summary:        PHP Data Objects (PDO) ODBC support
1186 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą ODBC
1187 Group:          Libraries
1188 URL:            http://www.php.net/manual/en/ref.pdo-odbc.php
1189 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1190 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1191 Provides:       php(pdo-odbc)
1192 Obsoletes:      php-pecl-PDO_ODBC
1193
1194 %description pdo-odbc
1195 This is a dynamic shared object (DSO) for PHP that will add PDO ODBC
1196 support.
1197
1198 %description pdo-odbc -l pl.UTF-8
1199 Moduł dla PHP dodający obsługę baz danych ODBC za pośrednictwem
1200 interfejsu PDO.
1201
1202 %package pdo-pgsql
1203 Summary:        PHP Data Objects (PDO) PostgreSQL support
1204 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą PostgreSQL-a
1205 Group:          Libraries
1206 URL:            http://www.php.net/manual/en/ref.pdo-pgsql.php
1207 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1208 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1209 Provides:       php(pdo-pgsql)
1210 Provides:       php-pecl-PDO_PGSQL
1211 Obsoletes:      php-pecl-PDO_PGSQL
1212
1213 %description pdo-pgsql
1214 This is a dynamic shared object (DSO) for PHP that will add PDO
1215 PostgreSQL support.
1216
1217 %description pdo-pgsql -l pl.UTF-8
1218 Moduł dla PHP dodający obsługę baz danych PostgreSQL za pośrednictwem
1219 interfejsu PDO.
1220
1221 %package pdo-sqlite
1222 Summary:        PHP Data Objects (PDO) SQLite support
1223 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą SQLite
1224 Group:          Libraries
1225 URL:            http://www.php.net/manual/en/ref.pdo-sqlite.php
1226 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1227 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1228 Provides:       php(pdo-sqlite)
1229 Obsoletes:      php-pecl-PDO_SQLITE
1230
1231 %description pdo-sqlite
1232 This is a dynamic shared object (DSO) for PHP that will add PDO SQLite
1233 support.
1234
1235 %description pdo-sqlite -l pl.UTF-8
1236 Moduł dla PHP dodający obsługę baz danych SQLite za pośrednictwem
1237 interfejsu PDO.
1238
1239 %package pgsql
1240 Summary:        PostgreSQL database module for PHP
1241 Summary(pl.UTF-8):      Moduł bazy danych PostgreSQL dla PHP
1242 Group:          Libraries
1243 URL:            http://www.php.net/manual/en/book.pgsql.php
1244 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1245 Provides:       php(pgsql)
1246
1247 %description pgsql
1248 This is a dynamic shared object (DSO) for PHP that will add PostgreSQL
1249 database support.
1250
1251 %description pgsql -l pl.UTF-8
1252 Moduł PHP umożliwiający dostęp do bazy danych PostgreSQL.
1253
1254 %description pgsql -l pt_BR.UTF-8
1255 Um módulo para aplicações PHP que usam bancos de dados postgresql.
1256
1257 %package phar
1258 Summary:        phar database module for PHP
1259 Summary(pl.UTF-8):      Moduł phar dla PHP
1260 Group:          Libraries
1261 URL:            http://www.php.net/manual/en/book.phar.php
1262 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1263 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1264 Provides:       php(phar)
1265
1266 %description phar
1267 This is a dynamic shared object (DSO) for PHP that will add phar
1268 archive a support.
1269
1270 %description phar -l pl.UTF-8
1271 Moduł PHP umożliwiający dostęp do achiwów .phar.
1272
1273 %package posix
1274 Summary:        POSIX extension module for PHP
1275 Summary(pl.UTF-8):      Moduł POSIX dla PHP
1276 Group:          Libraries
1277 URL:            http://www.php.net/manual/en/book.posix.php
1278 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1279 Provides:       php(posix)
1280
1281 %description posix
1282 This is a dynamic shared object (DSO) for PHP that will add POSIX
1283 functions support to PHP.
1284
1285 %description posix -l pl.UTF-8
1286 Moduł PHP umożliwiający korzystanie z funkcji POSIX.
1287
1288 %package pspell
1289 Summary:        pspell extension module for PHP
1290 Summary(pl.UTF-8):      Moduł pspell dla PHP
1291 Group:          Libraries
1292 URL:            http://www.php.net/manual/en/book.pspell.php
1293 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1294 Provides:       php(pspell)
1295
1296 %description pspell
1297 This is a dynamic shared object (DSO) for PHP that will add pspell
1298 support to PHP. It allows to check the spelling of a word and offer
1299 suggestions.
1300
1301 %description pspell -l pl.UTF-8
1302 Moduł PHP umożliwiający korzystanie z pspella. Pozwala on na
1303 sprawdzanie pisowni słowa i sugerowanie poprawek.
1304
1305 %package readline
1306 Summary:        readline extension module for PHP
1307 Summary(pl.UTF-8):      Moduł readline dla PHP
1308 Group:          Libraries
1309 URL:            http://www.php.net/manual/en/book.readline.php
1310 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
1311 Provides:       php(readline)
1312
1313 %description readline
1314 This PHP module adds support for readline functions (only for cli and
1315 cgi SAPIs).
1316
1317 %description readline -l pl.UTF-8
1318 Moduł PHP dodający obsługę funkcji readline (tylko do SAPI cli i cgi).
1319
1320 %package recode
1321 Summary:        recode extension module for PHP
1322 Summary(pl.UTF-8):      Moduł recode dla PHP
1323 Group:          Libraries
1324 URL:            http://www.php.net/manual/en/book.recode.php
1325 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1326 Requires:       recode >= 3.5d-3
1327 Provides:       php(recode)
1328
1329 %description recode
1330 This is a dynamic shared object (DSO) for PHP that will add recode
1331 support.
1332
1333 %description recode -l pl.UTF-8
1334 Moduł PHP dodający możliwość konwersji kodowania plików (poprzez
1335 bibliotekę recode).
1336
1337 %package session
1338 Summary:        session extension module for PHP
1339 Summary(pl.UTF-8):      Moduł session dla PHP
1340 Group:          Libraries
1341 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1342 Suggests:       %{name}-hash = %{epoch}:%{version}-%{release}
1343 Provides:       php(session)
1344
1345 %description session
1346 This is a dynamic shared object (DSO) for PHP that will add session
1347 support.
1348
1349 %description session -l pl.UTF-8
1350 Moduł PHP dodający obsługę sesji.
1351
1352 %package shmop
1353 Summary:        Shared Memory Operations extension module for PHP
1354 Summary(pl.UTF-8):      Moduł shmop dla PHP
1355 Group:          Libraries
1356 URL:            http://www.php.net/manual/en/book.shmop.php
1357 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1358 Provides:       php(shmop)
1359
1360 %description shmop
1361 This is a dynamic shared object (DSO) for PHP that will add Shared
1362 Memory Operations support.
1363
1364 %description shmop -l pl.UTF-8
1365 Moduł PHP umożliwiający korzystanie z pamięci dzielonej.
1366
1367 %package simplexml
1368 Summary:        Simple XML extension module for PHP
1369 Summary(pl.UTF-8):      Moduł prostego rozszerzenia XML dla PHP
1370 Group:          Libraries
1371 URL:            http://www.php.net/manual/en/book.simplexml.php
1372 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1373 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1374 Provides:       php(simplexml)
1375
1376 %description simplexml
1377 This is a dynamic shared object (DSO) for PHP that will add Simple XML
1378 support.
1379
1380 %description simplexml -l pl.UTF-8
1381 Moduł PHP dodający obsługę prostego XML-a.
1382
1383 %package snmp
1384 Summary:        SNMP extension module for PHP
1385 Summary(pl.UTF-8):      Moduł SNMP dla PHP
1386 Group:          Libraries
1387 URL:            http://www.php.net/manual/en/book.snmp.php
1388 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1389 Requires:       %{name}-sockets = %{epoch}:%{version}-%{release}
1390 Provides:       php(snmp)
1391
1392 %description snmp
1393 This is a dynamic shared object (DSO) for PHP that will add SNMP
1394 support.
1395
1396 %description snmp -l pl.UTF-8
1397 Moduł PHP dodający obsługę SNMP.
1398
1399 %package soap
1400 Summary:        soap extension module for PHP
1401 Summary(pl.UTF-8):      Moduł soap dla PHP
1402 Group:          Libraries
1403 URL:            http://www.php.net/manual/en/book.soap.php
1404 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1405 Provides:       php(soap)
1406
1407 %description soap
1408 This is a dynamic shared object (DSO) for PHP that will add SOAP/WSDL
1409 support.
1410
1411 %description soap -l pl.UTF-8
1412 Moduł PHP dodający obsługę SOAP/WSDL.
1413
1414 %package sockets
1415 Summary:        sockets extension module for PHP
1416 Summary(pl.UTF-8):      Moduł socket dla PHP
1417 Group:          Libraries
1418 URL:            http://www.php.net/manual/en/book.sockets.php
1419 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1420 Provides:       php(sockets)
1421
1422 %description sockets
1423 This is a dynamic shared object (DSO) for PHP that will add sockets
1424 support.
1425
1426 %description sockets -l pl.UTF-8
1427 Moduł PHP dodający obsługę gniazdek.
1428
1429 %package spl
1430 Summary:        Standard PHP Library module for PHP
1431 Summary(pl.UTF-8):      Moduł SPL dla PHP
1432 Group:          Libraries
1433 URL:            http://php.net/manual/en/book.spl.php
1434 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1435 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
1436 Requires:       %{name}-simplexml = %{epoch}:%{version}-%{release}
1437 Provides:       php(spl)
1438
1439 %description spl
1440 This is a dynamic shared object (DSO) for PHP that will add Standard
1441 PHP Library support.
1442
1443 %description spl -l pl.UTF-8
1444 Moduł PHP dodający obsługę gniazdek.
1445
1446 %package sqlite
1447 Summary:        SQLite extension module for PHP
1448 Summary(pl.UTF-8):      Moduł SQLite dla PHP
1449 Group:          Libraries
1450 URL:            http://www.php.net/manual/en/book.sqlite.php
1451 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1452 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1453 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1454 Provides:       php(sqlite)
1455
1456 %description sqlite
1457 SQLite is a C library that implements an embeddable SQL database
1458 engine. Programs that link with the SQLite library can have SQL
1459 database access without running a separate RDBMS process.
1460
1461 SQLite is not a client library used to connect to a big database
1462 server. SQLite is the server. The SQLite library reads and writes
1463 directly to and from the database files on disk.
1464
1465 %description sqlite -l pl.UTF-8
1466 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1467 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1468 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1469 RDBMS.
1470
1471 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1472 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1473 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1474 dysku.
1475
1476 %package sqlite3
1477 Summary:        SQLite3 extension module for PHP
1478 Summary(pl.UTF-8):      Moduł SQLite3 dla PHP
1479 Group:          Libraries
1480 URL:            http://php.net/manual/en/book.sqlite3.php
1481 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1482 Provides:       php(sqlite3)
1483
1484 %description sqlite3
1485 SQLite is a C library that implements an embeddable SQL database
1486 engine. Programs that link with the SQLite library can have SQL
1487 database access without running a separate RDBMS process.
1488
1489 SQLite is not a client library used to connect to a big database
1490 server. SQLite is the server. The SQLite library reads and writes
1491 directly to and from the database files on disk.
1492
1493 %description sqlite3 -l pl.UTF-8
1494 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1495 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1496 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1497 RDBMS.
1498
1499 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1500 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1501 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1502 dysku.
1503
1504 %package sybase-ct
1505 Summary:        Sybase-CT extension module for PHP
1506 Summary(pl.UTF-8):      Moduł Sybase-CT dla PHP
1507 Group:          Libraries
1508 URL:            http://www.php.net/manual/en/book.sybase.php
1509 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1510 Provides:       php(sybase-ct)
1511 Obsoletes:      php-sybase
1512 Conflicts:      php-sybase
1513
1514 %description sybase-ct
1515 This is a dynamic shared object (DSO) for PHP that will add Sybase and
1516 MS SQL databases support through CT-lib.
1517
1518 %description sybase-ct -l pl.UTF-8
1519 Moduł PHP dodający obsługę baz danych Sybase oraz MS SQL poprzez
1520 CT-lib.
1521
1522 %package sysvmsg
1523 Summary:        SysV msg extension module for PHP
1524 Summary(pl.UTF-8):      Moduł SysV msg dla PHP
1525 Group:          Libraries
1526 URL:            http://www.php.net/manual/en/book.sem.php
1527 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1528 Provides:       php(sysvmsg)
1529
1530 %description sysvmsg
1531 This is a dynamic shared object (DSO) for PHP that will add SysV
1532 message queues support.
1533
1534 %description sysvmsg -l pl.UTF-8
1535 Moduł PHP umożliwiający korzystanie z kolejek komunikatów SysV.
1536
1537 %package sysvsem
1538 Summary:        SysV sem extension module for PHP
1539 Summary(pl.UTF-8):      Moduł SysV sem dla PHP
1540 Group:          Libraries
1541 URL:            http://www.php.net/manual/en/book.sem.php
1542 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1543 Provides:       php(sysvsem)
1544
1545 %description sysvsem
1546 This is a dynamic shared object (DSO) for PHP that will add SysV
1547 semaphores support.
1548
1549 %description sysvsem -l pl.UTF-8
1550 Moduł PHP umożliwiający korzystanie z semaforów SysV.
1551
1552 %package sysvshm
1553 Summary:        SysV shm extension module for PHP
1554 Summary(pl.UTF-8):      Moduł SysV shm dla PHP
1555 Group:          Libraries
1556 URL:            http://www.php.net/manual/en/book.shmop.php
1557 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1558 Provides:       php(sysvshm)
1559
1560 %description sysvshm
1561 This is a dynamic shared object (DSO) for PHP that will add SysV
1562 Shared Memory support.
1563
1564 %description sysvshm -l pl.UTF-8
1565 Moduł PHP umożliwiający korzystanie z pamięci dzielonej SysV.
1566
1567 %package tests
1568 Summary:        Contains unit test files for PHP and extensions
1569 Summary(pl.UTF-8):      Zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1570 Group:          Libraries
1571 URL:            http://qa.php.net/
1572 Requires:       %{name}-cli
1573
1574 %description tests
1575 This package contains unit tests for PHP and it's extensions.
1576
1577 %description tests -l pl.UTF-8
1578 Ten pakiet zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1579
1580 %package tidy
1581 Summary:        Tidy extension module for PHP
1582 Summary(pl.UTF-8):      Moduł Tidy dla PHP
1583 Group:          Libraries
1584 URL:            http://www.php.net/manual/en/book.tidy.php
1585 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1586 Requires:       tidy
1587 Provides:       php(tidy)
1588
1589 %description tidy
1590 This is a dynamic shared object (DSO) for PHP that will add Tidy
1591 support.
1592
1593 %description tidy -l pl.UTF-8
1594 Moduł PHP umożliwiający korzystanie z tidy.
1595
1596 %package tokenizer
1597 Summary:        tokenizer extension module for PHP
1598 Summary(pl.UTF-8):      Moduł rozszerzenia tokenizer dla PHP
1599 Group:          Libraries
1600 URL:            http://www.php.net/manual/en/book.tokenizer.php
1601 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1602 Provides:       php(tokenizer)
1603
1604 %description tokenizer
1605 This is a dynamic shared object (DSO) for PHP that will add tokenizer
1606 support.
1607
1608 %description tokenizer -l pl.UTF-8
1609 Moduł PHP dodający obsługę tokenizera do PHP.
1610
1611 %package wddx
1612 Summary:        wddx extension module for PHP
1613 Summary(pl.UTF-8):      Moduł wddx dla PHP
1614 Group:          Libraries
1615 URL:            http://www.php.net/manual/en/book.wddx.php
1616 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1617 # - wddx doesn't require session as it's disabled at compile time:
1618 #   if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
1619 #   see also php.spec#rev1.120.2.22
1620 #Requires:      %{name}-session = %{epoch}:%{version}-%{release}
1621 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1622 Provides:       php(wddx)
1623
1624 %description wddx
1625 This is a dynamic shared object (DSO) for PHP that will add wddx
1626 support.
1627
1628 %description wddx -l pl.UTF-8
1629 Moduł PHP umożliwiający korzystanie z wddx.
1630
1631 %package xml
1632 Summary:        XML extension module for PHP
1633 Summary(pl.UTF-8):      Moduł XML dla PHP
1634 Group:          Libraries
1635 URL:            http://www.php.net/manual/en/book.xml.php
1636 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1637 Provides:       php(xml)
1638
1639 %description xml
1640 This is a dynamic shared object (DSO) for PHP that will add XML
1641 support. This extension lets you create XML parsers and then define
1642 handlers for different XML events.
1643
1644 %description xml -l pl.UTF-8
1645 Moduł PHP umożliwiający parsowanie plików XML i obsługę zdarzeń
1646 związanych z tymi plikami. Pozwala on tworzyć analizatory XML-a i
1647 następnie definiować procedury obsługi dla różnych zdarzeń XML.
1648
1649 %package xmlreader
1650 Summary:        XML Reader extension module for PHP
1651 Summary(pl.UTF-8):      Moduł XML Reader dla PHP
1652 Group:          Libraries
1653 URL:            http://www.php.net/manual/en/book.xmlreader.php
1654 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1655 Suggests:       %{name}-dom = %{epoch}:%{version}-%{release}
1656 Provides:       php(xmlreader)
1657
1658 %description xmlreader
1659 This is a dynamic shared object (DSO) for PHP that will add XML Reader
1660 support. The XMLReader extension is an XML Pull parser. The reader
1661 acts as a cursor going forward on the document stream and stopping at
1662 each node on the way.
1663
1664 %description xmlreader -l pl.UTF-8
1665 Moduł PHP umożliwiający analizę plików XML w trybie Pull. Czytnik
1666 działa jako kursor przechodzący przez strumień dokumentu i
1667 zatrzymujący się na każdym węźle po drodze.
1668
1669 %package xmlrpc
1670 Summary:        xmlrpc extension module for PHP
1671 Summary(pl.UTF-8):      Moduł xmlrpc dla PHP
1672 Group:          Libraries
1673 URL:            http://www.php.net/manual/en/book.xmlrpc.php
1674 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1675 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1676 Provides:       php(xmlrpc)
1677
1678 %description xmlrpc
1679 This is a dynamic shared object (DSO) for PHP that will add XMLRPC
1680 support.
1681
1682 %description xmlrpc -l pl.UTF-8
1683 Moduł PHP dodający obsługę XMLRPC.
1684
1685 %package xmlwriter
1686 Summary:        Fast, non-cached, forward-only means to write XML data
1687 Summary(pl.UTF-8):      Szybka, nie cachowana metoda zapisu danych w formacie XML
1688 Group:          Libraries
1689 URL:            http://www.php.net/manual/en/book.xmlwriter.php
1690 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1691 Provides:       php(xmlwriter)
1692 Obsoletes:      php-pecl-xmlwriter
1693
1694 %description xmlwriter
1695 This extension wraps the libxml xmlWriter API. Represents a writer
1696 that provides a non-cached, forward-only means of generating streams
1697 or files containing XML data.
1698
1699 %description xmlwriter -l pl.UTF-8
1700 To rozszerzenie obudowuje API xmlWriter z libxml. Reprezentuje obsługę
1701 zapisu dostarczającą nie cachowanych metod generowania strumieni lub
1702 plików zawierających dane XML.
1703
1704 %package xsl
1705 Summary:        xsl extension module for PHP
1706 Summary(pl.UTF-8):      Moduł xsl dla PHP
1707 Group:          Libraries
1708 URL:            http://www.php.net/manual/en/book.xsl.php
1709 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1710 Requires:       %{name}-dom = %{epoch}:%{version}-%{release}
1711 Requires:       libxslt >= 1.0.18
1712 # actually not true, functionality is similar, but API differs
1713 Provides:       php(xsl)
1714 Obsoletes:      php-xslt <= 3:4.3.8-1
1715
1716 %description xsl
1717 This is a dynamic shared object (DSO) for PHP that will add new XSL
1718 support (using libxslt).
1719
1720 %description xsl -l pl.UTF-8
1721 Moduł PHP dodający nową obsługę XSLT (przy użyciu libxslt).
1722
1723 %package zip
1724 Summary:        Zip management extension
1725 Summary(pl.UTF-8):      Zarządzanie archiwami zip
1726 Group:          Libraries
1727 URL:            http://www.php.net/manual/en/book.zip.php
1728 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1729 Provides:       php(zip)
1730 Obsoletes:      php-pecl-zip
1731
1732 %description zip
1733 Zip is an extension to create, modify and read zip files.
1734
1735 %description zip -l pl.UTF-8
1736 Zip jest rozszerzeniem umożliwiającym tworzenie, modyfikację oraz
1737 odczyt archiwów zip.
1738
1739 %package zlib
1740 Summary:        Zlib extension module for PHP
1741 Summary(pl.UTF-8):      Moduł zlib dla PHP
1742 Group:          Libraries
1743 URL:            http://www.php.net/manual/en/book.zlib.php
1744 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1745 Provides:       php(zlib)
1746
1747 %description zlib
1748 This is a dynamic shared object (DSO) for PHP that will add zlib
1749 compression support to PHP.
1750
1751 %description zlib -l pl.UTF-8
1752 Moduł PHP umożliwiający używanie kompresji zlib.
1753
1754 %prep
1755 %setup -q
1756 # prep for suhosin patch
1757 %{__sed} -i -e 's,\r$,,' Zend/Zend.dsp Zend/ZendTS.dsp
1758 %patch0 -p1
1759 %patch1 -p1
1760 %patch2 -p1
1761 %patch3 -p1
1762 %patch4 -p1
1763 %patch5 -p1
1764 %patch6 -p1
1765 %patch8 -p1
1766 %patch7 -p1
1767 %patch9 -p1
1768 cp php.ini-production php.ini
1769 %patch10 -p1
1770 %if %{with type_hints}
1771 %patch12 -p0
1772 %endif
1773 %patch14 -p1
1774 %patch15 -p1
1775 %patch17 -p1
1776 %patch18 -p1
1777 %if %{with system_gd}
1778 %patch19 -p1
1779 %endif
1780 %patch20 -p1
1781 %patch21 -p1
1782 %patch22 -p1
1783 %patch23 -p1
1784 %patch24 -p1
1785 %patch25 -p1
1786 %patch26 -p1
1787 %patch27 -p1
1788 %patch29 -p1
1789 %patch31 -p1
1790 %patch32 -p1
1791 %if "%{pld_release}" != "ac"
1792 %patch34 -p1
1793 %endif
1794 %patch35 -p1
1795 %patch36 -p1
1796 %patch37 -p1
1797 %patch38 -p1
1798 %patch39 -p1
1799 %if %{with fpm}
1800 %patch40 -p1
1801 %patch41 -p1
1802 %patch42 -p1
1803 %endif
1804 %patch43 -p1
1805 %patch44 -p1
1806 %patch45 -p1
1807 %patch46 -p1
1808 %if %{with suhosin}
1809 %patch47 -p1
1810 %endif
1811 %patch49 -p1
1812 %patch50 -p1
1813 %patch51 -p1
1814 %patch52 -p1
1815 %patch53 -p1
1816 %patch54 -p1
1817
1818 %if "%{pld_release}" != "ac"
1819 sed -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4
1820 %endif
1821
1822 # cleanup backups after patching
1823 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
1824
1825 # conflict seems to be resolved by recode patches
1826 rm -f ext/recode/config9.m4
1827
1828 # remove all bundled libraries not to link with them accidentally
1829 #rm -rf ext/sqlite/libsqlite
1830 rm -rf ext/sqlite3/libsqlite
1831 #rm -rf ext/bcmath/libbcmath
1832 #rm -rf ext/date/lib
1833 #rm -rf ext/dba/libcdb
1834 #rm -rf ext/dba/libflatfile
1835 #rm -rf ext/dba/libinifile
1836 #rm -rf ext/gd/libgd
1837 #rm -rf ext/mbstring/libmbfl
1838 #rm -rf ext/mbstring/oniguruma
1839 rm -rf ext/pcre/pcrelib
1840 rm -rf ext/pdo_sqlite/sqlite
1841 #rm -rf ext/soap/interop
1842 rm -r ext/xmlrpc/libxmlrpc
1843
1844 cp -af Zend/LICENSE{,.Zend}
1845 install -p %{SOURCE13} dep-tests.sh
1846
1847 # breaks build
1848 sed -i -e 's#-fvisibility=hidden##g' configure*
1849
1850 # disable broken tests
1851 # says just "Terminated" twice and fails
1852 mv sapi/cli/tests/022.phpt{,.broken}
1853
1854 sh -xe %{_sourcedir}/skip-tests.sh
1855
1856 %build
1857 API=$(awk '/#define PHP_API_VERSION/{print $3}' main/php.h)
1858 if [ $API != %{php_api_version} ]; then
1859         echo "Set %%define php_api_version to $API and re-run."
1860         exit 1
1861 fi
1862
1863 API=$(awk '/#define ZEND_MODULE_API_NO/{print $3}' Zend/zend_modules.h)
1864 if [ $API != %{zend_module_api} ]; then
1865         echo "Set %%define zend_module_api to $API and re-run."
1866         exit 1
1867 fi
1868
1869 API=$(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' Zend/zend_extensions.h)
1870 if [ $API != %{zend_extension_api} ]; then
1871         echo "Set %%define zend_extension_api to $API and re-run."
1872         exit 1
1873 fi
1874
1875 export EXTENSION_DIR="%{php_extensiondir}"
1876 # configure once (for faster debugging purposes)
1877 if [ ! -f _built-conf ]; then
1878         # now remove Makefile copies
1879         rm -f Makefile.{cgi-fcgi,fpm,cli,apxs1,apxs2,litespeed}
1880         %{__libtoolize}
1881         %{__aclocal}
1882         cp -f /usr/share/automake/config.* .
1883         ./buildconf --force
1884         touch _built-conf
1885 fi
1886 export PROG_SENDMAIL="/usr/lib/sendmail"
1887 export CPPFLAGS="-DDEBUG_FASTCGI -DHAVE_STRNDUP %{rpmcppflags} \
1888         -I%{_includedir}/xmlrpc-epi"
1889
1890 sapis="
1891 cgi-fcgi cli
1892 %if %{with fpm}
1893 fpm
1894 %endif
1895 %if %{with apache1}
1896 apxs1
1897 %endif
1898 %if %{with apache2}
1899 apxs2
1900 %endif
1901 %if %{with litespeed}
1902 litespeed
1903 %endif
1904 "
1905 for sapi in $sapis; do
1906         : SAPI $sapi
1907         # skip if already configured (for faster debugging purposes)
1908         [ -f Makefile.$sapi ] && continue
1909
1910         sapi_args=''
1911         case $sapi in
1912         cgi-fcgi)
1913                 sapi_args='--disable-cli'
1914         ;;
1915         cli)
1916                 sapi_args='--disable-cgi %{?with_gcov:--enable-gcov}'
1917         ;;
1918         fpm)
1919                 sapi_args='--disable-cli --with-fpm'
1920                 ;;
1921         apxs1)
1922                 ver=$(rpm -q --qf '%{V}' apache1-devel)
1923                 sapi_args="--disable-cli --with-apxs=%{apxs1} --with-apache-version=$ver"
1924         ;;
1925         apxs2)
1926                 ver=$(rpm -q --qf '%{V}' apache-devel)
1927                 sapi_args="--disable-cli --with-apxs2=%{apxs2} --with-apache-version=$ver"
1928         ;;
1929         litespeed)
1930                 sapi_args='--with-litespeed'
1931         ;;
1932         esac
1933
1934         %configure \
1935         $sapi_args \
1936 %if "%{!?configure_cache:0}%{?configure_cache}" == "0"
1937         --cache-file=config.cache \
1938 %endif
1939         --with-libdir=%{_lib} \
1940         --with-config-file-path=%{_sysconfdir} \
1941         --with-config-file-scan-dir=%{_sysconfdir}/conf.d \
1942         --with-exec-dir=%{_bindir} \
1943         --%{!?debug:dis}%{?debug:en}able-debug \
1944         %{?with_zts:--enable-maintainer-zts} \
1945         --enable-inline-optimization \
1946         --enable-bcmath=shared \
1947         --enable-calendar=shared \
1948         --enable-ctype=shared \
1949         --enable-dba=shared \
1950         --enable-dom=shared \
1951         --enable-exif=shared \
1952         --enable-fileinfo=shared \
1953         --enable-ftp=shared \
1954         --enable-gd-native-ttf \
1955         --enable-intl=shared \
1956         --enable-libxml \
1957         --enable-magic-quotes \
1958         --enable-mbstring=shared,all \
1959         --enable-mbregex \
1960         --enable-pcntl=shared \
1961         --enable-pdo=shared \
1962         --enable-json=shared \
1963         --enable-hash=shared \
1964         --enable-xmlwriter=shared \
1965 %if %{with fpm}
1966         --with-libevent=shared \
1967         --with-fpm-conf=%{_sysconfdir}/fpm.conf \
1968         --with-fpm-log=/var/log/fpm.log \
1969         --with-fpm-pid=/var/run/php/fpm.pid \
1970         --with-fpm-port=9000 \
1971         --with-fpm-user=http \
1972         --with-fpm-group=http \
1973 %endif
1974 %if %{with mssql} || %{with sybase_ct}
1975         --with-pdo-dblib=shared \
1976 %endif
1977 %if %{with interbase} && %{without interbase_inst}
1978         --with-pdo-firebird=shared,/usr \
1979 %endif
1980         --with-mysql-sock=/var/lib/mysql/mysql.sock \
1981         --with-pdo-mysql=shared%{?with_mysqlnd:,mysqlnd} \
1982         %{?with_oci8:--with-pdo-oci=shared} \
1983         %{?with_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \
1984         %{?with_pgsql:--with-pdo-pgsql=shared} \
1985         %{?with_sqlite:--with-pdo-sqlite=shared,/usr} \
1986         --without-libexpat-dir \
1987         --enable-overload=shared \
1988         --enable-posix=shared \
1989         --enable-shared \
1990         --enable-session=shared \
1991         --enable-shmop=shared \
1992         --enable-simplexml=shared \
1993         --enable-spl=shared \
1994         --enable-sysvmsg=shared \
1995         --enable-sysvsem=shared \
1996         --enable-sysvshm=shared \
1997         --enable-safe-mode \
1998         --enable-soap=shared \
1999         --enable-sockets=shared \
2000         --enable-tokenizer=shared \
2001         --enable-ucd-snmp-hack \
2002         %{?with_wddx:--enable-wddx=shared} \
2003         --enable-xml=shared \
2004         --enable-xmlreader=shared \
2005         --with-bz2=shared \
2006         %{__with_without curl curl shared} \
2007         --with-db4 \
2008         %{?with_fdf:--with-fdftk=shared} \
2009         --with-iconv=shared \
2010         --with-freetype-dir=shared \
2011         --with-gettext=shared \
2012         --with-gd=shared%{?with_system_gd:,/usr} \
2013         --with-gdbm \
2014         --with-gmp=shared \
2015         %{?with_imap:--with-imap=shared --with-imap-ssl} \
2016         %{?with_interbase:--with-interbase=shared%{!?with_interbase_inst:,/usr}} \
2017         --with-jpeg-dir=/usr \
2018         %{?with_ldap:--with-ldap=shared --with-ldap-sasl} \
2019         --with-mcrypt=shared \
2020         %{?with_mm:--with-mm} \
2021         %{?with_mssql:--with-mssql=shared} \
2022         %{?with_mysqlnd:--with-mysqlnd=shared} \
2023         --with-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2024         %{?with_mysqli:--with-mysqli=shared%{?with_mysqlnd:,mysqlnd}} \
2025         %{?with_oci8:--with-oci8=shared} \
2026         %{?with_openssl:--with-openssl=shared} \
2027         --with-kerberos \
2028         %{__with_without pcre pcre-regex /usr} \
2029         %{__enable_disable filter filter shared} \
2030         --with-pear=%{php_pear_dir} \
2031         %{__with_without pgsql pgsql shared,/usr} \
2032         %{__enable_disable phar phar shared} \
2033         --with-png-dir=/usr \
2034         %{?with_pspell:--with-pspell=shared} \
2035         --with-readline=shared \
2036         %{?with_recode:--with-recode=shared} \
2037         --with-regex=system \
2038         %{?with_snmp:--with-snmp=shared} \
2039         %{?with_sybase_ct:--with-sybase-ct=shared,/usr} \
2040         %{!?with_sqlite:--without-sqlite --without-pdo-sqlite}%{?with_sqlite:--with-sqlite=shared,/usr --enable-sqlite-utf8} \
2041         %{__with_without sqlite3 sqlite3 shared,/usr} \
2042         --with-t1lib=shared \
2043         %{?with_tidy:--with-tidy=shared} \
2044         %{?with_odbc:--with-unixODBC=shared,/usr} \
2045         %{__with_without xmlrpc xmlrpc shared,/usr} \
2046         --with-xsl=shared \
2047         --with-zlib=shared \
2048         --with-zlib-dir=shared,/usr \
2049         --enable-zip=shared,/usr \
2050
2051         # save for debug
2052         cp -f Makefile Makefile.$sapi
2053         cp -f main/php_config.h php_config.h.$sapi
2054         cp -f config.log config.log.$sapi
2055 done
2056
2057 # as we build each SAPI in own make, adjust php-config.in forehead
2058 sapis=$(awk '/^PHP_SAPI = /{print $3}' Makefile.* | sort -u | xargs)
2059 sed -i -e "s,@PHP_INSTALLED_SAPIS@,$sapis," "scripts/php-config.in"
2060
2061 # must make libphp_common first, so modules can link against it.
2062 %{__make} libphp_common.la
2063 %{__make} build-modules
2064
2065 %if %{with apache1}
2066 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache/libphp5.la -f Makefile.apxs1
2067 %endif
2068
2069 %if %{with apache2}
2070 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache2handler/libphp5.la -f Makefile.apxs2
2071 %endif
2072
2073 %if %{with litespeed}
2074 %{__make} -f Makefile.litespeed
2075 %endif
2076
2077 # CGI/FCGI
2078 cp -af php_config.h.cgi-fcgi main/php_config.h
2079 %{__make} -f Makefile.cgi-fcgi
2080 [ "$(echo '<?=php_sapi_name();' | ./sapi/cgi/php-cgi -qn)" = cgi-fcgi ] || exit 1
2081
2082 # PHP FPM
2083 %if %{with fpm}
2084 cp -af php_config.h.fpm main/php_config.h
2085 %{__make} -f Makefile.fpm
2086  ./sapi/fpm/php-fpm -qn -m > /dev/null
2087 %endif
2088
2089 # CLI
2090 cp -af php_config.h.cli main/php_config.h
2091 %{__make} -f Makefile.cli
2092 [ "$(echo '<?=php_sapi_name();' | ./sapi/cli/php -qn)" = cli ] || exit 1
2093
2094 # check for stupid xml parse breakage where &lt; and &gt; just get lost in parse result
2095 ./sapi/cli/php -n -dextension_dir=modules -dextension=xml.so -r '$p = xml_parser_create(); xml_parse_into_struct($p, "<x>&lt;</x>", $vals, $index); exit((int )empty($vals[0]["value"]));'
2096
2097 # Generate stub .ini files for each extension
2098 rm -rf conf.d
2099 install -d conf.d
2100 generate_inifiles() {
2101         for so in modules/*.so; do
2102                 mod=$(basename $so .so)
2103                 conf="$mod.ini"
2104                 # xml needs to be loaded before wddx
2105                 [ "$mod" = "wddx" ] && conf="xml_$mod.ini"
2106                 # pre needs to be loaded before SPL
2107                 [ "$mod" = "pcre" ] && conf="PCRE.ini"
2108                 # spl needs to be loaded before mysqli
2109                 [ "$mod" = "spl" ] && conf="SPL.ini"
2110                 # mysqlnd needs to be loaded before mysql,mysqli,pdo_mysqli
2111                 [ "$mod" = "mysqlnd" ] && conf="MySQLND.ini"
2112                 echo "+ $conf"
2113                 cat > conf.d/$conf <<-EOF
2114                         ; Enable $mod extension module
2115                         extension=$mod.so
2116                 EOF
2117         done
2118 }
2119 generate_inifiles
2120
2121 # Check that the module inner-dependencies are intact
2122 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh > dep-tests.log
2123 if grep -v OK dep-tests.log; then
2124         echo >&2 "The results above were not expected"
2125         exit 1
2126 fi
2127
2128
2129 %if %{with tests}
2130 # Run tests, using the CLI SAPI
2131 cp -af php_config.h.cli main/php_config.h
2132 cp -af Makefile.cli Makefile
2133 export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
2134 unset TZ LANG LC_ALL || :
2135 %{__make} test RUN_TESTS_SETTINGS="-s test.log" PHP_TEST_SHARED_SYSTEM_EXTENSIONS=
2136 unset NO_INTERACTION REPORT_EXIT_STATUS MALLOC_CHECK_
2137
2138 # collect failed tests into cleanup script used in prep.
2139 sed -ne '/FAILED TEST SUMMARY/,/^===/p' test.log | sed -e '1,/^---/d;/^===/,$d' > tests-failed.log
2140 sed -ne '/\[.*\]/{s/\(.*\) \[\(.*\)\]/# \1\nmv \2{,.skip}/p}' tests-failed.log \
2141         >> %{_sourcedir}/skip-tests.sh
2142
2143 failed=$(wc -l < tests-failed.log)
2144 if [ "$failed" != 0 ]; then
2145         exit 1
2146 fi
2147 %endif
2148
2149 %install
2150 rm -rf $RPM_BUILD_ROOT
2151 install -d $RPM_BUILD_ROOT{%{_libdir}/{php,apache{,1}},%{_sysconfdir}/{apache,cgi}} \
2152         $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}} \
2153         $RPM_BUILD_ROOT/etc/{apache/conf.d,httpd/conf.d} \
2154         $RPM_BUILD_ROOT%{_mandir}/man1 \
2155
2156 # install the Apache modules' files
2157 %{__make} install-headers install-build install-modules install-programs \
2158         INSTALL_ROOT=$RPM_BUILD_ROOT
2159
2160 # install Apache1 DSO module
2161 %if %{with apache1}
2162 libtool --silent --mode=install install sapi/apache/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache1
2163 %endif
2164
2165 # install Apache2 DSO module
2166 %if %{with apache2}
2167 libtool --silent --mode=install install sapi/apache2handler/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache
2168 %endif
2169
2170 # install litespeed sapi
2171 %if %{with litespeed}
2172 libtool --silent --mode=install install sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/php.litespeed
2173 %endif
2174
2175 libtool --silent --mode=install install libphp_common.la $RPM_BUILD_ROOT%{_libdir}
2176 # fix install paths, avoid evil rpaths
2177 sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la
2178 # better solution?
2179 sed -i -e 's|libphp_common.la|$(libdir)/libphp_common.la|' $RPM_BUILD_ROOT%{_libdir}/php/build/acinclude.m4
2180
2181 # install CGI/FCGI
2182 libtool --silent --mode=install install sapi/cgi/php-cgi $RPM_BUILD_ROOT%{_bindir}/php.cgi
2183 ln -sf php.cgi $RPM_BUILD_ROOT%{_bindir}/php.fcgi
2184
2185 # install FCGI PM
2186 %if %{with fpm}
2187 libtool --silent --mode=install install sapi/fpm/php-fpm $RPM_BUILD_ROOT%{_bindir}/php.fpm
2188 cp -a sapi/fpm/php-fpm.1 $RPM_BUILD_ROOT%{_mandir}/man1/php-fpm.1
2189 cp -a sapi/fpm/php_fpm.conf $RPM_BUILD_ROOT%{_sysconfdir}/fpm.conf
2190 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
2191 install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/php-fpm
2192 install -d $RPM_BUILD_ROOT/etc/logrotate.d
2193 cp -a %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/php-fpm
2194 %endif
2195
2196 # install CLI
2197 libtool --silent --mode=install install sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php.cli
2198 install sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php.1
2199 echo ".so php.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.cli.1
2200 ln -sf php.cli $RPM_BUILD_ROOT%{_bindir}/php
2201
2202 sed -e 's#%{_prefix}/lib/php#%{_libdir}/php#g' php.ini > $RPM_BUILD_ROOT%{_sysconfdir}/php.ini
2203
2204 install -d $RPM_BUILD_ROOT%{_sysconfdir}
2205 cp -a %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/php-cli.ini
2206 cp -a %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/php-cgi-fcgi.ini
2207 cp -a %{SOURCE9} $RPM_BUILD_ROOT%{_sysconfdir}/browscap.ini
2208
2209 %if %{with apache1}
2210 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/apache/conf.d/70_mod_php.conf
2211 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache.ini
2212 rm -f $RPM_BUILD_ROOT%{_libdir}/apache1/libphp5.la
2213 %endif
2214
2215 %if %{with apache2}
2216 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/httpd/conf.d/70_mod_php.conf
2217 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache2handler.ini
2218 rm -f $RPM_BUILD_ROOT%{_libdir}/apache/libphp5.la
2219 %endif
2220
2221 install -d $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2222 cp -a conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2223
2224 # per SAPI ini directories
2225 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{cgi-fcgi,cli,apache,apache2handler}.d
2226
2227 # for CLI SAPI only
2228 mv $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d}
2229
2230 # use system automake and {lib,sh}tool
2231 %if "%{pld_release}" != "ac"
2232         ln -snf /usr/share/automake/config.{guess,sub} $RPM_BUILD_ROOT%{_libdir}/php/build
2233         for i in libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4; do
2234                 ln -snf %{_aclocaldir}/${i} $RPM_BUILD_ROOT%{_libdir}/php/build
2235         done
2236         ln -snf %{_datadir}/libtool/config/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2237 %else
2238         ln -snf %{_aclocaldir}/libtool.m4 $RPM_BUILD_ROOT%{_libdir}/php/build
2239         ln -snf %{_datadir}/libtool/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2240 %endif
2241 ln -snf %{_bindir}/shtool $RPM_BUILD_ROOT%{_libdir}/php/build
2242
2243 # as a result of ext/pcre/pcrelib removal in %%prep, ext/pcre/php_pcre.h
2244 # isn't installed by install-headers make target, we do it manually here.
2245 # this header file is required by e.g. filter PECL extension
2246 install -D ext/pcre/php_pcre.h $RPM_BUILD_ROOT%{_includedir}/php/ext/pcre/php_pcre.h
2247 # for php-pecl-mailparse
2248 install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2249 cp -a ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2250
2251 # tests
2252 install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2253 install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php
2254 cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2255
2256 %clean
2257 rm -rf $RPM_BUILD_ROOT
2258
2259 %post -n apache1-mod_php
2260 if [ "$1" = "1" ]; then
2261         %service -q apache restart
2262 fi
2263
2264 %postun -n apache1-mod_php
2265 if [ "$1" = "0" ]; then
2266         %service -q apache restart
2267 fi
2268
2269 %post -n apache-mod_php
2270 if [ "$1" = "1" ]; then
2271         %service -q httpd restart
2272 fi
2273
2274 %postun -n apache-mod_php
2275 if [ "$1" = "0" ]; then
2276         %service -q httpd restart
2277 fi
2278
2279 %pre fpm
2280 %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http
2281
2282 %post fpm
2283 /sbin/chkconfig --add php-fpm
2284 %service php-fpm restart
2285
2286 %preun fpm
2287 if [ "$1" = 0 ]; then
2288         %service php-fpm stop
2289         /sbin/chkconfig --del php-fpm
2290 fi
2291
2292 %postun fpm
2293 if [ "$1" = "0" ]; then
2294         %userremove http
2295 fi
2296
2297 %post   common -p /sbin/ldconfig
2298 %postun common -p /sbin/ldconfig
2299
2300 %posttrans common
2301 # minimizing apache restarts logics. we restart webserver:
2302 #
2303 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2304 # 2. first install of extension (post: $1 = 1)
2305 # 2. uninstall of extension (postun: $1 == 0)
2306 #
2307 # the strict internal deps between extensions (and apache modules) and
2308 # common package are very important for all this to work.
2309
2310 # restart webserver at the end of transaction
2311 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart
2312 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart
2313
2314 %if %{with apache1}
2315 %triggerpostun -n apache1-mod_php -- php < 4:5.0.4-9.11
2316 sed -i -e '
2317         /^AddType application\/x-httpd-php \.php/s,^,#,
2318         /^\(Add\|Load\)Module.*php5\.\(so\|c\)/d
2319 ' /etc/apache/apache.conf
2320 %service -q apache restart
2321 %endif
2322
2323 %if %{with apache2}
2324 %triggerpostun -n apache-mod_php -- php < 4:5.0.4-7.1
2325 # for fixed php-SAPI.ini, the poor php-apache.ini was never read for apache2
2326 if [ -f %{_sysconfdir}/php-apache.ini.rpmsave ]; then
2327         cp -f %{_sysconfdir}/php-apache2handler.ini{,.rpmnew}
2328         mv -f %{_sysconfdir}/php-apache.ini.rpmsave %{_sysconfdir}/php-apache2handler.ini
2329 fi
2330 %endif
2331
2332 # common macros called at extension post/postun scriptlet
2333 %define extension_scripts() \
2334 %post %1 \
2335 if [ "$1" = "1" ]; then \
2336         %php_webserver_restart \
2337 fi \
2338 \
2339 %postun %1 \
2340 if [ "$1" = "0" ]; then \
2341         %php_webserver_restart \
2342 fi
2343 %{nil}
2344
2345 # extension scripts defines
2346 %extension_scripts bcmath
2347 %extension_scripts bzip2
2348 %extension_scripts calendar
2349 %extension_scripts ctype
2350 %extension_scripts curl
2351 %extension_scripts dba
2352 %extension_scripts dom
2353 %extension_scripts exif
2354 %extension_scripts fdf
2355 %extension_scripts fileinfo
2356 %extension_scripts filter
2357 %extension_scripts ftp
2358 %extension_scripts gd
2359 %extension_scripts gettext
2360 %extension_scripts gmp
2361 %extension_scripts hash
2362 %extension_scripts iconv
2363 %extension_scripts imap
2364 %extension_scripts interbase
2365 %extension_scripts intl
2366 %extension_scripts json
2367 %extension_scripts ldap
2368 %extension_scripts mbstring
2369 %extension_scripts mcrypt
2370 %extension_scripts mssql
2371 %extension_scripts mysqlnd
2372 %extension_scripts mysql
2373 %extension_scripts mysqli
2374 %extension_scripts oci8
2375 %extension_scripts odbc
2376 %extension_scripts openssl
2377 %extension_scripts pcre
2378 %extension_scripts pdo-dblib
2379 %extension_scripts pdo-firebird
2380 %extension_scripts pdo-mysql
2381 %extension_scripts pdo-odbc
2382 %extension_scripts pdo-pgsql
2383 %extension_scripts pdo-sqlite
2384 %extension_scripts pgsql
2385 %extension_scripts phar
2386 %extension_scripts posix
2387 %extension_scripts pspell
2388 %extension_scripts recode
2389 %extension_scripts session
2390 %extension_scripts shmop
2391 %extension_scripts snmp
2392 %extension_scripts soap
2393 %extension_scripts sockets
2394 %extension_scripts spl
2395 %extension_scripts sqlite
2396 %extension_scripts sqlite3
2397 %extension_scripts sybase-ct
2398 %extension_scripts sysvmsg
2399 %extension_scripts sysvsem
2400 %extension_scripts sysvshm
2401 %extension_scripts tidy
2402 %extension_scripts tokenizer
2403 %extension_scripts wddx
2404 %extension_scripts xml
2405 %extension_scripts xmlreader
2406 %extension_scripts xmlrpc
2407 %extension_scripts xmlwriter
2408 %extension_scripts xsl
2409 %extension_scripts zip
2410 %extension_scripts zlib
2411
2412 %triggerun bcmath -- %{name}-bcmath < 4:5.0.4-9.1
2413 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bcmath\.so/d' %{_sysconfdir}/php.ini
2414
2415 %triggerun bzip2 -- %{name}-bzip2 < 4:5.0.4-9.1
2416 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bzip2\.so/d' %{_sysconfdir}/php.ini
2417
2418 %triggerun calendar -- %{name}-calendar < 4:5.0.4-9.1
2419 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*calendar\.so/d' %{_sysconfdir}/php.ini
2420
2421 %triggerun ctype -- %{name}-ctype < 4:5.0.4-9.1
2422 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ctype\.so/d' %{_sysconfdir}/php.ini
2423
2424 %triggerun curl -- %{name}-curl < 4:5.0.4-9.1
2425 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*curl\.so/d' %{_sysconfdir}/php.ini
2426
2427 %triggerun dba -- %{name}-dba < 4:5.0.4-9.1
2428 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dba\.so/d' %{_sysconfdir}/php.ini
2429
2430 %triggerun dom -- %{name}-dom < 4:5.0.4-9.1
2431 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dom\.so/d' %{_sysconfdir}/php.ini
2432
2433 %triggerun exif -- %{name}-exif < 4:5.0.4-9.1
2434 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*exif\.so/d' %{_sysconfdir}/php.ini
2435
2436 %triggerun fdf -- %{name}-fdf < 4:5.0.4-9.1
2437 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*fdf\.so/d' %{_sysconfdir}/php.ini
2438
2439 %triggerun ftp -- %{name}-ftp < 4:5.0.4-9.1
2440 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ftp\.so/d' %{_sysconfdir}/php.ini
2441
2442 %triggerun gd -- %{name}-gd < 4:5.0.4-9.1
2443 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gd\.so/d' %{_sysconfdir}/php.ini
2444
2445 %triggerun gettext -- %{name}-gettext < 4:5.0.4-9.1
2446 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gettext\.so/d' %{_sysconfdir}/php.ini
2447
2448 %triggerun gmp -- %{name}-gmp < 4:5.0.4-9.1
2449 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gmp\.so/d' %{_sysconfdir}/php.ini
2450
2451 %triggerun iconv -- %{name}-iconv < 4:5.0.4-9.1
2452 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*iconv\.so/d' %{_sysconfdir}/php.ini
2453
2454 %triggerun imap -- %{name}-imap < 4:5.0.4-9.1
2455 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*imap\.so/d' %{_sysconfdir}/php.ini
2456
2457 %triggerun interbase -- %{name}-interbase < 4:5.0.4-9.1
2458 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*interbase\.so/d' %{_sysconfdir}/php.ini
2459
2460 %triggerun ldap -- %{name}-ldap < 4:5.0.4-9.1
2461 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ldap\.so/d' %{_sysconfdir}/php.ini
2462
2463 %triggerun mbstring -- %{name}-mbstring < 4:5.0.4-9.1
2464 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mbstring\.so/d' %{_sysconfdir}/php.ini
2465
2466 %triggerun mcrypt -- %{name}-mcrypt < 4:5.0.4-9.1
2467 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mcrypt\.so/d' %{_sysconfdir}/php.ini
2468
2469 %triggerun mssql -- %{name}-mssql < 4:5.0.4-9.1
2470 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mssql\.so/d' %{_sysconfdir}/php.ini
2471
2472 %triggerun mysql -- %{name}-mysql < 4:5.0.4-9.1
2473 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysql\.so/d' %{_sysconfdir}/php.ini
2474
2475 %triggerun mysqli -- %{name}-mysqli < 4:5.0.4-9.1
2476 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysqli\.so/d' %{_sysconfdir}/php.ini
2477
2478 %triggerun oci8 -- %{name}-oci8 < 4:5.0.4-9.1
2479 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*oci8\.so/d' %{_sysconfdir}/php.ini
2480
2481 %triggerun odbc -- %{name}-odbc < 4:5.0.4-9.1
2482 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*odbc\.so/d' %{_sysconfdir}/php.ini
2483
2484 %triggerun openssl -- %{name}-openssl < 4:5.0.4-9.1
2485 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*openssl\.so/d' %{_sysconfdir}/php.ini
2486
2487 %triggerun pcntl -- %{name}-pcntl < 4:5.1.2-9.5
2488 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2489         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cgi.ini
2490 fi
2491 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2492         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cli.ini
2493 fi
2494
2495 %triggerun pcre -- %{name}-pcre < 4:5.0.4-9.1
2496 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcre\.so/d' %{_sysconfdir}/php.ini
2497
2498 %triggerun pgsql -- %{name}-pgsql < 4:5.0.4-9.1
2499 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pgsql\.so/d' %{_sysconfdir}/php.ini
2500
2501 %triggerun posix -- %{name}-posix < 4:5.0.4-9.1
2502 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*posix\.so/d' %{_sysconfdir}/php.ini
2503
2504 %triggerun pspell -- %{name}-pspell < 4:5.0.4-9.1
2505 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pspell\.so/d' %{_sysconfdir}/php.ini
2506
2507 %triggerun readline -- %{name}-readline < 4:5.1.2-9.5
2508 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2509         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cgi.ini
2510 fi
2511 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2512         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cli.ini
2513 fi
2514
2515 %triggerun recode -- %{name}-recode < 4:5.0.4-9.1
2516 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*recode\.so/d' %{_sysconfdir}/php.ini
2517
2518 %triggerun session -- %{name}-session < 4:5.0.4-9.1
2519 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*session\.so/d' %{_sysconfdir}/php.ini
2520
2521 %triggerun shmop -- %{name}-shmop < 4:5.0.4-9.1
2522 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*shmop\.so/d' %{_sysconfdir}/php.ini
2523
2524 %triggerun snmp -- %{name}-snmp < 4:5.0.4-9.1
2525 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*snmp\.so/d' %{_sysconfdir}/php.ini
2526
2527 %triggerun soap -- %{name}-soap < 4:5.0.4-9.1
2528 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*soap\.so/d' %{_sysconfdir}/php.ini
2529
2530 %triggerun sockets -- %{name}-sockets < 4:5.0.4-9.1
2531 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sockets\.so/d' %{_sysconfdir}/php.ini
2532
2533 %triggerun sqlite -- %{name}-sqlite < 4:5.0.4-9.1
2534 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sqlite\.so/d' %{_sysconfdir}/php.ini
2535
2536 %triggerun sybase-ct -- %{name}-sybase-ct < 4:5.0.4-9.1
2537 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sybase-ct\.so/d' %{_sysconfdir}/php.ini
2538
2539 %triggerun sysvmsg -- %{name}-sysvmsg < 4:5.0.4-9.1
2540 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvmsg\.so/d' %{_sysconfdir}/php.ini
2541
2542 %triggerun sysvsem -- %{name}-sysvsem < 4:5.0.4-9.1
2543 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvsem\.so/d' %{_sysconfdir}/php.ini
2544
2545 %triggerun sysvshm -- %{name}-sysvshm < 4:5.0.4-9.1
2546 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvshm\.so/d' %{_sysconfdir}/php.ini
2547
2548 %triggerun tidy -- %{name}-tidy < 4:5.0.4-9.1
2549 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*tidy\.so/d' %{_sysconfdir}/php.ini
2550
2551 %triggerun wddx -- %{name}-wddx < 4:5.0.4-9.1
2552 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*wddx\.so/d' %{_sysconfdir}/php.ini
2553
2554 %triggerun xml -- %{name}-xml < 4:5.0.4-9.1
2555 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xml\.so/d' %{_sysconfdir}/php.ini
2556
2557 %triggerun xmlrpc -- %{name}-xmlrpc < 4:5.0.4-9.1
2558 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xmlrpc\.so/d' %{_sysconfdir}/php.ini
2559
2560 %triggerun xsl -- %{name}-xsl < 4:5.0.4-9.1
2561 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xsl\.so/d' %{_sysconfdir}/php.ini
2562
2563 %triggerun zlib -- %{name}-zlib < 4:5.0.4-9.1
2564 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*zlib\.so/d' %{_sysconfdir}/php.ini
2565
2566 %if %{with apache1}
2567 %files -n apache1-mod_php
2568 %defattr(644,root,root,755)
2569 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/apache/conf.d/*_mod_php.conf
2570 %dir %{_sysconfdir}/apache.d
2571 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache.ini
2572 %attr(755,root,root) %{_libdir}/apache1/libphp5.so
2573 %endif
2574
2575 %if %{with apache2}
2576 %files -n apache-mod_php
2577 %defattr(644,root,root,755)
2578 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/httpd/conf.d/*_mod_php.conf
2579 %dir %{_sysconfdir}/apache2handler.d
2580 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache2handler.ini
2581 %attr(755,root,root) %{_libdir}/apache/libphp5.so
2582 %endif
2583
2584 %if %{with litespeed}
2585 %files litespeed
2586 %defattr(644,root,root,755)
2587 %attr(755,root,root) %{_sbindir}/php.litespeed
2588 %endif
2589
2590 %files cgi
2591 %defattr(644,root,root,755)
2592 %dir %{_sysconfdir}/cgi-fcgi.d
2593 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cgi-fcgi.ini
2594 %attr(755,root,root) %{_bindir}/php.cgi
2595 %attr(755,root,root) %{_bindir}/php.fcgi
2596
2597 %files cli
2598 %defattr(644,root,root,755)
2599 %dir %{_sysconfdir}/cli.d
2600 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cli.ini
2601 %attr(755,root,root) %{_bindir}/php.cli
2602 %{_mandir}/man1/php.1*
2603 %{_mandir}/man1/php.cli.1*
2604
2605 %files program
2606 %defattr(644,root,root,755)
2607 %attr(755,root,root) %{_bindir}/php
2608
2609 %if %{with fpm}
2610 %files fpm
2611 %defattr(644,root,root,755)
2612 %doc %lang(ru) sapi/fpm/readme-ru.markdown
2613 %doc sapi/fpm/nginx-site-conf.sample
2614 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/fpm.conf
2615 %attr(755,root,root) %{_bindir}/php.fpm
2616 %{_mandir}/man1/php-fpm.1*
2617 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/php-fpm
2618 %attr(754,root,root) /etc/rc.d/init.d/php-fpm
2619 %endif
2620
2621 %files common
2622 %defattr(644,root,root,755)
2623 %doc php.ini-*
2624 %doc CREDITS Zend/ZEND_CHANGES
2625 %doc LICENSE Zend/LICENSE.Zend EXTENSIONS NEWS TODO*
2626 %doc README.PHP4-TO-PHP5-THIN-CHANGES
2627 %doc README.namespaces
2628
2629 %dir %{_sysconfdir}
2630 %dir %{_sysconfdir}/conf.d
2631 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.ini
2632 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/browscap.ini
2633 %attr(755,root,root) %{_libdir}/libphp_common-*.so
2634 %dir %{php_extensiondir}
2635
2636 %doc ext/session/mod_files.sh
2637
2638 %files devel
2639 %defattr(644,root,root,755)
2640 %doc README.UNIX-BUILD-SYSTEM
2641 %doc README.EXT_SKEL README.SELF-CONTAINED-EXTENSIONS
2642 %doc CODING_STANDARDS README.EXTENSIONS README.PARAMETER_PARSING_API README.STREAMS
2643 %doc README.SUBMITTING_PATCH README.TESTING README.TESTING2
2644 %attr(755,root,root) %{_bindir}/phpize
2645 %attr(755,root,root) %{_bindir}/php-config
2646 %attr(755,root,root) %{_libdir}/libphp_common.so
2647 %{_libdir}/libphp_common.la
2648 %{_includedir}/php
2649 %{_libdir}/php/build
2650 %{_mandir}/man1/php-config.1*
2651 %{_mandir}/man1/phpize.1*
2652
2653 %files bcmath
2654 %defattr(644,root,root,755)
2655 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bcmath.ini
2656 %attr(755,root,root) %{php_extensiondir}/bcmath.so
2657
2658 %files bzip2
2659 %defattr(644,root,root,755)
2660 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bz2.ini
2661 %attr(755,root,root) %{php_extensiondir}/bz2.so
2662
2663 %files calendar
2664 %defattr(644,root,root,755)
2665 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/calendar.ini
2666 %attr(755,root,root) %{php_extensiondir}/calendar.so
2667
2668 %files ctype
2669 %defattr(644,root,root,755)
2670 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ctype.ini
2671 %attr(755,root,root) %{php_extensiondir}/ctype.so
2672
2673 %if %{with curl}
2674 %files curl
2675 %defattr(644,root,root,755)
2676 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/curl.ini
2677 %attr(755,root,root) %{php_extensiondir}/curl.so
2678 %endif
2679
2680 %files dba
2681 %defattr(644,root,root,755)
2682 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dba.ini
2683 %attr(755,root,root) %{php_extensiondir}/dba.so
2684
2685 %files dom
2686 %defattr(644,root,root,755)
2687 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dom.ini
2688 %attr(755,root,root) %{php_extensiondir}/dom.so
2689
2690 %if %{with fdf}
2691 %files fdf
2692 %defattr(644,root,root,755)
2693 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fdf.ini
2694 %attr(755,root,root) %{php_extensiondir}/fdf.so
2695 %endif
2696
2697 %files fileinfo
2698 %defattr(644,root,root,755)
2699 %doc README.input_filter
2700 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fileinfo.ini
2701 %attr(755,root,root) %{php_extensiondir}/fileinfo.so
2702
2703 %if %{with filter}
2704 %files filter
2705 %defattr(644,root,root,755)
2706 %doc README.input_filter
2707 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/filter.ini
2708 %attr(755,root,root) %{php_extensiondir}/filter.so
2709 %endif
2710
2711 %files exif
2712 %defattr(644,root,root,755)
2713 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/exif.ini
2714 %attr(755,root,root) %{php_extensiondir}/exif.so
2715
2716 %files ftp
2717 %defattr(644,root,root,755)
2718 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ftp.ini
2719 %attr(755,root,root) %{php_extensiondir}/ftp.so
2720
2721 %files gd
2722 %defattr(644,root,root,755)
2723 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gd.ini
2724 %attr(755,root,root) %{php_extensiondir}/gd.so
2725
2726 %files gettext
2727 %defattr(644,root,root,755)
2728 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gettext.ini
2729 %attr(755,root,root) %{php_extensiondir}/gettext.so
2730
2731 %files gmp
2732 %defattr(644,root,root,755)
2733 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gmp.ini
2734 %attr(755,root,root) %{php_extensiondir}/gmp.so
2735
2736 %files hash
2737 %defattr(644,root,root,755)
2738 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/hash.ini
2739 %attr(755,root,root) %{php_extensiondir}/hash.so
2740
2741 %files iconv
2742 %defattr(644,root,root,755)
2743 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/iconv.ini
2744 %attr(755,root,root) %{php_extensiondir}/iconv.so
2745
2746 %if %{with imap}
2747 %files imap
2748 %defattr(644,root,root,755)
2749 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/imap.ini
2750 %attr(755,root,root) %{php_extensiondir}/imap.so
2751 %endif
2752
2753 %if %{with interbase}
2754 %files interbase
2755 %defattr(644,root,root,755)
2756 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/interbase.ini
2757 %attr(755,root,root) %{php_extensiondir}/interbase.so
2758 %endif
2759
2760 %files intl
2761 %defattr(644,root,root,755)
2762 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/intl.ini
2763 %attr(755,root,root) %{php_extensiondir}/intl.so
2764
2765 %files json
2766 %defattr(644,root,root,755)
2767 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/json.ini
2768 %attr(755,root,root) %{php_extensiondir}/json.so
2769
2770 %if %{with ldap}
2771 %files ldap
2772 %defattr(644,root,root,755)
2773 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ldap.ini
2774 %attr(755,root,root) %{php_extensiondir}/ldap.so
2775 %endif
2776
2777 %files mbstring
2778 %defattr(644,root,root,755)
2779 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mbstring.ini
2780 %attr(755,root,root) %{php_extensiondir}/mbstring.so
2781
2782 %files mcrypt
2783 %defattr(644,root,root,755)
2784 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mcrypt.ini
2785 %attr(755,root,root) %{php_extensiondir}/mcrypt.so
2786
2787 %if %{with mssql}
2788 %files mssql
2789 %defattr(644,root,root,755)
2790 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mssql.ini
2791 %attr(755,root,root) %{php_extensiondir}/mssql.so
2792 %endif
2793
2794 %if %{with mysqlnd}
2795 %files mysqlnd
2796 %defattr(644,root,root,755)
2797 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/MySQLND.ini
2798 %attr(755,root,root) %{php_extensiondir}/mysqlnd.so
2799 %endif
2800
2801 %files mysql
2802 %defattr(644,root,root,755)
2803 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysql.ini
2804 %attr(755,root,root) %{php_extensiondir}/mysql.so
2805
2806 %if %{with mysqli}
2807 %files mysqli
2808 %defattr(644,root,root,755)
2809 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysqli.ini
2810 %attr(755,root,root) %{php_extensiondir}/mysqli.so
2811 %endif
2812
2813 %if %{with oci8}
2814 %files oci8
2815 %defattr(644,root,root,755)
2816 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/oci8.ini
2817 %attr(755,root,root) %{php_extensiondir}/oci8.so
2818 %endif
2819
2820 %if %{with odbc}
2821 %files odbc
2822 %defattr(644,root,root,755)
2823 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/odbc.ini
2824 %attr(755,root,root) %{php_extensiondir}/odbc.so
2825 %endif
2826
2827 %if %{with openssl}
2828 %files openssl
2829 %defattr(644,root,root,755)
2830 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/openssl.ini
2831 %attr(755,root,root) %{php_extensiondir}/openssl.so
2832 %endif
2833
2834 %files pcntl
2835 %defattr(644,root,root,755)
2836 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pcntl.ini
2837 %attr(755,root,root) %{php_extensiondir}/pcntl.so
2838
2839 %if %{with pcre}
2840 %files pcre
2841 %defattr(644,root,root,755)
2842 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/PCRE.ini
2843 %attr(755,root,root) %{php_extensiondir}/pcre.so
2844 %endif
2845
2846 %files pdo
2847 %defattr(644,root,root,755)
2848 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo.ini
2849 %attr(755,root,root) %{php_extensiondir}/pdo.so
2850
2851 %if %{with mssql} || %{with sybase_ct}
2852 %files pdo-dblib
2853 %defattr(644,root,root,755)
2854 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_dblib.ini
2855 %attr(755,root,root) %{php_extensiondir}/pdo_dblib.so
2856 %endif
2857
2858 %if %{with interbase} && !%{with interbase_inst}
2859 %files pdo-firebird
2860 %defattr(644,root,root,755)
2861 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_firebird.ini
2862 %attr(755,root,root) %{php_extensiondir}/pdo_firebird.so
2863 %endif
2864
2865 %files pdo-mysql
2866 %defattr(644,root,root,755)
2867 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_mysql.ini
2868 %attr(755,root,root) %{php_extensiondir}/pdo_mysql.so
2869
2870 %if %{with oci8}
2871 %files pdo-oci
2872 %defattr(644,root,root,755)
2873 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_oci.ini
2874 %attr(755,root,root) %{php_extensiondir}/pdo_oci.so
2875 %endif
2876
2877 %if %{with odbc}
2878 %files pdo-odbc
2879 %defattr(644,root,root,755)
2880 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_odbc.ini
2881 %attr(755,root,root) %{php_extensiondir}/pdo_odbc.so
2882 %endif
2883
2884 %if %{with pgsql}
2885 %files pdo-pgsql
2886 %defattr(644,root,root,755)
2887 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_pgsql.ini
2888 %attr(755,root,root) %{php_extensiondir}/pdo_pgsql.so
2889 %endif
2890
2891 %if %{with sqlite}
2892 %files pdo-sqlite
2893 %defattr(644,root,root,755)
2894 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_sqlite.ini
2895 %attr(755,root,root) %{php_extensiondir}/pdo_sqlite.so
2896 %endif
2897
2898 %if %{with pgsql}
2899 %files pgsql
2900 %defattr(644,root,root,755)
2901 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pgsql.ini
2902 %attr(755,root,root) %{php_extensiondir}/pgsql.so
2903 %endif
2904
2905 %if %{with phar}
2906 %files phar
2907 %defattr(644,root,root,755)
2908 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/phar.ini
2909 %attr(755,root,root) %{php_extensiondir}/phar.so
2910 %endif
2911
2912 %files posix
2913 %defattr(644,root,root,755)
2914 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/posix.ini
2915 %attr(755,root,root) %{php_extensiondir}/posix.so
2916
2917 %if %{with pspell}
2918 %files pspell
2919 %defattr(644,root,root,755)
2920 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pspell.ini
2921 %attr(755,root,root) %{php_extensiondir}/pspell.so
2922 %endif
2923
2924 %files readline
2925 %defattr(644,root,root,755)
2926 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/readline.ini
2927 %attr(755,root,root) %{php_extensiondir}/readline.so
2928
2929 %if %{with recode}
2930 %files recode
2931 %defattr(644,root,root,755)
2932 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/recode.ini
2933 %attr(755,root,root) %{php_extensiondir}/recode.so
2934 %endif
2935
2936 %files simplexml
2937 %defattr(644,root,root,755)
2938 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/simplexml.ini
2939 %attr(755,root,root) %{php_extensiondir}/simplexml.so
2940
2941 %files session
2942 %defattr(644,root,root,755)
2943 %doc ext/session/mod_files.sh
2944 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/session.ini
2945 %attr(755,root,root) %{php_extensiondir}/session.so
2946
2947 %files shmop
2948 %defattr(644,root,root,755)
2949 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/shmop.ini
2950 %attr(755,root,root) %{php_extensiondir}/shmop.so
2951
2952 %if %{with snmp}
2953 %files snmp
2954 %defattr(644,root,root,755)
2955 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/snmp.ini
2956 %attr(755,root,root) %{php_extensiondir}/snmp.so
2957 %endif
2958
2959 %files soap
2960 %defattr(644,root,root,755)
2961 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/soap.ini
2962 %attr(755,root,root) %{php_extensiondir}/soap.so
2963
2964 %files sockets
2965 %defattr(644,root,root,755)
2966 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sockets.ini
2967 %attr(755,root,root) %{php_extensiondir}/sockets.so
2968
2969 %files spl
2970 %defattr(644,root,root,755)
2971 %doc ext/spl/{CREDITS,README,TODO}
2972 %doc ext/spl/examples
2973 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/SPL.ini
2974 %attr(755,root,root) %{php_extensiondir}/spl.so
2975
2976 %if %{with sqlite}
2977 %files sqlite
2978 %defattr(644,root,root,755)
2979 %doc ext/sqlite/{README,TODO,CREDITS}
2980 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite.ini
2981 %attr(755,root,root) %{php_extensiondir}/sqlite.so
2982 %endif
2983
2984 %if %{with sqlite3}
2985 %files sqlite3
2986 %defattr(644,root,root,755)
2987 %doc ext/sqlite3/CREDITS
2988 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite3.ini
2989 %attr(755,root,root) %{php_extensiondir}/sqlite3.so
2990 %endif
2991
2992 %if %{with sybase_ct}
2993 %files sybase-ct
2994 %defattr(644,root,root,755)
2995 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sybase_ct.ini
2996 %attr(755,root,root) %{php_extensiondir}/sybase_ct.so
2997 %endif
2998
2999 %files sysvmsg
3000 %defattr(644,root,root,755)
3001 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvmsg.ini
3002 %attr(755,root,root) %{php_extensiondir}/sysvmsg.so
3003
3004 %files sysvsem
3005 %defattr(644,root,root,755)
3006 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvsem.ini
3007 %attr(755,root,root) %{php_extensiondir}/sysvsem.so
3008
3009 %files sysvshm
3010 %defattr(644,root,root,755)
3011 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvshm.ini
3012 %attr(755,root,root) %{php_extensiondir}/sysvshm.so
3013
3014 %files tests
3015 %defattr(644,root,root,755)
3016 %dir %{php_data_dir}/tests/php
3017 %{php_data_dir}/tests/php/basic
3018 %{php_data_dir}/tests/php/classes
3019 %{php_data_dir}/tests/php/func
3020 %{php_data_dir}/tests/php/lang
3021 %{php_data_dir}/tests/php/output
3022 %{php_data_dir}/tests/php/run-test
3023 %{php_data_dir}/tests/php/security
3024 %{php_data_dir}/tests/php/strings
3025 %{php_data_dir}/tests/php/quicktester.inc
3026 %attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php
3027
3028 %if %{with tidy}
3029 %files tidy
3030 %defattr(644,root,root,755)
3031 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tidy.ini
3032 %attr(755,root,root) %{php_extensiondir}/tidy.so
3033 %endif
3034
3035 %files tokenizer
3036 %defattr(644,root,root,755)
3037 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tokenizer.ini
3038 %attr(755,root,root) %{php_extensiondir}/tokenizer.so
3039
3040 %if %{with wddx}
3041 %files wddx
3042 %defattr(644,root,root,755)
3043 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*wddx.ini
3044 %attr(755,root,root) %{php_extensiondir}/wddx.so
3045 %endif
3046
3047 %files xml
3048 %defattr(644,root,root,755)
3049 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xml.ini
3050 %attr(755,root,root) %{php_extensiondir}/xml.so
3051
3052 %files xmlreader
3053 %defattr(644,root,root,755)
3054 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlreader.ini
3055 %attr(755,root,root) %{php_extensiondir}/xmlreader.so
3056
3057 %if %{with xmlrpc}
3058 %files xmlrpc
3059 %defattr(644,root,root,755)
3060 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlrpc.ini
3061 %attr(755,root,root) %{php_extensiondir}/xmlrpc.so
3062 %endif
3063
3064 %files xmlwriter
3065 %defattr(644,root,root,755)
3066 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlwriter.ini
3067 %attr(755,root,root) %{php_extensiondir}/xmlwriter.so
3068
3069 %files xsl
3070 %defattr(644,root,root,755)
3071 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xsl.ini
3072 %attr(755,root,root) %{php_extensiondir}/xsl.so
3073
3074 %files zip
3075 %defattr(644,root,root,755)
3076 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zip.ini
3077 %attr(755,root,root) %{php_extensiondir}/zip.so
3078
3079 %files zlib
3080 %defattr(644,root,root,755)
3081 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zlib.ini
3082 %attr(755,root,root) %{php_extensiondir}/zlib.so
This page took 2.359989 seconds and 4 git commands to generate.