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