]> git.pld-linux.org Git - packages/php.git/blob - php.spec
- imap ext R: pcre
[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 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
667 Provides:       php(fileinfo)
668 Obsoletes:      php-pecl-fileinfo
669
670 %description fileinfo
671 This extension allows retrieval of information regarding vast majority
672 of file. This information may include dimensions, quality, length
673 etc...
674
675 Additionally it can also be used to retrieve the MIME type for a
676 particular file and for text files proper language encoding.
677
678 %package filter
679 Summary:        Extension for safely dealing with input parameters
680 Summary(pl.UTF-8):      Rozszerzenie do bezpiecznej obsługi danych wejściowych
681 Group:          Libraries
682 URL:            http://www.php.net/manual/en/book.filter.php
683 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
684 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
685 Provides:       php(filter)
686 Obsoletes:      php-pecl-filter
687
688 %description filter
689 We all know that you should always check input variables, but PHP does
690 not offer really good functionality for doing this in a safe way. The
691 Input Filter extension is meant to address this issue by implementing
692 a set of filters and mechanisms that users can use to safely access
693 their input data.
694
695 %description filter -l pl.UTF-8
696 Wiadomo, że trzeba zawsze sprawdzać zmienne wejściowe, ale PHP nie
697 oferuje naprawdę dobrej funkcjonalności do robienia tego w sposób
698 bezpieczny. Rozszerzenie Input Filter ma rozwiązać ten problem poprzez
699 zaimplementowanie zestawu filtrów i mechanizmów, których użytkownicy
700 mogą bezpiecznie używać do dostępu do danych.
701
702 %package ftp
703 Summary:        FTP extension module for PHP
704 Summary(pl.UTF-8):      Moduł FTP dla PHP
705 Group:          Libraries
706 URL:            http://www.php.net/manual/en/book.ftp.php
707 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
708 Provides:       php(ftp)
709
710 %description ftp
711 This is a dynamic shared object (DSO) for PHP that will add FTP
712 support.
713
714 %description ftp -l pl.UTF-8
715 Moduł PHP dodający obsługę protokołu FTP.
716
717 %package gd
718 Summary:        GD extension module for PHP
719 Summary(pl.UTF-8):      Moduł GD dla PHP
720 Group:          Libraries
721 URL:            http://www.php.net/manual/en/book.image.php
722 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
723 %if %{with system_gd}
724 Requires:       gd >= 2.0.28-4
725 Requires:       gd(gif)
726 Requires:       gd(imagerotate) = 5.2.0
727 %endif
728 Provides:       php(gd)
729
730 %description gd
731 This is a dynamic shared object (DSO) for PHP that will add GD
732 support, allowing you to create and manipulate images with PHP.
733
734 %description gd -l pl.UTF-8
735 Moduł PHP umożliwiający korzystanie z biblioteki GD, pozwalającej na
736 tworzenie i obróbkę obrazków.
737
738 %package gettext
739 Summary:        gettext extension module for PHP
740 Summary(pl.UTF-8):      Moduł gettext dla PHP
741 Group:          Libraries
742 URL:            http://www.php.net/manual/en/book.gettext.php
743 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
744 Provides:       php(gettext)
745
746 %description gettext
747 This is a dynamic shared object (DSO) for PHP that will add gettext
748 support.
749
750 %description gettext -l pl.UTF-8
751 Moduł PHP dodający obsługę lokalizacji przez gettext.
752
753 %package gmp
754 Summary:        gmp extension module for PHP
755 Summary(pl.UTF-8):      Moduł gmp dla PHP
756 Group:          Libraries
757 URL:            http://www.php.net/manual/en/book.gmp.php
758 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
759 Provides:       php(gmp)
760
761 %description gmp
762 This is a dynamic shared object (DSO) for PHP that will add arbitrary
763 length number support with GNU MP library.
764
765 %description gmp -l pl.UTF-8
766 Moduł PHP umożliwiający korzystanie z biblioteki gmp do obliczeń na
767 liczbach o dowolnej długości.
768
769 %package hash
770 Summary:        HASH Message Digest Framework
771 Summary(pl.UTF-8):      Szkielet do obliczania skrótów wiadomości
772 Group:          Libraries
773 URL:            http://www.php.net/manual/en/book.gmp.php
774 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
775 Provides:       php(hash)
776 Provides:       php(mhash)
777 Obsoletes:      php-mhash
778 Obsoletes:      php-pecl-hash
779
780 %description hash
781 Native implementations of common message digest algorithms using a
782 generic factory method.
783
784 %description hash -l pl.UTF-8
785 Natywne implementacje popularnych algorytmów obliczania skrótów
786 wiadomości przy użyciu wspólnego interfejsu.
787
788 %package iconv
789 Summary:        iconv extension module for PHP
790 Summary(pl.UTF-8):      Moduł iconv dla PHP
791 Group:          Libraries
792 URL:            http://www.php.net/manual/en/book.iconv.php
793 Requires:       %{_libdir}/gconv
794 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
795 Requires:       iconv
796 Provides:       php(iconv)
797
798 %description iconv
799 This is a dynamic shared object (DSO) for PHP that will add iconv
800 support.
801
802 %description iconv -l pl.UTF-8
803 Moduł PHP dodający obsługę iconv.
804
805 %package imap
806 Summary:        IMAP extension module for PHP
807 Summary(pl.UTF-8):      Moduł IMAP dla PHP
808 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam IMAP
809 Group:          Libraries
810 URL:            http://www.php.net/manual/en/book.imap.php
811 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
812 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
813 Provides:       php(imap)
814
815 %description imap
816 This is a dynamic shared object (DSO) for PHP that will add IMAP
817 support.
818
819 %description imap -l pl.UTF-8
820 Moduł PHP dodający obsługę skrzynek IMAP.
821
822 %description imap -l pt_BR.UTF-8
823 Um módulo para aplicações PHP que usam IMAP.
824
825 %package interbase
826 Summary:        InterBase/Firebird database module for PHP
827 Summary(pl.UTF-8):      Moduł bazy danych InterBase/Firebird dla PHP
828 Group:          Libraries
829 URL:            http://www.php.net/manual/en/book.ibase.php
830 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
831 Provides:       php(interbase)
832 %{?with_interbase_inst:Autoreq: false}
833
834 %description interbase
835 This is a dynamic shared object (DSO) for PHP that will add InterBase
836 and Firebird database support.
837
838 %description interbase -l pl.UTF-8
839 Moduł PHP umożliwiający dostęp do baz danych InterBase i Firebird.
840
841 %package intl
842 Summary:        Internationalization extension (ICU wrapper)
843 Summary(pl.UTF-8):      Rozszerzenie do internacjonalizacji (wrapper ICU)
844 Group:          Libraries
845 URL:            http://www.php.net/intl
846 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
847 Provides:       php(intl)
848
849 %description intl
850 Internationalization extension (further is referred as Intl) is a
851 wrapper for ICU library, enabling PHP programmers to perform
852 UCA-conformant collation and date/time/number/currency formatting in
853 their scripts.
854
855 %description intl -l pl.UTF-8
856 Rozszerzenie do internacjonalizacji (dalej nazywane Intl) jest
857 wrapperem biblioteki ICU, pozwalającym programistom PHP na wykonywanie
858 w skryptach porównań zdgodnych z UCA oraz formatowań daty/czasu/walut.
859
860 %package json
861 Summary:        PHP C extension for JSON serialization
862 Summary(pl.UTF-8):      Rozszerzenie C PHP dla serializacji JSON
863 Group:          Libraries
864 URL:            http://www.php.net/manual/en/book.json.php
865 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
866 Provides:       php(json)
867 Obsoletes:      php-pecl-json
868
869 %description json
870 php-json is an extremely fast PHP C extension for JSON (JavaScript
871 Object Notation) serialisation.
872
873 %description json -l pl.UTF-8
874 php-json to bardzo szybkie rozszerzenie C PHP dla serializacji JSON
875 (JavaScript Object Notation).
876
877 %package ldap
878 Summary:        LDAP extension module for PHP
879 Summary(pl.UTF-8):      Moduł LDAP dla PHP
880 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam LDAP
881 Group:          Libraries
882 URL:            http://www.php.net/manual/en/book.ldap.php
883 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
884 Provides:       php(ldap)
885
886 %description ldap
887 This is a dynamic shared object (DSO) for PHP that will add LDAP
888 support.
889
890 %description ldap -l pl.UTF-8
891 Moduł PHP dodający obsługę LDAP.
892
893 %description ldap -l pt_BR.UTF-8
894 Um módulo para aplicações PHP que usam LDAP.
895
896 %package mbstring
897 Summary:        mbstring extension module for PHP
898 Summary(pl.UTF-8):      Moduł mbstring dla PHP
899 Group:          Libraries
900 URL:            http://www.php.net/manual/en/book.mbstring.php
901 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
902 Provides:       php(mbstring)
903
904 %description mbstring
905 This is a dynamic shared object (DSO) for PHP that will add multibyte
906 string support.
907
908 %description mbstring -l pl.UTF-8
909 Moduł PHP dodający obsługę ciągów znaków wielobajtowych.
910
911 %package mcrypt
912 Summary:        mcrypt extension module for PHP
913 Summary(pl.UTF-8):      Moduł mcrypt dla PHP
914 Group:          Libraries
915 URL:            http://www.php.net/manual/en/book.mcrypt.php
916 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
917 Provides:       php(mcrypt)
918
919 %description mcrypt
920 This is a dynamic shared object (DSO) for PHP that will add mcrypt
921 support.
922
923 %description mcrypt -l pl.UTF-8
924 Moduł PHP dodający możliwość szyfrowania poprzez bibliotekę mcrypt.
925
926 %package mssql
927 Summary:        MS SQL extension module for PHP
928 Summary(pl.UTF-8):      Moduł MS SQL dla PHP
929 Group:          Libraries
930 URL:            http://www.php.net/manual/en/book.mssql.php
931 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
932 Provides:       php(mssql)
933
934 %description mssql
935 This is a dynamic shared object (DSO) for PHP that will add MS SQL
936 databases support through FreeTDS library.
937
938 %description mssql -l pl.UTF-8
939 Moduł PHP dodający obsługę baz danych MS SQL poprzez bibliotekę
940 FreeTDS.
941
942 %package mysql
943 Summary:        MySQL database module for PHP
944 Summary(pl.UTF-8):      Moduł bazy danych MySQL dla PHP
945 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam bancos de dados MySQL
946 Group:          Libraries
947 URL:            http://www.php.net/manual/en/book.mysql.php
948 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
949 Provides:       php(mysql)
950
951 %description mysql
952 This is a dynamic shared object (DSO) for PHP that will add MySQL
953 database support.
954
955 %description mysql -l pl.UTF-8
956 Moduł PHP umożliwiający dostęp do bazy danych MySQL.
957
958 %description mysql -l pt_BR.UTF-8
959 Um módulo para aplicações PHP que usam bancos de dados MySQL.
960
961 %package mysqli
962 Summary:        MySQLi module for PHP
963 Summary(pl.UTF-8):      Moduł MySQLi dla PHP
964 Group:          Libraries
965 URL:            http://www.php.net/manual/en/book.mysqli.php
966 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
967 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
968 Provides:       php(mysqli)
969
970 %description mysqli
971 This is a dynamic shared object (DSO) for PHP that will add MySQLi
972 (Improved MySQL) support. The difference between it and mysql module
973 is that it provides access to functionality of MySQL 4.1 and above.
974
975 %description mysqli -l pl.UTF-8
976 Moduł PHP umożliwiający udoskonalony dostęp do bazy danych MySQL.
977 Różnicą między nim a modułem mysql jest dostęp do funkcjonalności
978 MySQL w wersji 4.1 i nowszych.
979
980 %package oci8
981 Summary:        Oracle 8+ database module for PHP
982 Summary(pl.UTF-8):      Moduł bazy danych Oracle 8+ dla PHP
983 Group:          Libraries
984 URL:            http://www.php.net/manual/en/book.oci8.php
985 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
986 Provides:       php(oci8)
987 AutoReq:        false
988
989 %description oci8
990 This is a dynamic shared object (DSO) for PHP that will add Oracle 7,
991 8, 9 and 10 database support through Oracle8 Call-Interface (OCI8).
992
993 %description oci8 -l pl.UTF-8
994 Moduł PHP umożliwiający dostęp do bazy danych Oracle 7, 8, 9 i 10
995 poprzez interfejs Oracle8 Call-Interface (OCI8).
996
997 %package odbc
998 Summary:        ODBC extension module for PHP
999 Summary(pl.UTF-8):      Moduł ODBC dla PHP
1000 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam bases de dados ODBC
1001 Group:          Libraries
1002 URL:            http://www.php.net/manual/en/book.uodbc.php
1003 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1004 Requires:       unixODBC >= 2.1.1-3
1005 Provides:       php(odbc)
1006
1007 %description odbc
1008 This is a dynamic shared object (DSO) for PHP that will add ODBC
1009 support.
1010
1011 %description odbc -l pl.UTF-8
1012 Moduł PHP ze wsparciem dla ODBC.
1013
1014 %description odbc -l pt_BR.UTF-8
1015 Um módulo para aplicações PHP que usam ODBC.
1016
1017 %package openssl
1018 Summary:        OpenSSL extension module for PHP
1019 Summary(pl.UTF-8):      Moduł OpenSSL dla PHP
1020 Group:          Libraries
1021 URL:            http://www.php.net/manual/en/book.openssl.php
1022 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1023 Provides:       php(openssl)
1024
1025 %description openssl
1026 This is a dynamic shared object (DSO) for PHP that will add OpenSSL
1027 support.
1028
1029 %description openssl -l pl.UTF-8
1030 Moduł PHP umożliwiający korzystanie z biblioteki OpenSSL.
1031
1032 %package pcntl
1033 Summary:        Process Control extension module for PHP
1034 Summary(pl.UTF-8):      Moduł Process Control dla PHP
1035 Group:          Libraries
1036 URL:            http://www.php.net/manual/en/book.pcntl.php
1037 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1038 Provides:       php(pcntl)
1039
1040 %description pcntl
1041 This is a dynamic shared object (DSO) for PHP that will add process
1042 spawning and control support. It supports functions like fork(),
1043 waitpid(), signal() etc.
1044
1045 %description pcntl -l pl.UTF-8
1046 Moduł PHP umożliwiający tworzenie nowych procesów i kontrolę nad nimi.
1047 Obsługuje funkcje takie jak fork(), waitpid(), signal() i podobne.
1048
1049 %package pcre
1050 Summary:        PCRE extension module for PHP
1051 Summary(pl.UTF-8):      Moduł PCRE dla PHP
1052 Group:          Libraries
1053 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1054 Provides:       php(pcre)
1055
1056 %description pcre
1057 This is a dynamic shared object (DSO) for PHP that will add Perl
1058 Compatible Regular Expression support.
1059
1060 %description pcre -l pl.UTF-8
1061 Moduł PHP umożliwiający korzystanie z perlowych wyrażeń regularnych
1062 (Perl Compatible Regular Expressions)
1063
1064 %package pdo
1065 Summary:        PHP Data Objects (PDO)
1066 Summary(pl.UTF-8):      Obsługa PHP Data Objects (PDO)
1067 Group:          Libraries
1068 URL:            http://www.php.net/manual/en/book.pdo.php
1069 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1070 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1071 Provides:       php(pdo)
1072 Obsoletes:      php-pecl-PDO
1073
1074 %description pdo
1075 This is a dynamic shared object (DSO) for PHP that will add PDO
1076 support.
1077
1078 %description pdo -l pl.UTF-8
1079 Moduł PHP dodający obsługę PDO (PHP Data Objects).
1080
1081 %package pdo-dblib
1082 Summary:        PHP Data Objects (PDO) FreeTDS support
1083 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą FreeTDS
1084 Group:          Libraries
1085 URL:            http://www.php.net/manual/en/ref.pdo-dblib.php
1086 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1087 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1088 Provides:       php(dblib)
1089
1090 %description pdo-dblib
1091 This is a dynamic shared object (DSO) for PHP that will add PDO
1092 FreeTDS support.
1093
1094 %description pdo-dblib -l pl.UTF-8
1095 Moduł dla PHP dodający obsługę baz danych FreeTDS za pośrednictwem
1096 interfejsu PDO.
1097
1098 %package pdo-firebird
1099 Summary:        PHP Data Objects (PDO) Firebird support
1100 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Firebirda
1101 Group:          Libraries
1102 URL:            http://www.php.net/manual/en/ref.pdo-firebird.php
1103 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1104 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1105 Provides:       php(pdo-firebird)
1106 Obsoletes:      php-pecl-PDO_FIREBIRD
1107
1108 %description pdo-firebird
1109 This is a dynamic shared object (DSO) for PHP that will add PDO
1110 Firebird support.
1111
1112 %description pdo-firebird -l pl.UTF-8
1113 Moduł dla PHP dodający obsługę baz danych Firebird za pośrednictwem
1114 interfejsu PDO.
1115
1116 %package pdo-mysql
1117 Summary:        PHP Data Objects (PDO) MySQL support
1118 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą MySQL-a
1119 Group:          Libraries
1120 URL:            http://www.php.net/manual/en/ref.pdo-mysql.php
1121 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1122 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1123 Provides:       php(pdo-mysql)
1124 Obsoletes:      php-pecl-PDO_MYSQL
1125
1126 %description pdo-mysql
1127 This is a dynamic shared object (DSO) for PHP that will add PDO MySQL
1128 support.
1129
1130 %description pdo-mysql -l pl.UTF-8
1131 Moduł dla PHP dodający obsługę baz danych MySQL za pośrednictwem
1132 interfejsu PDO.
1133
1134 %package pdo-oci
1135 Summary:        PHP Data Objects (PDO) Oracle support
1136 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Oracle'a
1137 Group:          Libraries
1138 URL:            http://www.php.net/manual/en/ref.pdo-oci.php
1139 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1140 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1141 Provides:       php(pdo-oci)
1142 Obsoletes:      php-pecl-PDO_OCI
1143
1144 %description pdo-oci
1145 This is a dynamic shared object (DSO) for PHP that will add PDO Oracle
1146 support.
1147
1148 %description pdo-oci -l pl.UTF-8
1149 Moduł dla PHP dodający obsługę baz danych Oracle za pośrednictwem
1150 interfejsu PDO.
1151
1152 %package pdo-odbc
1153 Summary:        PHP Data Objects (PDO) ODBC support
1154 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą ODBC
1155 Group:          Libraries
1156 URL:            http://www.php.net/manual/en/ref.pdo-odbc.php
1157 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1158 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1159 Provides:       php(pdo-odbc)
1160 Obsoletes:      php-pecl-PDO_ODBC
1161
1162 %description pdo-odbc
1163 This is a dynamic shared object (DSO) for PHP that will add PDO ODBC
1164 support.
1165
1166 %description pdo-odbc -l pl.UTF-8
1167 Moduł dla PHP dodający obsługę baz danych ODBC za pośrednictwem
1168 interfejsu PDO.
1169
1170 %package pdo-pgsql
1171 Summary:        PHP Data Objects (PDO) PostgreSQL support
1172 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą PostgreSQL-a
1173 Group:          Libraries
1174 URL:            http://www.php.net/manual/en/ref.pdo-pgsql.php
1175 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1176 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1177 Provides:       php(pdo-pgsql)
1178 Provides:       php-pecl-PDO_PGSQL
1179 Obsoletes:      php-pecl-PDO_PGSQL
1180
1181 %description pdo-pgsql
1182 This is a dynamic shared object (DSO) for PHP that will add PDO
1183 PostgreSQL support.
1184
1185 %description pdo-pgsql -l pl.UTF-8
1186 Moduł dla PHP dodający obsługę baz danych PostgreSQL za pośrednictwem
1187 interfejsu PDO.
1188
1189 %package pdo-sqlite
1190 Summary:        PHP Data Objects (PDO) SQLite support
1191 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą SQLite
1192 Group:          Libraries
1193 URL:            http://www.php.net/manual/en/ref.pdo-sqlite.php
1194 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1195 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1196 Provides:       php(pdo-sqlite)
1197 Obsoletes:      php-pecl-PDO_SQLITE
1198
1199 %description pdo-sqlite
1200 This is a dynamic shared object (DSO) for PHP that will add PDO SQLite
1201 support.
1202
1203 %description pdo-sqlite -l pl.UTF-8
1204 Moduł dla PHP dodający obsługę baz danych SQLite za pośrednictwem
1205 interfejsu PDO.
1206
1207 %package pgsql
1208 Summary:        PostgreSQL database module for PHP
1209 Summary(pl.UTF-8):      Moduł bazy danych PostgreSQL dla PHP
1210 Group:          Libraries
1211 URL:            http://www.php.net/manual/en/book.pgsql.php
1212 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1213 Provides:       php(pgsql)
1214
1215 %description pgsql
1216 This is a dynamic shared object (DSO) for PHP that will add PostgreSQL
1217 database support.
1218
1219 %description pgsql -l pl.UTF-8
1220 Moduł PHP umożliwiający dostęp do bazy danych PostgreSQL.
1221
1222 %description pgsql -l pt_BR.UTF-8
1223 Um módulo para aplicações PHP que usam bancos de dados postgresql.
1224
1225 %package phar
1226 Summary:        phar database module for PHP
1227 Summary(pl.UTF-8):      Moduł phar dla PHP
1228 Group:          Libraries
1229 URL:            http://www.php.net/manual/en/book.phar.php
1230 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1231 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1232 Provides:       php(phar)
1233
1234 %description phar
1235 This is a dynamic shared object (DSO) for PHP that will add phar
1236 archive a support.
1237
1238 %description phar -l pl.UTF-8
1239 Moduł PHP umożliwiający dostęp do achiwów .phar.
1240
1241 %package posix
1242 Summary:        POSIX extension module for PHP
1243 Summary(pl.UTF-8):      Moduł POSIX dla PHP
1244 Group:          Libraries
1245 URL:            http://www.php.net/manual/en/book.posix.php
1246 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1247 Provides:       php(posix)
1248
1249 %description posix
1250 This is a dynamic shared object (DSO) for PHP that will add POSIX
1251 functions support to PHP.
1252
1253 %description posix -l pl.UTF-8
1254 Moduł PHP umożliwiający korzystanie z funkcji POSIX.
1255
1256 %package pspell
1257 Summary:        pspell extension module for PHP
1258 Summary(pl.UTF-8):      Moduł pspell dla PHP
1259 Group:          Libraries
1260 URL:            http://www.php.net/manual/en/book.pspell.php
1261 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1262 Provides:       php(pspell)
1263
1264 %description pspell
1265 This is a dynamic shared object (DSO) for PHP that will add pspell
1266 support to PHP. It allows to check the spelling of a word and offer
1267 suggestions.
1268
1269 %description pspell -l pl.UTF-8
1270 Moduł PHP umożliwiający korzystanie z pspella. Pozwala on na
1271 sprawdzanie pisowni słowa i sugerowanie poprawek.
1272
1273 %package readline
1274 Summary:        readline extension module for PHP
1275 Summary(pl.UTF-8):      Moduł readline dla PHP
1276 Group:          Libraries
1277 URL:            http://www.php.net/manual/en/book.readline.php
1278 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
1279 Provides:       php(readline)
1280
1281 %description readline
1282 This PHP module adds support for readline functions (only for cli and
1283 cgi SAPIs).
1284
1285 %description readline -l pl.UTF-8
1286 Moduł PHP dodający obsługę funkcji readline (tylko do SAPI cli i cgi).
1287
1288 %package recode
1289 Summary:        recode extension module for PHP
1290 Summary(pl.UTF-8):      Moduł recode dla PHP
1291 Group:          Libraries
1292 URL:            http://www.php.net/manual/en/book.recode.php
1293 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1294 Requires:       recode >= 3.5d-3
1295 Provides:       php(recode)
1296
1297 %description recode
1298 This is a dynamic shared object (DSO) for PHP that will add recode
1299 support.
1300
1301 %description recode -l pl.UTF-8
1302 Moduł PHP dodający możliwość konwersji kodowania plików (poprzez
1303 bibliotekę recode).
1304
1305 %package session
1306 Summary:        session extension module for PHP
1307 Summary(pl.UTF-8):      Moduł session dla PHP
1308 Group:          Libraries
1309 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1310 Suggests:       %{name}-hash = %{epoch}:%{version}-%{release}
1311 Provides:       php(session)
1312
1313 %description session
1314 This is a dynamic shared object (DSO) for PHP that will add session
1315 support.
1316
1317 %description session -l pl.UTF-8
1318 Moduł PHP dodający obsługę sesji.
1319
1320 %package shmop
1321 Summary:        Shared Memory Operations extension module for PHP
1322 Summary(pl.UTF-8):      Moduł shmop dla PHP
1323 Group:          Libraries
1324 URL:            http://www.php.net/manual/en/book.shmop.php
1325 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1326 Provides:       php(shmop)
1327
1328 %description shmop
1329 This is a dynamic shared object (DSO) for PHP that will add Shared
1330 Memory Operations support.
1331
1332 %description shmop -l pl.UTF-8
1333 Moduł PHP umożliwiający korzystanie z pamięci dzielonej.
1334
1335 %package simplexml
1336 Summary:        Simple XML extension module for PHP
1337 Summary(pl.UTF-8):      Moduł prostego rozszerzenia XML dla PHP
1338 Group:          Libraries
1339 URL:            http://www.php.net/manual/en/book.simplexml.php
1340 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1341 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1342 Provides:       php(simplexml)
1343
1344 %description simplexml
1345 This is a dynamic shared object (DSO) for PHP that will add Simple XML
1346 support.
1347
1348 %description simplexml -l pl.UTF-8
1349 Moduł PHP dodający obsługę prostego XML-a.
1350
1351 %package snmp
1352 Summary:        SNMP extension module for PHP
1353 Summary(pl.UTF-8):      Moduł SNMP dla PHP
1354 Group:          Libraries
1355 URL:            http://www.php.net/manual/en/book.snmp.php
1356 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1357 Requires:       %{name}-sockets = %{epoch}:%{version}-%{release}
1358 Provides:       php(snmp)
1359
1360 %description snmp
1361 This is a dynamic shared object (DSO) for PHP that will add SNMP
1362 support.
1363
1364 %description snmp -l pl.UTF-8
1365 Moduł PHP dodający obsługę SNMP.
1366
1367 %package soap
1368 Summary:        soap extension module for PHP
1369 Summary(pl.UTF-8):      Moduł soap dla PHP
1370 Group:          Libraries
1371 URL:            http://www.php.net/manual/en/book.soap.php
1372 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1373 Provides:       php(soap)
1374
1375 %description soap
1376 This is a dynamic shared object (DSO) for PHP that will add SOAP/WSDL
1377 support.
1378
1379 %description soap -l pl.UTF-8
1380 Moduł PHP dodający obsługę SOAP/WSDL.
1381
1382 %package sockets
1383 Summary:        sockets extension module for PHP
1384 Summary(pl.UTF-8):      Moduł socket dla PHP
1385 Group:          Libraries
1386 URL:            http://www.php.net/manual/en/book.sockets.php
1387 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1388 Provides:       php(sockets)
1389
1390 %description sockets
1391 This is a dynamic shared object (DSO) for PHP that will add sockets
1392 support.
1393
1394 %description sockets -l pl.UTF-8
1395 Moduł PHP dodający obsługę gniazdek.
1396
1397 %package spl
1398 Summary:        Standard PHP Library module for PHP
1399 Summary(pl.UTF-8):      Moduł SPL dla PHP
1400 Group:          Libraries
1401 URL:            http://php.net/manual/en/book.spl.php
1402 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1403 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
1404 Requires:       %{name}-simplexml = %{epoch}:%{version}-%{release}
1405 Provides:       php(spl)
1406
1407 %description spl
1408 This is a dynamic shared object (DSO) for PHP that will add Standard
1409 PHP Library support.
1410
1411 %description spl -l pl.UTF-8
1412 Moduł PHP dodający obsługę gniazdek.
1413
1414 %package sqlite
1415 Summary:        SQLite extension module for PHP
1416 Summary(pl.UTF-8):      Moduł SQLite dla PHP
1417 Group:          Libraries
1418 URL:            http://www.php.net/manual/en/book.sqlite.php
1419 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1420 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1421 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1422 Provides:       php(sqlite)
1423
1424 %description sqlite
1425 SQLite is a C library that implements an embeddable SQL database
1426 engine. Programs that link with the SQLite library can have SQL
1427 database access without running a separate RDBMS process.
1428
1429 SQLite is not a client library used to connect to a big database
1430 server. SQLite is the server. The SQLite library reads and writes
1431 directly to and from the database files on disk.
1432
1433 %description sqlite -l pl.UTF-8
1434 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1435 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1436 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1437 RDBMS.
1438
1439 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1440 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1441 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1442 dysku.
1443
1444 %package sqlite3
1445 Summary:        SQLite3 extension module for PHP
1446 Summary(pl.UTF-8):      Moduł SQLite3 dla PHP
1447 Group:          Libraries
1448 URL:            http://php.net/manual/en/book.sqlite3.php
1449 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1450 Provides:       php(sqlite3)
1451
1452 %description sqlite3
1453 SQLite is a C library that implements an embeddable SQL database
1454 engine. Programs that link with the SQLite library can have SQL
1455 database access without running a separate RDBMS process.
1456
1457 SQLite is not a client library used to connect to a big database
1458 server. SQLite is the server. The SQLite library reads and writes
1459 directly to and from the database files on disk.
1460
1461 %description sqlite3 -l pl.UTF-8
1462 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1463 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1464 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1465 RDBMS.
1466
1467 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1468 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1469 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1470 dysku.
1471
1472 %package sybase-ct
1473 Summary:        Sybase-CT extension module for PHP
1474 Summary(pl.UTF-8):      Moduł Sybase-CT dla PHP
1475 Group:          Libraries
1476 URL:            http://www.php.net/manual/en/book.sybase.php
1477 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1478 Provides:       php(sybase-ct)
1479 Obsoletes:      php-sybase
1480 Conflicts:      php-sybase
1481
1482 %description sybase-ct
1483 This is a dynamic shared object (DSO) for PHP that will add Sybase and
1484 MS SQL databases support through CT-lib.
1485
1486 %description sybase-ct -l pl.UTF-8
1487 Moduł PHP dodający obsługę baz danych Sybase oraz MS SQL poprzez
1488 CT-lib.
1489
1490 %package sysvmsg
1491 Summary:        SysV msg extension module for PHP
1492 Summary(pl.UTF-8):      Moduł SysV msg dla PHP
1493 Group:          Libraries
1494 URL:            http://www.php.net/manual/en/book.sem.php
1495 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1496 Provides:       php(sysvmsg)
1497
1498 %description sysvmsg
1499 This is a dynamic shared object (DSO) for PHP that will add SysV
1500 message queues support.
1501
1502 %description sysvmsg -l pl.UTF-8
1503 Moduł PHP umożliwiający korzystanie z kolejek komunikatów SysV.
1504
1505 %package sysvsem
1506 Summary:        SysV sem extension module for PHP
1507 Summary(pl.UTF-8):      Moduł SysV sem dla PHP
1508 Group:          Libraries
1509 URL:            http://www.php.net/manual/en/book.sem.php
1510 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1511 Provides:       php(sysvsem)
1512
1513 %description sysvsem
1514 This is a dynamic shared object (DSO) for PHP that will add SysV
1515 semaphores support.
1516
1517 %description sysvsem -l pl.UTF-8
1518 Moduł PHP umożliwiający korzystanie z semaforów SysV.
1519
1520 %package sysvshm
1521 Summary:        SysV shm extension module for PHP
1522 Summary(pl.UTF-8):      Moduł SysV shm dla PHP
1523 Group:          Libraries
1524 URL:            http://www.php.net/manual/en/book.shmop.php
1525 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1526 Provides:       php(sysvshm)
1527
1528 %description sysvshm
1529 This is a dynamic shared object (DSO) for PHP that will add SysV
1530 Shared Memory support.
1531
1532 %description sysvshm -l pl.UTF-8
1533 Moduł PHP umożliwiający korzystanie z pamięci dzielonej SysV.
1534
1535 %package tests
1536 Summary:        Contains unit test files for PHP and extensions
1537 Summary(pl.UTF-8):      Zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1538 Group:          Libraries
1539 URL:            http://qa.php.net/
1540 Requires:       %{name}-cli
1541
1542 %description tests
1543 This package contains unit tests for PHP and it's extensions.
1544
1545 %description tests -l pl.UTF-8
1546 Ten pakiet zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1547
1548 %package tidy
1549 Summary:        Tidy extension module for PHP
1550 Summary(pl.UTF-8):      Moduł Tidy dla PHP
1551 Group:          Libraries
1552 URL:            http://www.php.net/manual/en/book.tidy.php
1553 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1554 Requires:       tidy
1555 Provides:       php(tidy)
1556
1557 %description tidy
1558 This is a dynamic shared object (DSO) for PHP that will add Tidy
1559 support.
1560
1561 %description tidy -l pl.UTF-8
1562 Moduł PHP umożliwiający korzystanie z tidy.
1563
1564 %package tokenizer
1565 Summary:        tokenizer extension module for PHP
1566 Summary(pl.UTF-8):      Moduł rozszerzenia tokenizer dla PHP
1567 Group:          Libraries
1568 URL:            http://www.php.net/manual/en/book.tokenizer.php
1569 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1570 Provides:       php(tokenizer)
1571
1572 %description tokenizer
1573 This is a dynamic shared object (DSO) for PHP that will add tokenizer
1574 support.
1575
1576 %description tokenizer -l pl.UTF-8
1577 Moduł PHP dodający obsługę tokenizera do PHP.
1578
1579 %package wddx
1580 Summary:        wddx extension module for PHP
1581 Summary(pl.UTF-8):      Moduł wddx dla PHP
1582 Group:          Libraries
1583 URL:            http://www.php.net/manual/en/book.wddx.php
1584 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1585 # - wddx doesn't require session as it's disabled at compile time:
1586 #   if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
1587 #   see also php.spec#rev1.120.2.22
1588 #Requires:      %{name}-session = %{epoch}:%{version}-%{release}
1589 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1590 Provides:       php(wddx)
1591
1592 %description wddx
1593 This is a dynamic shared object (DSO) for PHP that will add wddx
1594 support.
1595
1596 %description wddx -l pl.UTF-8
1597 Moduł PHP umożliwiający korzystanie z wddx.
1598
1599 %package xml
1600 Summary:        XML extension module for PHP
1601 Summary(pl.UTF-8):      Moduł XML dla PHP
1602 Group:          Libraries
1603 URL:            http://www.php.net/manual/en/book.xml.php
1604 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1605 Provides:       php(xml)
1606
1607 %description xml
1608 This is a dynamic shared object (DSO) for PHP that will add XML
1609 support. This extension lets you create XML parsers and then define
1610 handlers for different XML events.
1611
1612 %description xml -l pl.UTF-8
1613 Moduł PHP umożliwiający parsowanie plików XML i obsługę zdarzeń
1614 związanych z tymi plikami. Pozwala on tworzyć analizatory XML-a i
1615 następnie definiować procedury obsługi dla różnych zdarzeń XML.
1616
1617 %package xmlreader
1618 Summary:        XML Reader extension module for PHP
1619 Summary(pl.UTF-8):      Moduł XML Reader dla PHP
1620 Group:          Libraries
1621 URL:            http://www.php.net/manual/en/book.xmlreader.php
1622 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1623 Suggests:       %{name}-dom = %{epoch}:%{version}-%{release}
1624 Provides:       php(xmlreader)
1625
1626 %description xmlreader
1627 This is a dynamic shared object (DSO) for PHP that will add XML Reader
1628 support. The XMLReader extension is an XML Pull parser. The reader
1629 acts as a cursor going forward on the document stream and stopping at
1630 each node on the way.
1631
1632 %description xmlreader -l pl.UTF-8
1633 Moduł PHP umożliwiający analizę plików XML w trybie Pull. Czytnik
1634 działa jako kursor przechodzący przez strumień dokumentu i
1635 zatrzymujący się na każdym węźle po drodze.
1636
1637 %package xmlrpc
1638 Summary:        xmlrpc extension module for PHP
1639 Summary(pl.UTF-8):      Moduł xmlrpc dla PHP
1640 Group:          Libraries
1641 URL:            http://www.php.net/manual/en/book.xmlrpc.php
1642 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1643 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1644 Provides:       php(xmlrpc)
1645
1646 %description xmlrpc
1647 This is a dynamic shared object (DSO) for PHP that will add XMLRPC
1648 support.
1649
1650 %description xmlrpc -l pl.UTF-8
1651 Moduł PHP dodający obsługę XMLRPC.
1652
1653 %package xmlwriter
1654 Summary:        Fast, non-cached, forward-only means to write XML data
1655 Summary(pl.UTF-8):      Szybka, nie cachowana metoda zapisu danych w formacie XML
1656 Group:          Libraries
1657 URL:            http://www.php.net/manual/en/book.xmlwriter.php
1658 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1659 Provides:       php(xmlwriter)
1660 Obsoletes:      php-pecl-xmlwriter
1661
1662 %description xmlwriter
1663 This extension wraps the libxml xmlWriter API. Represents a writer
1664 that provides a non-cached, forward-only means of generating streams
1665 or files containing XML data.
1666
1667 %description xmlwriter -l pl.UTF-8
1668 To rozszerzenie obudowuje API xmlWriter z libxml. Reprezentuje obsługę
1669 zapisu dostarczającą nie cachowanych metod generowania strumieni lub
1670 plików zawierających dane XML.
1671
1672 %package xsl
1673 Summary:        xsl extension module for PHP
1674 Summary(pl.UTF-8):      Moduł xsl dla PHP
1675 Group:          Libraries
1676 URL:            http://www.php.net/manual/en/book.xsl.php
1677 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1678 Requires:       %{name}-dom = %{epoch}:%{version}-%{release}
1679 Requires:       libxslt >= 1.0.18
1680 # actually not true, functionality is similar, but API differs
1681 Provides:       php(xsl)
1682 Obsoletes:      php-xslt <= 3:4.3.8-1
1683
1684 %description xsl
1685 This is a dynamic shared object (DSO) for PHP that will add new XSL
1686 support (using libxslt).
1687
1688 %description xsl -l pl.UTF-8
1689 Moduł PHP dodający nową obsługę XSLT (przy użyciu libxslt).
1690
1691 %package zip
1692 Summary:        Zip management extension
1693 Summary(pl.UTF-8):      Zarządzanie archiwami zip
1694 Group:          Libraries
1695 URL:            http://www.php.net/manual/en/book.zip.php
1696 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1697 Provides:       php(zip)
1698 Obsoletes:      php-pecl-zip
1699
1700 %description zip
1701 Zip is an extension to create, modify and read zip files.
1702
1703 %description zip -l pl.UTF-8
1704 Zip jest rozszerzeniem umożliwiającym tworzenie, modyfikację oraz
1705 odczyt archiwów zip.
1706
1707 %package zlib
1708 Summary:        Zlib extension module for PHP
1709 Summary(pl.UTF-8):      Moduł zlib dla PHP
1710 Group:          Libraries
1711 URL:            http://www.php.net/manual/en/book.zlib.php
1712 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1713 Provides:       php(zlib)
1714
1715 %description zlib
1716 This is a dynamic shared object (DSO) for PHP that will add zlib
1717 compression support to PHP.
1718
1719 %description zlib -l pl.UTF-8
1720 Moduł PHP umożliwiający używanie kompresji zlib.
1721
1722 %prep
1723 %setup -q
1724 # prep for suhosin patch
1725 %{__sed} -i -e 's,\r$,,' Zend/Zend.dsp Zend/ZendTS.dsp
1726 %patch0 -p1
1727 %patch1 -p1
1728 %patch2 -p1
1729 %patch3 -p1
1730 %patch4 -p1
1731 %patch5 -p1
1732 %patch6 -p1
1733 %patch8 -p1
1734 %patch7 -p1
1735 %patch9 -p1
1736 cp php.ini-production php.ini
1737 %patch10 -p1
1738 %if %{with type_hints}
1739 %patch12 -p0
1740 %endif
1741 %patch14 -p1
1742 %patch15 -p1
1743 %patch17 -p1
1744 %patch18 -p1
1745 %if %{with system_gd}
1746 %patch19 -p1
1747 %endif
1748 %patch20 -p1
1749 %patch21 -p1
1750 %patch22 -p1
1751 %patch23 -p1
1752 %patch24 -p1
1753 %patch25 -p1
1754 %patch26 -p1
1755 %patch27 -p1
1756 %patch29 -p1
1757 %patch31 -p1
1758 %patch32 -p1
1759 %if "%{pld_release}" != "ac"
1760 %patch34 -p1
1761 %endif
1762 %patch35 -p1
1763 %patch36 -p1
1764 %patch37 -p1
1765 %patch38 -p1
1766 %patch39 -p1
1767 %if %{with fpm}
1768 %patch40 -p1
1769 %patch41 -p1
1770 %patch42 -p1
1771 %endif
1772 %patch43 -p1
1773 %patch44 -p1
1774 %patch45 -p1
1775 %patch46 -p1
1776 %if %{with suhosin}
1777 %patch47 -p1
1778 %endif
1779 %patch49 -p1
1780 %patch50 -p1
1781 %patch51 -p1
1782 %patch52 -p1
1783
1784 %if "%{pld_release}" != "ac"
1785 sed -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4
1786 %endif
1787
1788 # cleanup backups after patching
1789 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
1790
1791 # conflict seems to be resolved by recode patches
1792 rm -f ext/recode/config9.m4
1793
1794 # remove all bundled libraries not to link with them accidentally
1795 #rm -rf ext/sqlite/libsqlite
1796 rm -rf ext/sqlite3/libsqlite
1797 #rm -rf ext/bcmath/libbcmath
1798 #rm -rf ext/date/lib
1799 #rm -rf ext/dba/libcdb
1800 #rm -rf ext/dba/libflatfile
1801 #rm -rf ext/dba/libinifile
1802 #rm -rf ext/gd/libgd
1803 #rm -rf ext/mbstring/libmbfl
1804 #rm -rf ext/mbstring/oniguruma
1805 rm -rf ext/pcre/pcrelib
1806 rm -rf ext/pdo_sqlite/sqlite
1807 #rm -rf ext/soap/interop
1808 rm -r ext/xmlrpc/libxmlrpc
1809
1810 cp -af Zend/LICENSE{,.Zend}
1811 install -p %{SOURCE13} dep-tests.sh
1812
1813 # breaks build
1814 sed -i -e 's#-fvisibility=hidden##g' configure*
1815
1816 %build
1817 API=$(awk '/#define PHP_API_VERSION/{print $3}' main/php.h)
1818 if [ $API != %{php_api_version} ]; then
1819         echo "Set %%define php_api_version to $API and re-run."
1820         exit 1
1821 fi
1822
1823 API=$(awk '/#define ZEND_MODULE_API_NO/{print $3}' Zend/zend_modules.h)
1824 if [ $API != %{zend_module_api} ]; then
1825         echo "Set %%define zend_module_api to $API and re-run."
1826         exit 1
1827 fi
1828
1829 API=$(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' Zend/zend_extensions.h)
1830 if [ $API != %{zend_extension_api} ]; then
1831         echo "Set %%define zend_extension_api to $API and re-run."
1832         exit 1
1833 fi
1834
1835 export EXTENSION_DIR="%{php_extensiondir}"
1836 # configure once (for faster debugging purposes)
1837 if [ ! -f _built-conf ]; then
1838         # now remove Makefile copies
1839         rm -f Makefile.{cgi-fcgi,fpm,cli,apxs1,apxs2,litespeed}
1840         %{__libtoolize}
1841         %{__aclocal}
1842         cp -f /usr/share/automake/config.* .
1843         ./buildconf --force
1844         touch _built-conf
1845 fi
1846 export PROG_SENDMAIL="/usr/lib/sendmail"
1847 export CPPFLAGS="-DDEBUG_FASTCGI -DHAVE_STRNDUP %{rpmcppflags} \
1848         -I%{_includedir}/xmlrpc-epi"
1849
1850 sapis="
1851 cgi-fcgi cli
1852 %if %{with fpm}
1853 fpm
1854 %endif
1855 %if %{with apache1}
1856 apxs1
1857 %endif
1858 %if %{with apache2}
1859 apxs2
1860 %endif
1861 %if %{with litespeed}
1862 litespeed
1863 %endif
1864 "
1865 for sapi in $sapis; do
1866         : SAPI $sapi
1867         # skip if already configured (for faster debugging purposes)
1868         [ -f Makefile.$sapi ] && continue
1869
1870         sapi_args=''
1871         case $sapi in
1872         cgi-fcgi)
1873                 sapi_args='--disable-cli'
1874         ;;
1875         cli)
1876                 sapi_args='--disable-cgi'
1877         ;;
1878         fpm)
1879                 sapi_args='--disable-cli --with-fpm'
1880                 ;;
1881         apxs1)
1882                 ver=$(rpm -q --qf '%{V}' apache1-devel)
1883                 sapi_args="--disable-cli --with-apxs=%{apxs1} --with-apache-version=$ver"
1884         ;;
1885         apxs2)
1886                 ver=$(rpm -q --qf '%{V}' apache-devel)
1887                 sapi_args="--disable-cli --with-apxs2=%{apxs2} --with-apache-version=$ver"
1888         ;;
1889         litespeed)
1890                 sapi_args='--with-litespeed'
1891         ;;
1892         esac
1893
1894         %configure \
1895         $sapi_args \
1896 %if "%{!?configure_cache:0}%{?configure_cache}" == "0"
1897         --cache-file=config.cache \
1898 %endif
1899         --with-libdir=%{_lib} \
1900         --with-config-file-path=%{_sysconfdir} \
1901         --with-config-file-scan-dir=%{_sysconfdir}/conf.d \
1902         --with-exec-dir=%{_bindir} \
1903         --%{!?debug:dis}%{?debug:en}able-debug \
1904         %{?with_zts:--enable-maintainer-zts} \
1905         --enable-inline-optimization \
1906         --enable-bcmath=shared \
1907         --enable-calendar=shared \
1908         --enable-ctype=shared \
1909         --enable-dba=shared \
1910         --enable-dom=shared \
1911         --enable-exif=shared \
1912         --enable-fileinfo=shared \
1913         --enable-ftp=shared \
1914         --enable-gd-native-ttf \
1915         --enable-intl=shared \
1916         --enable-libxml \
1917         --enable-magic-quotes \
1918         --enable-mbstring=shared,all \
1919         --enable-mbregex \
1920         --enable-pcntl=shared \
1921         --enable-pdo=shared \
1922         --enable-json=shared \
1923         --enable-hash=shared \
1924         --enable-xmlwriter=shared \
1925 %if %{with fpm}
1926         --with-libevent=shared \
1927         --with-fpm-conf=%{_sysconfdir}/fpm.conf \
1928         --with-fpm-log=/var/log/fpm.log \
1929         --with-fpm-pid=/var/run/php/fpm.pid \
1930         --with-fpm-port=9000 \
1931         --with-fpm-user=http \
1932         --with-fpm-group=http \
1933 %endif
1934 %if %{with mssql} || %{with sybase_ct}
1935         --with-pdo-dblib=shared \
1936 %endif
1937 %if %{with interbase} && %{without interbase_inst}
1938         --with-pdo-firebird=shared,/usr \
1939 %endif
1940         --with-mysql-sock=/var/lib/mysql/mysql.sock \
1941         --with-pdo-mysql=shared,mysqlnd \
1942         %{?with_oci8:--with-pdo-oci=shared} \
1943         %{?with_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \
1944         %{?with_pgsql:--with-pdo-pgsql=shared} \
1945         %{?with_sqlite:--with-pdo-sqlite=shared,/usr} \
1946         --without-libexpat-dir \
1947         --enable-mysqlnd-threading \
1948         --enable-overload=shared \
1949         --enable-posix=shared \
1950         --enable-shared \
1951         --enable-session=shared \
1952         --enable-shmop=shared \
1953         --enable-simplexml=shared \
1954         --enable-spl=shared \
1955         --enable-sysvmsg=shared \
1956         --enable-sysvsem=shared \
1957         --enable-sysvshm=shared \
1958         --enable-safe-mode \
1959         --enable-soap=shared \
1960         --enable-sockets=shared \
1961         --enable-tokenizer=shared \
1962         --enable-ucd-snmp-hack \
1963         %{?with_wddx:--enable-wddx=shared} \
1964         --enable-xml=shared \
1965         --enable-xmlreader=shared \
1966         --with-bz2=shared \
1967         %{__with_without curl curl shared} \
1968         --with-db4 \
1969         %{?with_fdf:--with-fdftk=shared} \
1970         --with-iconv=shared \
1971         --with-freetype-dir=shared \
1972         --with-gettext=shared \
1973         --with-gd=shared%{?with_system_gd:,/usr} \
1974         --with-gdbm \
1975         --with-gmp=shared \
1976         %{?with_imap:--with-imap=shared --with-imap-ssl} \
1977         %{?with_interbase:--with-interbase=shared%{!?with_interbase_inst:,/usr}} \
1978         --with-jpeg-dir=/usr \
1979         %{?with_ldap:--with-ldap=shared --with-ldap-sasl} \
1980         --with-mcrypt=shared \
1981         %{?with_mm:--with-mm} \
1982         %{?with_mssql:--with-mssql=shared} \
1983         --with-mysql=shared,mysqlnd \
1984         %{?with_mysqli:--with-mysqli=shared,mysqlnd} \
1985         %{?with_oci8:--with-oci8=shared} \
1986         %{?with_openssl:--with-openssl=shared} \
1987         --with-kerberos \
1988         %{__with_without pcre pcre-regex /usr} \
1989         %{__enable_disable filter filter shared} \
1990         --with-pear=%{php_pear_dir} \
1991         %{__with_without pgsql pgsql shared,/usr} \
1992         %{__enable_disable phar phar shared} \
1993         --with-png-dir=/usr \
1994         %{?with_pspell:--with-pspell=shared} \
1995         --with-readline=shared \
1996         %{?with_recode:--with-recode=shared} \
1997         --with-regex=system \
1998         %{?with_snmp:--with-snmp=shared} \
1999         %{?with_sybase_ct:--with-sybase-ct=shared,/usr} \
2000         %{!?with_sqlite:--without-sqlite --without-pdo-sqlite}%{?with_sqlite:--with-sqlite=shared,/usr --enable-sqlite-utf8} \
2001         %{__with_without sqlite3 sqlite3 shared,/usr} \
2002         --with-t1lib=shared \
2003         %{?with_tidy:--with-tidy=shared} \
2004         %{?with_odbc:--with-unixODBC=shared,/usr} \
2005         %{__with_without xmlrpc xmlrpc shared,/usr} \
2006         --with-xsl=shared \
2007         --with-zlib=shared \
2008         --with-zlib-dir=shared,/usr \
2009         --enable-zip=shared,/usr \
2010
2011         # save for debug
2012         cp -f Makefile Makefile.$sapi
2013         cp -f main/php_config.h php_config.h.$sapi
2014         cp -f config.log config.log.$sapi
2015 done
2016
2017 # as we build each SAPI in own make, adjust php-config.in forehead
2018 sapis=$(awk '/^PHP_SAPI = /{print $3}' Makefile.* | sort -u | xargs)
2019 sed -i -e "s,@PHP_INSTALLED_SAPIS@,$sapis," "scripts/php-config.in"
2020
2021 # must make libphp_common first, so modules can link against it.
2022 %{__make} libphp_common.la
2023 %{__make} build-modules
2024
2025 %if %{with apache1}
2026 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache/libphp5.la -f Makefile.apxs1
2027 %endif
2028
2029 %if %{with apache2}
2030 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache2handler/libphp5.la -f Makefile.apxs2
2031 %endif
2032
2033 %if %{with litespeed}
2034 %{__make} -f Makefile.litespeed
2035 %endif
2036
2037 # CGI/FCGI
2038 cp -af php_config.h.cgi-fcgi main/php_config.h
2039 %{__make} -f Makefile.cgi-fcgi
2040 [ "$(echo '<?=php_sapi_name();' | ./sapi/cgi/php-cgi -qn)" = cgi-fcgi ] || exit 1
2041
2042 # PHP FPM
2043 %if %{with fpm}
2044 cp -af php_config.h.fpm main/php_config.h
2045 %{__make} -f Makefile.fpm
2046  ./sapi/fpm/php-fpm -qn -m > /dev/null
2047 %endif
2048
2049 # CLI
2050 cp -af php_config.h.cli main/php_config.h
2051 %{__make} -f Makefile.cli
2052 [ "$(echo '<?=php_sapi_name();' | ./sapi/cli/php -qn)" = cli ] || exit 1
2053
2054 # Generate stub .ini files for each extension
2055 rm -rf conf.d
2056 install -d conf.d
2057 generate_inifiles() {
2058         for so in modules/*.so; do
2059                 mod=$(basename $so .so)
2060                 conf="$mod.ini"
2061                 # xml needs to be loaded before wddx
2062                 [ "$mod" = "wddx" ] && conf="xml_$mod.ini"
2063                 # pre needs to be loaded before SPL
2064                 [ "$mod" = "pcre" ] && conf="PCRE.ini"
2065                 # spl needs to be loaded before mysqli
2066                 [ "$mod" = "spl" ] && conf="SPL.ini"
2067                 echo "+ $conf"
2068                 cat > conf.d/$conf <<-EOF
2069                         ; Enable $mod extension module
2070                         extension=$mod.so
2071                 EOF
2072         done
2073 }
2074 generate_inifiles
2075
2076 # Check that the module inner-dependencies are intact
2077 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh > dep-tests.log
2078 if grep -v OK dep-tests.log; then
2079         echo >&2 "The results above were not expected"
2080         exit 1
2081 fi
2082
2083
2084 %if %{with tests}
2085 # Run tests, using the CLI SAPI
2086 cp -af php_config.h.cli main/php_config.h
2087 cp -af Makefile.cli Makefile
2088 export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
2089 unset TZ LANG LC_ALL || :
2090 %{__make} test
2091 unset NO_INTERACTION REPORT_EXIT_STATUS MALLOC_CHECK_
2092 %endif
2093
2094 %install
2095 rm -rf $RPM_BUILD_ROOT
2096 install -d $RPM_BUILD_ROOT{%{_libdir}/{php,apache{,1}},%{_sysconfdir}/{apache,cgi}} \
2097         $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}} \
2098         $RPM_BUILD_ROOT/etc/{apache/conf.d,httpd/conf.d} \
2099         $RPM_BUILD_ROOT%{_mandir}/man1 \
2100
2101 # install the Apache modules' files
2102 %{__make} install-headers install-build install-modules install-programs \
2103         INSTALL_ROOT=$RPM_BUILD_ROOT
2104
2105 # install Apache1 DSO module
2106 %if %{with apache1}
2107 libtool --silent --mode=install install sapi/apache/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache1
2108 %endif
2109
2110 # install Apache2 DSO module
2111 %if %{with apache2}
2112 libtool --silent --mode=install install sapi/apache2handler/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache
2113 %endif
2114
2115 # install litespeed sapi
2116 %if %{with litespeed}
2117 libtool --silent --mode=install install sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/php.litespeed
2118 %endif
2119
2120 libtool --silent --mode=install install libphp_common.la $RPM_BUILD_ROOT%{_libdir}
2121 # fix install paths, avoid evil rpaths
2122 sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la
2123 # better solution?
2124 sed -i -e 's|libphp_common.la|$(libdir)/libphp_common.la|' $RPM_BUILD_ROOT%{_libdir}/php/build/acinclude.m4
2125
2126 # install CGI/FCGI
2127 libtool --silent --mode=install install sapi/cgi/php-cgi $RPM_BUILD_ROOT%{_bindir}/php.cgi
2128 ln -sf php.cgi $RPM_BUILD_ROOT%{_bindir}/php.fcgi
2129
2130 # install FCGI PM
2131 %if %{with fpm}
2132 libtool --silent --mode=install install sapi/fpm/php-fpm $RPM_BUILD_ROOT%{_bindir}/php.fpm
2133 cp -a sapi/fpm/php-fpm.1 $RPM_BUILD_ROOT%{_mandir}/man1/php-fpm.1
2134 cp -a sapi/fpm/php_fpm.conf $RPM_BUILD_ROOT%{_sysconfdir}/fpm.conf
2135 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
2136 install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/php-fpm
2137 install -d $RPM_BUILD_ROOT/etc/logrotate.d
2138 cp -a %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/php-fpm
2139 %endif
2140
2141 # install CLI
2142 libtool --silent --mode=install install sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php.cli
2143 install sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php.1
2144 echo ".so php.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.cli.1
2145 ln -sf php.cli $RPM_BUILD_ROOT%{_bindir}/php
2146
2147 sed -e 's#%{_prefix}/lib/php#%{_libdir}/php#g' php.ini > $RPM_BUILD_ROOT%{_sysconfdir}/php.ini
2148
2149 # per SAPI ini directories
2150 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{cgi-fcgi,cli,apache,apache2handler}.d
2151 cp -a %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/cli.d/php-cli.ini
2152 cp -a %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/cgi-fcgi.d/php-cgi-fcgi.ini
2153 cp -a %{SOURCE9} $RPM_BUILD_ROOT%{_sysconfdir}/browscap.ini
2154
2155 %if %{with apache1}
2156 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/apache/conf.d/70_mod_php.conf
2157 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/apache.d/php-apache.ini
2158 rm -f $RPM_BUILD_ROOT%{_libdir}/apache1/libphp5.la
2159 %endif
2160
2161 %if %{with apache2}
2162 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/httpd/conf.d/70_mod_php.conf
2163 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/apache2handler.d/php-apache2handler.ini
2164 rm -f $RPM_BUILD_ROOT%{_libdir}/apache/libphp5.la
2165 %endif
2166
2167 install -d $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2168 cp -a conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2169
2170 # for CLI SAPI only
2171 mv $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d}
2172
2173 # use system automake and {lib,sh}tool
2174 %if "%{pld_release}" != "ac"
2175         ln -snf /usr/share/automake/config.{guess,sub} $RPM_BUILD_ROOT%{_libdir}/php/build
2176         for i in libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4; do
2177                 ln -snf %{_aclocaldir}/${i} $RPM_BUILD_ROOT%{_libdir}/php/build
2178         done
2179         ln -snf %{_datadir}/libtool/config/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2180 %else
2181         ln -snf %{_aclocaldir}/libtool.m4 $RPM_BUILD_ROOT%{_libdir}/php/build
2182         ln -snf %{_datadir}/libtool/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2183 %endif
2184 ln -snf %{_bindir}/shtool $RPM_BUILD_ROOT%{_libdir}/php/build
2185
2186 # as a result of ext/pcre/pcrelib removal in %%prep, ext/pcre/php_pcre.h
2187 # isn't installed by install-headers make target, we do it manually here.
2188 # this header file is required by e.g. filter PECL extension
2189 install -D ext/pcre/php_pcre.h $RPM_BUILD_ROOT%{_includedir}/php/ext/pcre/php_pcre.h
2190 # for php-pecl-mailparse
2191 install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2192 cp -a ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2193
2194 # tests
2195 install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2196 install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php
2197 cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2198
2199 %clean
2200 rm -rf $RPM_BUILD_ROOT
2201
2202 %post -n apache1-mod_php
2203 if [ "$1" = "1" ]; then
2204         %service -q apache restart
2205 fi
2206
2207 %postun -n apache1-mod_php
2208 if [ "$1" = "0" ]; then
2209         %service -q apache restart
2210 fi
2211
2212 %post -n apache-mod_php
2213 if [ "$1" = "1" ]; then
2214         %service -q httpd restart
2215 fi
2216
2217 %postun -n apache-mod_php
2218 if [ "$1" = "0" ]; then
2219         %service -q httpd restart
2220 fi
2221
2222 %pre fpm
2223 %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http
2224
2225 %post fpm
2226 /sbin/chkconfig --add php-fpm
2227 %service php-fpm restart
2228
2229 %preun fpm
2230 if [ "$1" = 0 ]; then
2231         %service php-fpm stop
2232         /sbin/chkconfig --del php-fpm
2233 fi
2234
2235 %postun fpm
2236 if [ "$1" = "0" ]; then
2237         %userremove http
2238 fi
2239
2240 %post   common -p /sbin/ldconfig
2241 %postun common -p /sbin/ldconfig
2242
2243 %posttrans common
2244 # minimizing apache restarts logics. we restart webserver:
2245 #
2246 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2247 # 2. first install of extension (post: $1 = 1)
2248 # 2. uninstall of extension (postun: $1 == 0)
2249 #
2250 # the strict internal deps between extensions (and apache modules) and
2251 # common package are very important for all this to work.
2252
2253 # restart webserver at the end of transaction
2254 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart
2255 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart
2256
2257 %if %{with apache1}
2258 %triggerpostun -n apache1-mod_php -- php < 4:5.0.4-9.11
2259 sed -i -e '
2260         /^AddType application\/x-httpd-php \.php/s,^,#,
2261         /^\(Add\|Load\)Module.*php5\.\(so\|c\)/d
2262 ' /etc/apache/apache.conf
2263 %service -q apache restart
2264
2265 %triggerpostun -n apache1-mod_php -- apache1-mod_php < 4:5.3.2-0.15
2266 # rescue configs.
2267 if [ -f %{_sysconfdir}/php-apache.ini.rpmsave ]; then
2268         mv -f %{_sysconfdir}/apache.d/php-apache.ini{,.rpmnew}
2269         mv -f %{_sysconfdir}/php-apache.ini.rpmsave %{_sysconfdir}/apache.d/php-apache.ini
2270 fi
2271 %endif
2272
2273 %if %{with apache2}
2274 %triggerpostun -n apache-mod_php -- php < 4:5.0.4-7.1
2275 # for fixed php-SAPI.ini, the poor php-apache.ini was never read for apache2
2276 if [ -f %{_sysconfdir}/php-apache.ini.rpmsave ]; then
2277         cp -f %{_sysconfdir}/php-apache2handler.ini{,.rpmnew}
2278         mv -f %{_sysconfdir}/php-apache.ini.rpmsave %{_sysconfdir}/php-apache2handler.ini
2279 fi
2280
2281 %triggerpostun -n apache-mod_php -- apache-mod_php < 4:5.3.2-0.15
2282 # rescue configs.
2283 if [ -f %{_sysconfdir}/php-apache2handler.ini.rpmsave ]; then
2284         mv -f %{_sysconfdir}/php-apache2handler.d/php-apache2handler.ini{,.rpmnew}
2285         mv -f %{_sysconfdir}/php-apache2handler.ini.rpmsave %{_sysconfdir}/php-apache2handler.d/php-apache2handler.ini
2286 fi
2287 %endif
2288
2289 %triggerpostun cgi -- php-cgi < 4:5.3.2-0.15
2290 # rescue configs.
2291 for f in php-cgi.ini php-cgi-fcgi.ini ; do
2292         if [ -f %{_sysconfdir}/$f.rpmsave ]; then
2293                 mv -f %{_sysconfdir}/cgi-fcgi.d/$f{,.rpmnew}
2294                 mv -f %{_sysconfdir}/$f.rpmsave %{_sysconfdir}/cgi-fcgi.d/$f
2295         fi
2296 done
2297
2298 %triggerpostun cli -- php-cli < 4:5.3.2-0.15
2299 # rescue configs.
2300 if [ -f %{_sysconfdir}/php-cli.ini.rpmsave ]; then
2301         mv -f %{_sysconfdir}/cli.d/php-cli.ini{,.rpmnew}
2302         mv -f %{_sysconfdir}/php-cli.ini.rpmsave %{_sysconfdir}/cli.d/php-cli.ini
2303 fi
2304
2305 # common macros called at extension post/postun scriptlet
2306 %define extension_scripts() \
2307 %post %1 \
2308 if [ "$1" = "1" ]; then \
2309         %php_webserver_restart \
2310 fi \
2311 \
2312 %postun %1 \
2313 if [ "$1" = "0" ]; then \
2314         %php_webserver_restart \
2315 fi
2316 %{nil}
2317
2318 # extension scripts defines
2319 %extension_scripts bcmath
2320 %extension_scripts bzip2
2321 %extension_scripts calendar
2322 %extension_scripts ctype
2323 %extension_scripts curl
2324 %extension_scripts dba
2325 %extension_scripts dom
2326 %extension_scripts exif
2327 %extension_scripts fdf
2328 %extension_scripts fileinfo
2329 %extension_scripts filter
2330 %extension_scripts ftp
2331 %extension_scripts gd
2332 %extension_scripts gettext
2333 %extension_scripts gmp
2334 %extension_scripts hash
2335 %extension_scripts iconv
2336 %extension_scripts imap
2337 %extension_scripts interbase
2338 %extension_scripts intl
2339 %extension_scripts json
2340 %extension_scripts ldap
2341 %extension_scripts mbstring
2342 %extension_scripts mcrypt
2343 %extension_scripts mssql
2344 %extension_scripts mysql
2345 %extension_scripts mysqli
2346 %extension_scripts oci8
2347 %extension_scripts odbc
2348 %extension_scripts openssl
2349 %extension_scripts pcre
2350 %extension_scripts pdo-dblib
2351 %extension_scripts pdo-firebird
2352 %extension_scripts pdo-mysql
2353 %extension_scripts pdo-odbc
2354 %extension_scripts pdo-pgsql
2355 %extension_scripts pdo-sqlite
2356 %extension_scripts pgsql
2357 %extension_scripts phar
2358 %extension_scripts posix
2359 %extension_scripts pspell
2360 %extension_scripts recode
2361 %extension_scripts session
2362 %extension_scripts shmop
2363 %extension_scripts snmp
2364 %extension_scripts soap
2365 %extension_scripts sockets
2366 %extension_scripts spl
2367 %extension_scripts sqlite
2368 %extension_scripts sqlite3
2369 %extension_scripts sybase-ct
2370 %extension_scripts sysvmsg
2371 %extension_scripts sysvsem
2372 %extension_scripts sysvshm
2373 %extension_scripts tidy
2374 %extension_scripts tokenizer
2375 %extension_scripts wddx
2376 %extension_scripts xml
2377 %extension_scripts xmlreader
2378 %extension_scripts xmlrpc
2379 %extension_scripts xmlwriter
2380 %extension_scripts xsl
2381 %extension_scripts zip
2382 %extension_scripts zlib
2383
2384 %triggerun bcmath -- %{name}-bcmath < 4:5.0.4-9.1
2385 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bcmath\.so/d' %{_sysconfdir}/php.ini
2386
2387 %triggerun bzip2 -- %{name}-bzip2 < 4:5.0.4-9.1
2388 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bzip2\.so/d' %{_sysconfdir}/php.ini
2389
2390 %triggerun calendar -- %{name}-calendar < 4:5.0.4-9.1
2391 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*calendar\.so/d' %{_sysconfdir}/php.ini
2392
2393 %triggerun ctype -- %{name}-ctype < 4:5.0.4-9.1
2394 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ctype\.so/d' %{_sysconfdir}/php.ini
2395
2396 %triggerun curl -- %{name}-curl < 4:5.0.4-9.1
2397 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*curl\.so/d' %{_sysconfdir}/php.ini
2398
2399 %triggerun dba -- %{name}-dba < 4:5.0.4-9.1
2400 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dba\.so/d' %{_sysconfdir}/php.ini
2401
2402 %triggerun dom -- %{name}-dom < 4:5.0.4-9.1
2403 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dom\.so/d' %{_sysconfdir}/php.ini
2404
2405 %triggerun exif -- %{name}-exif < 4:5.0.4-9.1
2406 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*exif\.so/d' %{_sysconfdir}/php.ini
2407
2408 %triggerun fdf -- %{name}-fdf < 4:5.0.4-9.1
2409 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*fdf\.so/d' %{_sysconfdir}/php.ini
2410
2411 %triggerun ftp -- %{name}-ftp < 4:5.0.4-9.1
2412 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ftp\.so/d' %{_sysconfdir}/php.ini
2413
2414 %triggerun gd -- %{name}-gd < 4:5.0.4-9.1
2415 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gd\.so/d' %{_sysconfdir}/php.ini
2416
2417 %triggerun gettext -- %{name}-gettext < 4:5.0.4-9.1
2418 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gettext\.so/d' %{_sysconfdir}/php.ini
2419
2420 %triggerun gmp -- %{name}-gmp < 4:5.0.4-9.1
2421 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gmp\.so/d' %{_sysconfdir}/php.ini
2422
2423 %triggerun iconv -- %{name}-iconv < 4:5.0.4-9.1
2424 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*iconv\.so/d' %{_sysconfdir}/php.ini
2425
2426 %triggerun imap -- %{name}-imap < 4:5.0.4-9.1
2427 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*imap\.so/d' %{_sysconfdir}/php.ini
2428
2429 %triggerun interbase -- %{name}-interbase < 4:5.0.4-9.1
2430 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*interbase\.so/d' %{_sysconfdir}/php.ini
2431
2432 %triggerun ldap -- %{name}-ldap < 4:5.0.4-9.1
2433 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ldap\.so/d' %{_sysconfdir}/php.ini
2434
2435 %triggerun mbstring -- %{name}-mbstring < 4:5.0.4-9.1
2436 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mbstring\.so/d' %{_sysconfdir}/php.ini
2437
2438 %triggerun mcrypt -- %{name}-mcrypt < 4:5.0.4-9.1
2439 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mcrypt\.so/d' %{_sysconfdir}/php.ini
2440
2441 %triggerun mssql -- %{name}-mssql < 4:5.0.4-9.1
2442 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mssql\.so/d' %{_sysconfdir}/php.ini
2443
2444 %triggerun mysql -- %{name}-mysql < 4:5.0.4-9.1
2445 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysql\.so/d' %{_sysconfdir}/php.ini
2446
2447 %triggerun mysqli -- %{name}-mysqli < 4:5.0.4-9.1
2448 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysqli\.so/d' %{_sysconfdir}/php.ini
2449
2450 %triggerun oci8 -- %{name}-oci8 < 4:5.0.4-9.1
2451 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*oci8\.so/d' %{_sysconfdir}/php.ini
2452
2453 %triggerun odbc -- %{name}-odbc < 4:5.0.4-9.1
2454 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*odbc\.so/d' %{_sysconfdir}/php.ini
2455
2456 %triggerun openssl -- %{name}-openssl < 4:5.0.4-9.1
2457 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*openssl\.so/d' %{_sysconfdir}/php.ini
2458
2459 %triggerun pcntl -- %{name}-pcntl < 4:5.1.2-9.5
2460 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2461         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cgi.ini
2462 fi
2463 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2464         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cli.ini
2465 fi
2466
2467 %triggerun pcre -- %{name}-pcre < 4:5.0.4-9.1
2468 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcre\.so/d' %{_sysconfdir}/php.ini
2469
2470 %triggerun pgsql -- %{name}-pgsql < 4:5.0.4-9.1
2471 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pgsql\.so/d' %{_sysconfdir}/php.ini
2472
2473 %triggerun posix -- %{name}-posix < 4:5.0.4-9.1
2474 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*posix\.so/d' %{_sysconfdir}/php.ini
2475
2476 %triggerun pspell -- %{name}-pspell < 4:5.0.4-9.1
2477 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pspell\.so/d' %{_sysconfdir}/php.ini
2478
2479 %triggerun readline -- %{name}-readline < 4:5.1.2-9.5
2480 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2481         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cgi.ini
2482 fi
2483 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2484         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cli.ini
2485 fi
2486
2487 %triggerun recode -- %{name}-recode < 4:5.0.4-9.1
2488 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*recode\.so/d' %{_sysconfdir}/php.ini
2489
2490 %triggerun session -- %{name}-session < 4:5.0.4-9.1
2491 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*session\.so/d' %{_sysconfdir}/php.ini
2492
2493 %triggerun shmop -- %{name}-shmop < 4:5.0.4-9.1
2494 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*shmop\.so/d' %{_sysconfdir}/php.ini
2495
2496 %triggerun snmp -- %{name}-snmp < 4:5.0.4-9.1
2497 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*snmp\.so/d' %{_sysconfdir}/php.ini
2498
2499 %triggerun soap -- %{name}-soap < 4:5.0.4-9.1
2500 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*soap\.so/d' %{_sysconfdir}/php.ini
2501
2502 %triggerun sockets -- %{name}-sockets < 4:5.0.4-9.1
2503 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sockets\.so/d' %{_sysconfdir}/php.ini
2504
2505 %triggerun sqlite -- %{name}-sqlite < 4:5.0.4-9.1
2506 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sqlite\.so/d' %{_sysconfdir}/php.ini
2507
2508 %triggerun sybase-ct -- %{name}-sybase-ct < 4:5.0.4-9.1
2509 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sybase-ct\.so/d' %{_sysconfdir}/php.ini
2510
2511 %triggerun sysvmsg -- %{name}-sysvmsg < 4:5.0.4-9.1
2512 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvmsg\.so/d' %{_sysconfdir}/php.ini
2513
2514 %triggerun sysvsem -- %{name}-sysvsem < 4:5.0.4-9.1
2515 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvsem\.so/d' %{_sysconfdir}/php.ini
2516
2517 %triggerun sysvshm -- %{name}-sysvshm < 4:5.0.4-9.1
2518 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvshm\.so/d' %{_sysconfdir}/php.ini
2519
2520 %triggerun tidy -- %{name}-tidy < 4:5.0.4-9.1
2521 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*tidy\.so/d' %{_sysconfdir}/php.ini
2522
2523 %triggerun wddx -- %{name}-wddx < 4:5.0.4-9.1
2524 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*wddx\.so/d' %{_sysconfdir}/php.ini
2525
2526 %triggerun xml -- %{name}-xml < 4:5.0.4-9.1
2527 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xml\.so/d' %{_sysconfdir}/php.ini
2528
2529 %triggerun xmlrpc -- %{name}-xmlrpc < 4:5.0.4-9.1
2530 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xmlrpc\.so/d' %{_sysconfdir}/php.ini
2531
2532 %triggerun xsl -- %{name}-xsl < 4:5.0.4-9.1
2533 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xsl\.so/d' %{_sysconfdir}/php.ini
2534
2535 %triggerun zlib -- %{name}-zlib < 4:5.0.4-9.1
2536 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*zlib\.so/d' %{_sysconfdir}/php.ini
2537
2538 %if %{with apache1}
2539 %files -n apache1-mod_php
2540 %defattr(644,root,root,755)
2541 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/apache/conf.d/*_mod_php.conf
2542 %dir %{_sysconfdir}/apache.d
2543 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache.d/php-apache.ini
2544 %attr(755,root,root) %{_libdir}/apache1/libphp5.so
2545 %endif
2546
2547 %if %{with apache2}
2548 %files -n apache-mod_php
2549 %defattr(644,root,root,755)
2550 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/httpd/conf.d/*_mod_php.conf
2551 %dir %{_sysconfdir}/apache2handler.d
2552 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/apache2handler.d/php-apache2handler.ini
2553 %attr(755,root,root) %{_libdir}/apache/libphp5.so
2554 %endif
2555
2556 %if %{with litespeed}
2557 %files litespeed
2558 %defattr(644,root,root,755)
2559 %attr(755,root,root) %{_sbindir}/php.litespeed
2560 %endif
2561
2562 %files cgi
2563 %defattr(644,root,root,755)
2564 %dir %{_sysconfdir}/cgi-fcgi.d
2565 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cgi-fcgi.d/php-cgi-fcgi.ini
2566 %attr(755,root,root) %{_bindir}/php.cgi
2567 %attr(755,root,root) %{_bindir}/php.fcgi
2568
2569 %files cli
2570 %defattr(644,root,root,755)
2571 %dir %{_sysconfdir}/cli.d
2572 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/php-cli.ini
2573 %attr(755,root,root) %{_bindir}/php.cli
2574 %{_mandir}/man1/php.1*
2575 %{_mandir}/man1/php.cli.1*
2576
2577 %files program
2578 %defattr(644,root,root,755)
2579 %attr(755,root,root) %{_bindir}/php
2580
2581 %if %{with fpm}
2582 %files fpm
2583 %defattr(644,root,root,755)
2584 %doc %lang(ru) sapi/fpm/readme-ru.markdown
2585 %doc sapi/fpm/nginx-site-conf.sample
2586 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/fpm.conf
2587 %attr(755,root,root) %{_bindir}/php.fpm
2588 %{_mandir}/man1/php-fpm.1*
2589 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/php-fpm
2590 %attr(754,root,root) /etc/rc.d/init.d/php-fpm
2591 %endif
2592
2593 %files common
2594 %defattr(644,root,root,755)
2595 %doc php.ini-*
2596 %doc CREDITS Zend/ZEND_CHANGES
2597 %doc LICENSE Zend/LICENSE.Zend EXTENSIONS NEWS TODO*
2598 %doc README.PHP4-TO-PHP5-THIN-CHANGES
2599 %doc README.namespaces
2600
2601 %dir %{_sysconfdir}
2602 %dir %{_sysconfdir}/conf.d
2603 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.ini
2604 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/browscap.ini
2605 %attr(755,root,root) %{_libdir}/libphp_common-*.so
2606 %dir %{php_extensiondir}
2607
2608 %doc ext/session/mod_files.sh
2609
2610 %files devel
2611 %defattr(644,root,root,755)
2612 %doc README.UNIX-BUILD-SYSTEM
2613 %doc README.EXT_SKEL README.SELF-CONTAINED-EXTENSIONS
2614 %doc CODING_STANDARDS README.EXTENSIONS README.PARAMETER_PARSING_API README.STREAMS
2615 %doc README.SUBMITTING_PATCH README.TESTING README.TESTING2
2616 %attr(755,root,root) %{_bindir}/phpize
2617 %attr(755,root,root) %{_bindir}/php-config
2618 %attr(755,root,root) %{_libdir}/libphp_common.so
2619 %{_libdir}/libphp_common.la
2620 %{_includedir}/php
2621 %{_libdir}/php/build
2622 %{_mandir}/man1/php-config.1*
2623 %{_mandir}/man1/phpize.1*
2624
2625 %files bcmath
2626 %defattr(644,root,root,755)
2627 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bcmath.ini
2628 %attr(755,root,root) %{php_extensiondir}/bcmath.so
2629
2630 %files bzip2
2631 %defattr(644,root,root,755)
2632 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bz2.ini
2633 %attr(755,root,root) %{php_extensiondir}/bz2.so
2634
2635 %files calendar
2636 %defattr(644,root,root,755)
2637 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/calendar.ini
2638 %attr(755,root,root) %{php_extensiondir}/calendar.so
2639
2640 %files ctype
2641 %defattr(644,root,root,755)
2642 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ctype.ini
2643 %attr(755,root,root) %{php_extensiondir}/ctype.so
2644
2645 %if %{with curl}
2646 %files curl
2647 %defattr(644,root,root,755)
2648 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/curl.ini
2649 %attr(755,root,root) %{php_extensiondir}/curl.so
2650 %endif
2651
2652 %files dba
2653 %defattr(644,root,root,755)
2654 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dba.ini
2655 %attr(755,root,root) %{php_extensiondir}/dba.so
2656
2657 %files dom
2658 %defattr(644,root,root,755)
2659 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dom.ini
2660 %attr(755,root,root) %{php_extensiondir}/dom.so
2661
2662 %if %{with fdf}
2663 %files fdf
2664 %defattr(644,root,root,755)
2665 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fdf.ini
2666 %attr(755,root,root) %{php_extensiondir}/fdf.so
2667 %endif
2668
2669 %files fileinfo
2670 %defattr(644,root,root,755)
2671 %doc README.input_filter
2672 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fileinfo.ini
2673 %attr(755,root,root) %{php_extensiondir}/fileinfo.so
2674
2675 %if %{with filter}
2676 %files filter
2677 %defattr(644,root,root,755)
2678 %doc README.input_filter
2679 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/filter.ini
2680 %attr(755,root,root) %{php_extensiondir}/filter.so
2681 %endif
2682
2683 %files exif
2684 %defattr(644,root,root,755)
2685 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/exif.ini
2686 %attr(755,root,root) %{php_extensiondir}/exif.so
2687
2688 %files ftp
2689 %defattr(644,root,root,755)
2690 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ftp.ini
2691 %attr(755,root,root) %{php_extensiondir}/ftp.so
2692
2693 %files gd
2694 %defattr(644,root,root,755)
2695 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gd.ini
2696 %attr(755,root,root) %{php_extensiondir}/gd.so
2697
2698 %files gettext
2699 %defattr(644,root,root,755)
2700 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gettext.ini
2701 %attr(755,root,root) %{php_extensiondir}/gettext.so
2702
2703 %files gmp
2704 %defattr(644,root,root,755)
2705 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gmp.ini
2706 %attr(755,root,root) %{php_extensiondir}/gmp.so
2707
2708 %files hash
2709 %defattr(644,root,root,755)
2710 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/hash.ini
2711 %attr(755,root,root) %{php_extensiondir}/hash.so
2712
2713 %files iconv
2714 %defattr(644,root,root,755)
2715 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/iconv.ini
2716 %attr(755,root,root) %{php_extensiondir}/iconv.so
2717
2718 %if %{with imap}
2719 %files imap
2720 %defattr(644,root,root,755)
2721 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/imap.ini
2722 %attr(755,root,root) %{php_extensiondir}/imap.so
2723 %endif
2724
2725 %if %{with interbase}
2726 %files interbase
2727 %defattr(644,root,root,755)
2728 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/interbase.ini
2729 %attr(755,root,root) %{php_extensiondir}/interbase.so
2730 %endif
2731
2732 %files intl
2733 %defattr(644,root,root,755)
2734 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/intl.ini
2735 %attr(755,root,root) %{php_extensiondir}/intl.so
2736
2737 %files json
2738 %defattr(644,root,root,755)
2739 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/json.ini
2740 %attr(755,root,root) %{php_extensiondir}/json.so
2741
2742 %if %{with ldap}
2743 %files ldap
2744 %defattr(644,root,root,755)
2745 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ldap.ini
2746 %attr(755,root,root) %{php_extensiondir}/ldap.so
2747 %endif
2748
2749 %files mbstring
2750 %defattr(644,root,root,755)
2751 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mbstring.ini
2752 %attr(755,root,root) %{php_extensiondir}/mbstring.so
2753
2754 %files mcrypt
2755 %defattr(644,root,root,755)
2756 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mcrypt.ini
2757 %attr(755,root,root) %{php_extensiondir}/mcrypt.so
2758
2759 %if %{with mssql}
2760 %files mssql
2761 %defattr(644,root,root,755)
2762 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mssql.ini
2763 %attr(755,root,root) %{php_extensiondir}/mssql.so
2764 %endif
2765
2766 %files mysql
2767 %defattr(644,root,root,755)
2768 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysql.ini
2769 %attr(755,root,root) %{php_extensiondir}/mysql.so
2770
2771 %if %{with mysqli}
2772 %files mysqli
2773 %defattr(644,root,root,755)
2774 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysqli.ini
2775 %attr(755,root,root) %{php_extensiondir}/mysqli.so
2776 %endif
2777
2778 %if %{with oci8}
2779 %files oci8
2780 %defattr(644,root,root,755)
2781 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/oci8.ini
2782 %attr(755,root,root) %{php_extensiondir}/oci8.so
2783 %endif
2784
2785 %if %{with odbc}
2786 %files odbc
2787 %defattr(644,root,root,755)
2788 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/odbc.ini
2789 %attr(755,root,root) %{php_extensiondir}/odbc.so
2790 %endif
2791
2792 %if %{with openssl}
2793 %files openssl
2794 %defattr(644,root,root,755)
2795 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/openssl.ini
2796 %attr(755,root,root) %{php_extensiondir}/openssl.so
2797 %endif
2798
2799 %files pcntl
2800 %defattr(644,root,root,755)
2801 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pcntl.ini
2802 %attr(755,root,root) %{php_extensiondir}/pcntl.so
2803
2804 %if %{with pcre}
2805 %files pcre
2806 %defattr(644,root,root,755)
2807 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/PCRE.ini
2808 %attr(755,root,root) %{php_extensiondir}/pcre.so
2809 %endif
2810
2811 %files pdo
2812 %defattr(644,root,root,755)
2813 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo.ini
2814 %attr(755,root,root) %{php_extensiondir}/pdo.so
2815
2816 %if %{with mssql} || %{with sybase_ct}
2817 %files pdo-dblib
2818 %defattr(644,root,root,755)
2819 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_dblib.ini
2820 %attr(755,root,root) %{php_extensiondir}/pdo_dblib.so
2821 %endif
2822
2823 %if %{with interbase} && !%{with interbase_inst}
2824 %files pdo-firebird
2825 %defattr(644,root,root,755)
2826 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_firebird.ini
2827 %attr(755,root,root) %{php_extensiondir}/pdo_firebird.so
2828 %endif
2829
2830 %files pdo-mysql
2831 %defattr(644,root,root,755)
2832 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_mysql.ini
2833 %attr(755,root,root) %{php_extensiondir}/pdo_mysql.so
2834
2835 %if %{with oci8}
2836 %files pdo-oci
2837 %defattr(644,root,root,755)
2838 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_oci.ini
2839 %attr(755,root,root) %{php_extensiondir}/pdo_oci.so
2840 %endif
2841
2842 %if %{with odbc}
2843 %files pdo-odbc
2844 %defattr(644,root,root,755)
2845 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_odbc.ini
2846 %attr(755,root,root) %{php_extensiondir}/pdo_odbc.so
2847 %endif
2848
2849 %if %{with pgsql}
2850 %files pdo-pgsql
2851 %defattr(644,root,root,755)
2852 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_pgsql.ini
2853 %attr(755,root,root) %{php_extensiondir}/pdo_pgsql.so
2854 %endif
2855
2856 %if %{with sqlite}
2857 %files pdo-sqlite
2858 %defattr(644,root,root,755)
2859 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_sqlite.ini
2860 %attr(755,root,root) %{php_extensiondir}/pdo_sqlite.so
2861 %endif
2862
2863 %if %{with pgsql}
2864 %files pgsql
2865 %defattr(644,root,root,755)
2866 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pgsql.ini
2867 %attr(755,root,root) %{php_extensiondir}/pgsql.so
2868 %endif
2869
2870 %if %{with phar}
2871 %files phar
2872 %defattr(644,root,root,755)
2873 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/phar.ini
2874 %attr(755,root,root) %{php_extensiondir}/phar.so
2875 %endif
2876
2877 %files posix
2878 %defattr(644,root,root,755)
2879 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/posix.ini
2880 %attr(755,root,root) %{php_extensiondir}/posix.so
2881
2882 %if %{with pspell}
2883 %files pspell
2884 %defattr(644,root,root,755)
2885 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pspell.ini
2886 %attr(755,root,root) %{php_extensiondir}/pspell.so
2887 %endif
2888
2889 %files readline
2890 %defattr(644,root,root,755)
2891 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/readline.ini
2892 %attr(755,root,root) %{php_extensiondir}/readline.so
2893
2894 %if %{with recode}
2895 %files recode
2896 %defattr(644,root,root,755)
2897 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/recode.ini
2898 %attr(755,root,root) %{php_extensiondir}/recode.so
2899 %endif
2900
2901 %files simplexml
2902 %defattr(644,root,root,755)
2903 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/simplexml.ini
2904 %attr(755,root,root) %{php_extensiondir}/simplexml.so
2905
2906 %files session
2907 %defattr(644,root,root,755)
2908 %doc ext/session/mod_files.sh
2909 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/session.ini
2910 %attr(755,root,root) %{php_extensiondir}/session.so
2911
2912 %files shmop
2913 %defattr(644,root,root,755)
2914 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/shmop.ini
2915 %attr(755,root,root) %{php_extensiondir}/shmop.so
2916
2917 %if %{with snmp}
2918 %files snmp
2919 %defattr(644,root,root,755)
2920 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/snmp.ini
2921 %attr(755,root,root) %{php_extensiondir}/snmp.so
2922 %endif
2923
2924 %files soap
2925 %defattr(644,root,root,755)
2926 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/soap.ini
2927 %attr(755,root,root) %{php_extensiondir}/soap.so
2928
2929 %files sockets
2930 %defattr(644,root,root,755)
2931 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sockets.ini
2932 %attr(755,root,root) %{php_extensiondir}/sockets.so
2933
2934 %files spl
2935 %defattr(644,root,root,755)
2936 %doc ext/spl/{CREDITS,README,TODO}
2937 %doc ext/spl/examples
2938 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/SPL.ini
2939 %attr(755,root,root) %{php_extensiondir}/spl.so
2940
2941 %if %{with sqlite}
2942 %files sqlite
2943 %defattr(644,root,root,755)
2944 %doc ext/sqlite/{README,TODO,CREDITS}
2945 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite.ini
2946 %attr(755,root,root) %{php_extensiondir}/sqlite.so
2947 %endif
2948
2949 %if %{with sqlite3}
2950 %files sqlite3
2951 %defattr(644,root,root,755)
2952 %doc ext/sqlite3/CREDITS
2953 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite3.ini
2954 %attr(755,root,root) %{php_extensiondir}/sqlite3.so
2955 %endif
2956
2957 %if %{with sybase_ct}
2958 %files sybase-ct
2959 %defattr(644,root,root,755)
2960 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sybase_ct.ini
2961 %attr(755,root,root) %{php_extensiondir}/sybase_ct.so
2962 %endif
2963
2964 %files sysvmsg
2965 %defattr(644,root,root,755)
2966 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvmsg.ini
2967 %attr(755,root,root) %{php_extensiondir}/sysvmsg.so
2968
2969 %files sysvsem
2970 %defattr(644,root,root,755)
2971 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvsem.ini
2972 %attr(755,root,root) %{php_extensiondir}/sysvsem.so
2973
2974 %files sysvshm
2975 %defattr(644,root,root,755)
2976 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvshm.ini
2977 %attr(755,root,root) %{php_extensiondir}/sysvshm.so
2978
2979 %files tests
2980 %defattr(644,root,root,755)
2981 %dir %{php_data_dir}/tests/php
2982 %{php_data_dir}/tests/php/basic
2983 %{php_data_dir}/tests/php/classes
2984 %{php_data_dir}/tests/php/func
2985 %{php_data_dir}/tests/php/lang
2986 %{php_data_dir}/tests/php/output
2987 %{php_data_dir}/tests/php/run-test
2988 %{php_data_dir}/tests/php/security
2989 %{php_data_dir}/tests/php/strings
2990 %{php_data_dir}/tests/php/quicktester.inc
2991 %attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php
2992
2993 %if %{with tidy}
2994 %files tidy
2995 %defattr(644,root,root,755)
2996 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tidy.ini
2997 %attr(755,root,root) %{php_extensiondir}/tidy.so
2998 %endif
2999
3000 %files tokenizer
3001 %defattr(644,root,root,755)
3002 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tokenizer.ini
3003 %attr(755,root,root) %{php_extensiondir}/tokenizer.so
3004
3005 %if %{with wddx}
3006 %files wddx
3007 %defattr(644,root,root,755)
3008 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*wddx.ini
3009 %attr(755,root,root) %{php_extensiondir}/wddx.so
3010 %endif
3011
3012 %files xml
3013 %defattr(644,root,root,755)
3014 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xml.ini
3015 %attr(755,root,root) %{php_extensiondir}/xml.so
3016
3017 %files xmlreader
3018 %defattr(644,root,root,755)
3019 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlreader.ini
3020 %attr(755,root,root) %{php_extensiondir}/xmlreader.so
3021
3022 %if %{with xmlrpc}
3023 %files xmlrpc
3024 %defattr(644,root,root,755)
3025 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlrpc.ini
3026 %attr(755,root,root) %{php_extensiondir}/xmlrpc.so
3027 %endif
3028
3029 %files xmlwriter
3030 %defattr(644,root,root,755)
3031 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlwriter.ini
3032 %attr(755,root,root) %{php_extensiondir}/xmlwriter.so
3033
3034 %files xsl
3035 %defattr(644,root,root,755)
3036 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xsl.ini
3037 %attr(755,root,root) %{php_extensiondir}/xsl.so
3038
3039 %files zip
3040 %defattr(644,root,root,755)
3041 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zip.ini
3042 %attr(755,root,root) %{php_extensiondir}/zip.so
3043
3044 %files zlib
3045 %defattr(644,root,root,755)
3046 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zlib.ini
3047 %attr(755,root,root) %{php_extensiondir}/zlib.so
This page took 0.261554 seconds and 4 git commands to generate.