]> git.pld-linux.org Git - packages/php.git/blob - php.spec
- rel 2; disable mysqlnd by default (doesn't match previous lib feature set)
[packages/php.git] / php.spec
1 # TODO
2 # - NOTE: mysqlnd does not support ssl or compression (see FAQ at http://dev.mysql.com/downloads/connector/php-mysqlnd/)
3 # - wddx: restore session support (not compiled in due DL extension check)
4 # - deal with modules removed from php and not moved to PECL, still not obsoleted anywhere
5 #   - removed from php 5.0 (currently in php4):
6 #   db, hyperwave, java, mcal, overload, qtdom
7 #   - removed from php 5.1:
8 #   cpdf, fam, oracle
9 #   - removed from php 5.2:
10 #   filepro, hw
11 #   - removed from php 5.3:
12 #   dbase, mime_magic, ming, ncurses, sybase
13 # - make additional headers and checking added by mail patch configurable
14 # - modularize standard (output from pure php -m)?
15 # - lib64 patch obsolete by $PHP_LIBDIR ?
16 # - WARNING: Phar: sha256/sha512 signature support disabled if ext/hash is
17 #   built shared, also PHAR_HAVE_OPENSSL is false if openssl is built shared.
18 #   make it runtime dep and add Suggests (or php warning messages)
19 # - some mods should be shared:
20 #$ php -m
21 # [PHP Modules]
22 #+Core
23 # date
24 #+ereg
25 # libxml
26 # Reflection
27 #
28 # Conditional build:
29 %bcond_with     fdf             # with FDF (PDF forms) module           (BR: proprietary lib)
30 %bcond_with     interbase_inst  # use InterBase install., not Firebird  (BR: proprietary libs)
31 %bcond_with     oci8            # with Oracle oci8 extension module     (BR: proprietary libs)
32 %bcond_with     system_gd       # with system gd (we prefer internal since it enables few more features)
33 %bcond_with     litespeed       # build litespeed module
34 %bcond_without  curl            # without CURL extension module
35 %bcond_without  filter          # without filter extension module
36 %bcond_without  imap            # without IMAP extension module
37 %bcond_without  interbase       # without InterBase extension module
38 %bcond_without  ldap            # without LDAP extension module
39 %bcond_without  mm              # without mm support for session storage
40 %bcond_without  mssql           # without MS SQL extension module
41 # don't turn it on by default; see TODO item for mysqlnd in this spec
42 %bcond_with     mysqlnd         # without mysqlnd support in mysql related extensions
43 %bcond_without  mysqli          # without mysqli support (Requires mysql > 4.1)
44 %bcond_without  odbc            # without ODBC extension module
45 %bcond_without  openssl         # without OpenSSL support and OpenSSL extension (module)
46 %bcond_without  pcre            # without PCRE extension module
47 %bcond_without  pgsql           # without PostgreSQL extension module
48 %bcond_without  phar            # without phar extension module
49 %bcond_without  pspell          # without pspell extension module
50 %bcond_without  recode          # without recode extension module
51 %bcond_without  snmp            # without SNMP extension module
52 %bcond_without  sqlite          # without SQLite extension module
53 %bcond_without  sqlite3         # without SQLite3 extension module
54 %bcond_without  sybase_ct       # without Sybase-CT extension module
55 %bcond_without  tidy            # without Tidy extension module
56 %bcond_without  wddx            # without WDDX extension module
57 %bcond_without  xmlrpc          # without XML-RPC extension module
58 %bcond_without  apache1         # disable building Apache 1.3.x module
59 %bcond_without  apache2         # disable building Apache 2.x module
60 %bcond_without  zts             # disable Zend Thread Safety
61 %bcond_without  fpm             # fpm patches from http://www.php-fpm.org/
62 %bcond_without  suhosin         # with suhosin patch
63 %bcond_with     tests           # default off; test process very often hangs on builders, approx run time 45m; perform "make test"
64 %bcond_with     type_hints      # experimental support for strict typing/casting
65
66 %define apxs1           /usr/sbin/apxs1
67 %define apxs2           /usr/sbin/apxs
68
69 # some problems with apache 2.x
70 %if %{with apache2}
71 %undefine       with_mm
72 %endif
73
74 %ifnarch %{ix86} %{x8664} sparc sparcv9 alpha
75 # ppc disabled (broken on th-ppc)
76 %undefine       with_interbase
77 %endif
78
79 %ifnarch %{ix86} %{x8664}
80 # unsupported, see sapi/cgi/fpm/fpm_atomic.h
81 %undefine       with_fpm
82 %endif
83
84 %if %{without apache1} && %{without apache2}
85 ERROR: You need to select at least one Apache SAPI to build shared modules.
86 %endif
87
88 # filter depends on pcre
89 %if %{without pcre}
90 %undefine       with_filter
91 %endif
92
93 %define         rel             2
94 Summary:        PHP: Hypertext Preprocessor
95 Summary(fr.UTF-8):      Le langage de script embarque-HTML PHP
96 Summary(pl.UTF-8):      Język skryptowy PHP
97 Summary(pt_BR.UTF-8):   A linguagem de script PHP
98 Summary(ru.UTF-8):      PHP Версии 5 - язык препроцессирования HTML-файлов, выполняемый на сервере
99 Summary(uk.UTF-8):      PHP Версії 5 - мова препроцесування HTML-файлів, виконувана на сервері
100 Name:           php
101 Version:        5.3.2
102 Release:        %{rel}%{?with_type_hints:th}
103 Epoch:          4
104 License:        PHP
105 Group:          Libraries
106 Source0:        http://www.php.net/distributions/%{name}-%{version}.tar.bz2
107 # Source0-md5:  46f500816125202c48a458d0133254a4
108 Source2:        %{name}-mod_%{name}.conf
109 Source3:        %{name}-cgi-fcgi.ini
110 Source4:        %{name}-apache.ini
111 Source5:        %{name}-cli.ini
112 # Taken from: http://browsers.garykeith.com/downloads.asp
113 Source9:        %{name}_browscap.ini
114 Source10:       %{name}-fpm.init
115 Source11:       %{name}-fpm.logrotate
116 Source12:       %{name}-branch.sh
117 Source13:       dep-tests.sh
118 Source14:       skip-tests.sh
119 Patch0:         %{name}-shared.patch
120 Patch1:         %{name}-pldlogo.patch
121 Patch2:         %{name}-mail.patch
122 Patch3:         %{name}-link-libs.patch
123 Patch4:         %{name}-libpq_fs_h_path.patch
124 Patch5:         %{name}-filter-shared.patch
125 Patch6:         %{name}-build_modules.patch
126 Patch7:         %{name}-sapi-ini-file.patch
127 Patch8:         %{name}-config-file-scan-dir.patch
128 Patch9:         %{name}-sh.patch
129 Patch10:        %{name}-ini.patch
130 %if %{with type_hints}
131 Patch12:        http://ilia.ws/patch/type_hint_53_v2.txt
132 %endif
133 Patch14:        %{name}-no_pear_install.patch
134 Patch15:        %{name}-zlib.patch
135 Patch17:        %{name}-readline.patch
136 Patch18:        %{name}-nohttpd.patch
137 Patch19:        %{name}-gd_imagerotate_enable.patch
138 Patch20:        %{name}-uint32_t.patch
139 Patch21:        %{name}-dba-link.patch
140 Patch22:        %{name}-both-apxs.patch
141 Patch23:        %{name}-builddir.patch
142 Patch24:        %{name}-zlib-for-getimagesize.patch
143 Patch25:        %{name}-stupidapache_version.patch
144 Patch26:        %{name}-pear.patch
145 Patch27:        %{name}-config-dir.patch
146 Patch29:        %{name}-fcgi-graceful.patch
147 Patch31:        %{name}-fcgi-error_log-no-newlines.patch
148 Patch32:        %{name}-curl-limit-speed.patch
149 Patch34:        %{name}-libtool.patch
150 Patch35:        %{name}-tds.patch
151 Patch36:        %{name}-mysql-charsetphpini.patch
152 Patch37:        %{name}-mysqli-charsetphpini.patch
153 Patch38:        %{name}-pdo_mysql-charsetphpini.patch
154 Patch39:        %{name}-use-prog_sendmail.patch
155 Patch40:        %{name}-fpm.patch
156 Patch41:        %{name}-fpm-config.patch
157 Patch42:        %{name}-fpm-shared.patch
158 Patch43:        %{name}-silent-session-cleanup.patch
159 Patch44:        %{name}-include_path.patch
160 Patch45:        %{name}-imap-annotations.patch
161 Patch46:        %{name}-imap-myrights.patch
162 Patch47:        suhosin.patch
163 Patch49:        %{name}-m4-divert.patch
164 Patch50:        extension-shared-optional-dep.patch
165 Patch51:        spl-shared.patch
166 Patch52:        pcre-shared.patch
167 Patch53:        fix-test-run.patch
168 Patch54:        mysqlnd-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 >= 1:2.7.6-4
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 mysqlnd
943 Summary:        MySQL Native Client Driver for PHP
944 Group:          Libraries
945 URL:            http://www.php.net/manual/en/book.mysqlnd.php
946 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
947 Provides:       php(mysqlnd)
948
949 %description mysqlnd
950 MySQL Native Driver is a replacement for the MySQL Client Library
951 (libmysql).
952
953 Because MySQL Native Driver is written as a PHP extension, it is
954 tightly coupled to the workings of PHP. This leads to gains in
955 efficiency, especially when it comes to memory usage, as the driver
956 uses the PHP memory management system. It also supports the PHP memory
957 limit. Using MySQL Native Driver leads to comparable or better
958 performance than using MySQL Client Library, it always ensures the
959 most efficient use of memory. One example of the memory efficiency is
960 the fact that when using the MySQL Client Library, each row is stored
961 in memory twice, whereas with the MySQL Native Driver each row is only
962 stored once in memory.
963
964 %package mysql
965 Summary:        MySQL database module for PHP
966 Summary(pl.UTF-8):      Moduł bazy danych MySQL dla PHP
967 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam bancos de dados MySQL
968 Group:          Libraries
969 URL:            http://www.php.net/manual/en/book.mysql.php
970 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
971 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
972 Provides:       php(mysql)
973
974 %description mysql
975 This is a dynamic shared object (DSO) for PHP that will add MySQL
976 database support.
977
978 %description mysql -l pl.UTF-8
979 Moduł PHP umożliwiający dostęp do bazy danych MySQL.
980
981 %description mysql -l pt_BR.UTF-8
982 Um módulo para aplicações PHP que usam bancos de dados MySQL.
983
984 %package mysqli
985 Summary:        MySQLi module for PHP
986 Summary(pl.UTF-8):      Moduł MySQLi dla PHP
987 Group:          Libraries
988 URL:            http://www.php.net/manual/en/book.mysqli.php
989 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
990 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
991 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
992 Provides:       php(mysqli)
993
994 %description mysqli
995 This is a dynamic shared object (DSO) for PHP that will add MySQLi
996 (Improved MySQL) support. The difference between it and mysql module
997 is that it provides access to functionality of MySQL 4.1 and above.
998
999 %description mysqli -l pl.UTF-8
1000 Moduł PHP umożliwiający udoskonalony dostęp do bazy danych MySQL.
1001 Różnicą między nim a modułem mysql jest dostęp do funkcjonalności
1002 MySQL w wersji 4.1 i nowszych.
1003
1004 %package oci8
1005 Summary:        Oracle 8+ database module for PHP
1006 Summary(pl.UTF-8):      Moduł bazy danych Oracle 8+ dla PHP
1007 Group:          Libraries
1008 URL:            http://www.php.net/manual/en/book.oci8.php
1009 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1010 Provides:       php(oci8)
1011 AutoReq:        false
1012
1013 %description oci8
1014 This is a dynamic shared object (DSO) for PHP that will add Oracle 7,
1015 8, 9 and 10 database support through Oracle8 Call-Interface (OCI8).
1016
1017 %description oci8 -l pl.UTF-8
1018 Moduł PHP umożliwiający dostęp do bazy danych Oracle 7, 8, 9 i 10
1019 poprzez interfejs Oracle8 Call-Interface (OCI8).
1020
1021 %package odbc
1022 Summary:        ODBC extension module for PHP
1023 Summary(pl.UTF-8):      Moduł ODBC dla PHP
1024 Summary(pt_BR.UTF-8):   Um módulo para aplicações PHP que usam bases de dados ODBC
1025 Group:          Libraries
1026 URL:            http://www.php.net/manual/en/book.uodbc.php
1027 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1028 Requires:       unixODBC >= 2.1.1-3
1029 Provides:       php(odbc)
1030
1031 %description odbc
1032 This is a dynamic shared object (DSO) for PHP that will add ODBC
1033 support.
1034
1035 %description odbc -l pl.UTF-8
1036 Moduł PHP ze wsparciem dla ODBC.
1037
1038 %description odbc -l pt_BR.UTF-8
1039 Um módulo para aplicações PHP que usam ODBC.
1040
1041 %package openssl
1042 Summary:        OpenSSL extension module for PHP
1043 Summary(pl.UTF-8):      Moduł OpenSSL dla PHP
1044 Group:          Libraries
1045 URL:            http://www.php.net/manual/en/book.openssl.php
1046 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1047 Provides:       php(openssl)
1048
1049 %description openssl
1050 This is a dynamic shared object (DSO) for PHP that will add OpenSSL
1051 support.
1052
1053 %description openssl -l pl.UTF-8
1054 Moduł PHP umożliwiający korzystanie z biblioteki OpenSSL.
1055
1056 %package pcntl
1057 Summary:        Process Control extension module for PHP
1058 Summary(pl.UTF-8):      Moduł Process Control dla PHP
1059 Group:          Libraries
1060 URL:            http://www.php.net/manual/en/book.pcntl.php
1061 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1062 Provides:       php(pcntl)
1063
1064 %description pcntl
1065 This is a dynamic shared object (DSO) for PHP that will add process
1066 spawning and control support. It supports functions like fork(),
1067 waitpid(), signal() etc.
1068
1069 %description pcntl -l pl.UTF-8
1070 Moduł PHP umożliwiający tworzenie nowych procesów i kontrolę nad nimi.
1071 Obsługuje funkcje takie jak fork(), waitpid(), signal() i podobne.
1072
1073 %package pcre
1074 Summary:        PCRE extension module for PHP
1075 Summary(pl.UTF-8):      Moduł PCRE dla PHP
1076 Group:          Libraries
1077 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1078 Provides:       php(pcre)
1079
1080 %description pcre
1081 This is a dynamic shared object (DSO) for PHP that will add Perl
1082 Compatible Regular Expression support.
1083
1084 %description pcre -l pl.UTF-8
1085 Moduł PHP umożliwiający korzystanie z perlowych wyrażeń regularnych
1086 (Perl Compatible Regular Expressions)
1087
1088 %package pdo
1089 Summary:        PHP Data Objects (PDO)
1090 Summary(pl.UTF-8):      Obsługa PHP Data Objects (PDO)
1091 Group:          Libraries
1092 URL:            http://www.php.net/manual/en/book.pdo.php
1093 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1094 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1095 Provides:       php(pdo)
1096 Obsoletes:      php-pecl-PDO
1097
1098 %description pdo
1099 This is a dynamic shared object (DSO) for PHP that will add PDO
1100 support.
1101
1102 %description pdo -l pl.UTF-8
1103 Moduł PHP dodający obsługę PDO (PHP Data Objects).
1104
1105 %package pdo-dblib
1106 Summary:        PHP Data Objects (PDO) FreeTDS support
1107 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą FreeTDS
1108 Group:          Libraries
1109 URL:            http://www.php.net/manual/en/ref.pdo-dblib.php
1110 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1111 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1112 Provides:       php(dblib)
1113
1114 %description pdo-dblib
1115 This is a dynamic shared object (DSO) for PHP that will add PDO
1116 FreeTDS support.
1117
1118 %description pdo-dblib -l pl.UTF-8
1119 Moduł dla PHP dodający obsługę baz danych FreeTDS za pośrednictwem
1120 interfejsu PDO.
1121
1122 %package pdo-firebird
1123 Summary:        PHP Data Objects (PDO) Firebird support
1124 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Firebirda
1125 Group:          Libraries
1126 URL:            http://www.php.net/manual/en/ref.pdo-firebird.php
1127 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1128 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1129 Provides:       php(pdo-firebird)
1130 Obsoletes:      php-pecl-PDO_FIREBIRD
1131
1132 %description pdo-firebird
1133 This is a dynamic shared object (DSO) for PHP that will add PDO
1134 Firebird support.
1135
1136 %description pdo-firebird -l pl.UTF-8
1137 Moduł dla PHP dodający obsługę baz danych Firebird za pośrednictwem
1138 interfejsu PDO.
1139
1140 %package pdo-mysql
1141 Summary:        PHP Data Objects (PDO) MySQL support
1142 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą MySQL-a
1143 Group:          Libraries
1144 URL:            http://www.php.net/manual/en/ref.pdo-mysql.php
1145 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1146 %{?with_mysqlnd:Requires:       %{name}-mysqlnd = %{epoch}:%{version}-%{release}}
1147 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1148 Provides:       php(pdo-mysql)
1149 Obsoletes:      php-pecl-PDO_MYSQL
1150
1151 %description pdo-mysql
1152 This is a dynamic shared object (DSO) for PHP that will add PDO MySQL
1153 support.
1154
1155 %description pdo-mysql -l pl.UTF-8
1156 Moduł dla PHP dodający obsługę baz danych MySQL za pośrednictwem
1157 interfejsu PDO.
1158
1159 %package pdo-oci
1160 Summary:        PHP Data Objects (PDO) Oracle support
1161 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą Oracle'a
1162 Group:          Libraries
1163 URL:            http://www.php.net/manual/en/ref.pdo-oci.php
1164 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1165 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1166 Provides:       php(pdo-oci)
1167 Obsoletes:      php-pecl-PDO_OCI
1168
1169 %description pdo-oci
1170 This is a dynamic shared object (DSO) for PHP that will add PDO Oracle
1171 support.
1172
1173 %description pdo-oci -l pl.UTF-8
1174 Moduł dla PHP dodający obsługę baz danych Oracle za pośrednictwem
1175 interfejsu PDO.
1176
1177 %package pdo-odbc
1178 Summary:        PHP Data Objects (PDO) ODBC support
1179 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą ODBC
1180 Group:          Libraries
1181 URL:            http://www.php.net/manual/en/ref.pdo-odbc.php
1182 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1183 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1184 Provides:       php(pdo-odbc)
1185 Obsoletes:      php-pecl-PDO_ODBC
1186
1187 %description pdo-odbc
1188 This is a dynamic shared object (DSO) for PHP that will add PDO ODBC
1189 support.
1190
1191 %description pdo-odbc -l pl.UTF-8
1192 Moduł dla PHP dodający obsługę baz danych ODBC za pośrednictwem
1193 interfejsu PDO.
1194
1195 %package pdo-pgsql
1196 Summary:        PHP Data Objects (PDO) PostgreSQL support
1197 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą PostgreSQL-a
1198 Group:          Libraries
1199 URL:            http://www.php.net/manual/en/ref.pdo-pgsql.php
1200 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1201 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1202 Provides:       php(pdo-pgsql)
1203 Provides:       php-pecl-PDO_PGSQL
1204 Obsoletes:      php-pecl-PDO_PGSQL
1205
1206 %description pdo-pgsql
1207 This is a dynamic shared object (DSO) for PHP that will add PDO
1208 PostgreSQL support.
1209
1210 %description pdo-pgsql -l pl.UTF-8
1211 Moduł dla PHP dodający obsługę baz danych PostgreSQL za pośrednictwem
1212 interfejsu PDO.
1213
1214 %package pdo-sqlite
1215 Summary:        PHP Data Objects (PDO) SQLite support
1216 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą SQLite
1217 Group:          Libraries
1218 URL:            http://www.php.net/manual/en/ref.pdo-sqlite.php
1219 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1220 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1221 Provides:       php(pdo-sqlite)
1222 Obsoletes:      php-pecl-PDO_SQLITE
1223
1224 %description pdo-sqlite
1225 This is a dynamic shared object (DSO) for PHP that will add PDO SQLite
1226 support.
1227
1228 %description pdo-sqlite -l pl.UTF-8
1229 Moduł dla PHP dodający obsługę baz danych SQLite za pośrednictwem
1230 interfejsu PDO.
1231
1232 %package pgsql
1233 Summary:        PostgreSQL database module for PHP
1234 Summary(pl.UTF-8):      Moduł bazy danych PostgreSQL dla PHP
1235 Group:          Libraries
1236 URL:            http://www.php.net/manual/en/book.pgsql.php
1237 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1238 Provides:       php(pgsql)
1239
1240 %description pgsql
1241 This is a dynamic shared object (DSO) for PHP that will add PostgreSQL
1242 database support.
1243
1244 %description pgsql -l pl.UTF-8
1245 Moduł PHP umożliwiający dostęp do bazy danych PostgreSQL.
1246
1247 %description pgsql -l pt_BR.UTF-8
1248 Um módulo para aplicações PHP que usam bancos de dados postgresql.
1249
1250 %package phar
1251 Summary:        phar database module for PHP
1252 Summary(pl.UTF-8):      Moduł phar dla PHP
1253 Group:          Libraries
1254 URL:            http://www.php.net/manual/en/book.phar.php
1255 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1256 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1257 Provides:       php(phar)
1258
1259 %description phar
1260 This is a dynamic shared object (DSO) for PHP that will add phar
1261 archive a support.
1262
1263 %description phar -l pl.UTF-8
1264 Moduł PHP umożliwiający dostęp do achiwów .phar.
1265
1266 %package posix
1267 Summary:        POSIX extension module for PHP
1268 Summary(pl.UTF-8):      Moduł POSIX dla PHP
1269 Group:          Libraries
1270 URL:            http://www.php.net/manual/en/book.posix.php
1271 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1272 Provides:       php(posix)
1273
1274 %description posix
1275 This is a dynamic shared object (DSO) for PHP that will add POSIX
1276 functions support to PHP.
1277
1278 %description posix -l pl.UTF-8
1279 Moduł PHP umożliwiający korzystanie z funkcji POSIX.
1280
1281 %package pspell
1282 Summary:        pspell extension module for PHP
1283 Summary(pl.UTF-8):      Moduł pspell dla PHP
1284 Group:          Libraries
1285 URL:            http://www.php.net/manual/en/book.pspell.php
1286 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1287 Provides:       php(pspell)
1288
1289 %description pspell
1290 This is a dynamic shared object (DSO) for PHP that will add pspell
1291 support to PHP. It allows to check the spelling of a word and offer
1292 suggestions.
1293
1294 %description pspell -l pl.UTF-8
1295 Moduł PHP umożliwiający korzystanie z pspella. Pozwala on na
1296 sprawdzanie pisowni słowa i sugerowanie poprawek.
1297
1298 %package readline
1299 Summary:        readline extension module for PHP
1300 Summary(pl.UTF-8):      Moduł readline dla PHP
1301 Group:          Libraries
1302 URL:            http://www.php.net/manual/en/book.readline.php
1303 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
1304 Provides:       php(readline)
1305
1306 %description readline
1307 This PHP module adds support for readline functions (only for cli and
1308 cgi SAPIs).
1309
1310 %description readline -l pl.UTF-8
1311 Moduł PHP dodający obsługę funkcji readline (tylko do SAPI cli i cgi).
1312
1313 %package recode
1314 Summary:        recode extension module for PHP
1315 Summary(pl.UTF-8):      Moduł recode dla PHP
1316 Group:          Libraries
1317 URL:            http://www.php.net/manual/en/book.recode.php
1318 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1319 Requires:       recode >= 3.5d-3
1320 Provides:       php(recode)
1321
1322 %description recode
1323 This is a dynamic shared object (DSO) for PHP that will add recode
1324 support.
1325
1326 %description recode -l pl.UTF-8
1327 Moduł PHP dodający możliwość konwersji kodowania plików (poprzez
1328 bibliotekę recode).
1329
1330 %package session
1331 Summary:        session extension module for PHP
1332 Summary(pl.UTF-8):      Moduł session dla PHP
1333 Group:          Libraries
1334 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1335 Suggests:       %{name}-hash = %{epoch}:%{version}-%{release}
1336 Provides:       php(session)
1337
1338 %description session
1339 This is a dynamic shared object (DSO) for PHP that will add session
1340 support.
1341
1342 %description session -l pl.UTF-8
1343 Moduł PHP dodający obsługę sesji.
1344
1345 %package shmop
1346 Summary:        Shared Memory Operations extension module for PHP
1347 Summary(pl.UTF-8):      Moduł shmop dla PHP
1348 Group:          Libraries
1349 URL:            http://www.php.net/manual/en/book.shmop.php
1350 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1351 Provides:       php(shmop)
1352
1353 %description shmop
1354 This is a dynamic shared object (DSO) for PHP that will add Shared
1355 Memory Operations support.
1356
1357 %description shmop -l pl.UTF-8
1358 Moduł PHP umożliwiający korzystanie z pamięci dzielonej.
1359
1360 %package simplexml
1361 Summary:        Simple XML extension module for PHP
1362 Summary(pl.UTF-8):      Moduł prostego rozszerzenia XML dla PHP
1363 Group:          Libraries
1364 URL:            http://www.php.net/manual/en/book.simplexml.php
1365 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1366 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1367 Provides:       php(simplexml)
1368
1369 %description simplexml
1370 This is a dynamic shared object (DSO) for PHP that will add Simple XML
1371 support.
1372
1373 %description simplexml -l pl.UTF-8
1374 Moduł PHP dodający obsługę prostego XML-a.
1375
1376 %package snmp
1377 Summary:        SNMP extension module for PHP
1378 Summary(pl.UTF-8):      Moduł SNMP dla PHP
1379 Group:          Libraries
1380 URL:            http://www.php.net/manual/en/book.snmp.php
1381 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1382 Requires:       %{name}-sockets = %{epoch}:%{version}-%{release}
1383 Provides:       php(snmp)
1384
1385 %description snmp
1386 This is a dynamic shared object (DSO) for PHP that will add SNMP
1387 support.
1388
1389 %description snmp -l pl.UTF-8
1390 Moduł PHP dodający obsługę SNMP.
1391
1392 %package soap
1393 Summary:        soap extension module for PHP
1394 Summary(pl.UTF-8):      Moduł soap dla PHP
1395 Group:          Libraries
1396 URL:            http://www.php.net/manual/en/book.soap.php
1397 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1398 Provides:       php(soap)
1399
1400 %description soap
1401 This is a dynamic shared object (DSO) for PHP that will add SOAP/WSDL
1402 support.
1403
1404 %description soap -l pl.UTF-8
1405 Moduł PHP dodający obsługę SOAP/WSDL.
1406
1407 %package sockets
1408 Summary:        sockets extension module for PHP
1409 Summary(pl.UTF-8):      Moduł socket dla PHP
1410 Group:          Libraries
1411 URL:            http://www.php.net/manual/en/book.sockets.php
1412 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1413 Provides:       php(sockets)
1414
1415 %description sockets
1416 This is a dynamic shared object (DSO) for PHP that will add sockets
1417 support.
1418
1419 %description sockets -l pl.UTF-8
1420 Moduł PHP dodający obsługę gniazdek.
1421
1422 %package spl
1423 Summary:        Standard PHP Library module for PHP
1424 Summary(pl.UTF-8):      Moduł SPL dla PHP
1425 Group:          Libraries
1426 URL:            http://php.net/manual/en/book.spl.php
1427 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1428 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
1429 Requires:       %{name}-simplexml = %{epoch}:%{version}-%{release}
1430 Provides:       php(spl)
1431
1432 %description spl
1433 This is a dynamic shared object (DSO) for PHP that will add Standard
1434 PHP Library support.
1435
1436 %description spl -l pl.UTF-8
1437 Moduł PHP dodający obsługę gniazdek.
1438
1439 %package sqlite
1440 Summary:        SQLite extension module for PHP
1441 Summary(pl.UTF-8):      Moduł SQLite dla PHP
1442 Group:          Libraries
1443 URL:            http://www.php.net/manual/en/book.sqlite.php
1444 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1445 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1446 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1447 Provides:       php(sqlite)
1448
1449 %description sqlite
1450 SQLite is a C library that implements an embeddable SQL database
1451 engine. Programs that link with the SQLite library can have SQL
1452 database access without running a separate RDBMS process.
1453
1454 SQLite is not a client library used to connect to a big database
1455 server. SQLite is the server. The SQLite library reads and writes
1456 directly to and from the database files on disk.
1457
1458 %description sqlite -l pl.UTF-8
1459 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1460 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1461 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1462 RDBMS.
1463
1464 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1465 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1466 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1467 dysku.
1468
1469 %package sqlite3
1470 Summary:        SQLite3 extension module for PHP
1471 Summary(pl.UTF-8):      Moduł SQLite3 dla PHP
1472 Group:          Libraries
1473 URL:            http://php.net/manual/en/book.sqlite3.php
1474 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1475 Provides:       php(sqlite3)
1476
1477 %description sqlite3
1478 SQLite is a C library that implements an embeddable SQL database
1479 engine. Programs that link with the SQLite library can have SQL
1480 database access without running a separate RDBMS process.
1481
1482 SQLite is not a client library used to connect to a big database
1483 server. SQLite is the server. The SQLite library reads and writes
1484 directly to and from the database files on disk.
1485
1486 %description sqlite3 -l pl.UTF-8
1487 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1488 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1489 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1490 RDBMS.
1491
1492 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1493 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1494 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1495 dysku.
1496
1497 %package sybase-ct
1498 Summary:        Sybase-CT extension module for PHP
1499 Summary(pl.UTF-8):      Moduł Sybase-CT dla PHP
1500 Group:          Libraries
1501 URL:            http://www.php.net/manual/en/book.sybase.php
1502 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1503 Provides:       php(sybase-ct)
1504 Obsoletes:      php-sybase
1505 Conflicts:      php-sybase
1506
1507 %description sybase-ct
1508 This is a dynamic shared object (DSO) for PHP that will add Sybase and
1509 MS SQL databases support through CT-lib.
1510
1511 %description sybase-ct -l pl.UTF-8
1512 Moduł PHP dodający obsługę baz danych Sybase oraz MS SQL poprzez
1513 CT-lib.
1514
1515 %package sysvmsg
1516 Summary:        SysV msg extension module for PHP
1517 Summary(pl.UTF-8):      Moduł SysV msg dla PHP
1518 Group:          Libraries
1519 URL:            http://www.php.net/manual/en/book.sem.php
1520 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1521 Provides:       php(sysvmsg)
1522
1523 %description sysvmsg
1524 This is a dynamic shared object (DSO) for PHP that will add SysV
1525 message queues support.
1526
1527 %description sysvmsg -l pl.UTF-8
1528 Moduł PHP umożliwiający korzystanie z kolejek komunikatów SysV.
1529
1530 %package sysvsem
1531 Summary:        SysV sem extension module for PHP
1532 Summary(pl.UTF-8):      Moduł SysV sem dla PHP
1533 Group:          Libraries
1534 URL:            http://www.php.net/manual/en/book.sem.php
1535 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1536 Provides:       php(sysvsem)
1537
1538 %description sysvsem
1539 This is a dynamic shared object (DSO) for PHP that will add SysV
1540 semaphores support.
1541
1542 %description sysvsem -l pl.UTF-8
1543 Moduł PHP umożliwiający korzystanie z semaforów SysV.
1544
1545 %package sysvshm
1546 Summary:        SysV shm extension module for PHP
1547 Summary(pl.UTF-8):      Moduł SysV shm dla PHP
1548 Group:          Libraries
1549 URL:            http://www.php.net/manual/en/book.shmop.php
1550 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1551 Provides:       php(sysvshm)
1552
1553 %description sysvshm
1554 This is a dynamic shared object (DSO) for PHP that will add SysV
1555 Shared Memory support.
1556
1557 %description sysvshm -l pl.UTF-8
1558 Moduł PHP umożliwiający korzystanie z pamięci dzielonej SysV.
1559
1560 %package tests
1561 Summary:        Contains unit test files for PHP and extensions
1562 Summary(pl.UTF-8):      Zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1563 Group:          Libraries
1564 URL:            http://qa.php.net/
1565 Requires:       %{name}-cli
1566
1567 %description tests
1568 This package contains unit tests for PHP and it's extensions.
1569
1570 %description tests -l pl.UTF-8
1571 Ten pakiet zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1572
1573 %package tidy
1574 Summary:        Tidy extension module for PHP
1575 Summary(pl.UTF-8):      Moduł Tidy dla PHP
1576 Group:          Libraries
1577 URL:            http://www.php.net/manual/en/book.tidy.php
1578 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1579 Requires:       tidy
1580 Provides:       php(tidy)
1581
1582 %description tidy
1583 This is a dynamic shared object (DSO) for PHP that will add Tidy
1584 support.
1585
1586 %description tidy -l pl.UTF-8
1587 Moduł PHP umożliwiający korzystanie z tidy.
1588
1589 %package tokenizer
1590 Summary:        tokenizer extension module for PHP
1591 Summary(pl.UTF-8):      Moduł rozszerzenia tokenizer dla PHP
1592 Group:          Libraries
1593 URL:            http://www.php.net/manual/en/book.tokenizer.php
1594 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1595 Provides:       php(tokenizer)
1596
1597 %description tokenizer
1598 This is a dynamic shared object (DSO) for PHP that will add tokenizer
1599 support.
1600
1601 %description tokenizer -l pl.UTF-8
1602 Moduł PHP dodający obsługę tokenizera do PHP.
1603
1604 %package wddx
1605 Summary:        wddx extension module for PHP
1606 Summary(pl.UTF-8):      Moduł wddx dla PHP
1607 Group:          Libraries
1608 URL:            http://www.php.net/manual/en/book.wddx.php
1609 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1610 # - wddx doesn't require session as it's disabled at compile time:
1611 #   if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
1612 #   see also php.spec#rev1.120.2.22
1613 #Requires:      %{name}-session = %{epoch}:%{version}-%{release}
1614 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1615 Provides:       php(wddx)
1616
1617 %description wddx
1618 This is a dynamic shared object (DSO) for PHP that will add wddx
1619 support.
1620
1621 %description wddx -l pl.UTF-8
1622 Moduł PHP umożliwiający korzystanie z wddx.
1623
1624 %package xml
1625 Summary:        XML extension module for PHP
1626 Summary(pl.UTF-8):      Moduł XML dla PHP
1627 Group:          Libraries
1628 URL:            http://www.php.net/manual/en/book.xml.php
1629 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1630 Provides:       php(xml)
1631
1632 %description xml
1633 This is a dynamic shared object (DSO) for PHP that will add XML
1634 support. This extension lets you create XML parsers and then define
1635 handlers for different XML events.
1636
1637 %description xml -l pl.UTF-8
1638 Moduł PHP umożliwiający parsowanie plików XML i obsługę zdarzeń
1639 związanych z tymi plikami. Pozwala on tworzyć analizatory XML-a i
1640 następnie definiować procedury obsługi dla różnych zdarzeń XML.
1641
1642 %package xmlreader
1643 Summary:        XML Reader extension module for PHP
1644 Summary(pl.UTF-8):      Moduł XML Reader dla PHP
1645 Group:          Libraries
1646 URL:            http://www.php.net/manual/en/book.xmlreader.php
1647 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1648 Suggests:       %{name}-dom = %{epoch}:%{version}-%{release}
1649 Provides:       php(xmlreader)
1650
1651 %description xmlreader
1652 This is a dynamic shared object (DSO) for PHP that will add XML Reader
1653 support. The XMLReader extension is an XML Pull parser. The reader
1654 acts as a cursor going forward on the document stream and stopping at
1655 each node on the way.
1656
1657 %description xmlreader -l pl.UTF-8
1658 Moduł PHP umożliwiający analizę plików XML w trybie Pull. Czytnik
1659 działa jako kursor przechodzący przez strumień dokumentu i
1660 zatrzymujący się na każdym węźle po drodze.
1661
1662 %package xmlrpc
1663 Summary:        xmlrpc extension module for PHP
1664 Summary(pl.UTF-8):      Moduł xmlrpc dla PHP
1665 Group:          Libraries
1666 URL:            http://www.php.net/manual/en/book.xmlrpc.php
1667 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1668 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1669 Provides:       php(xmlrpc)
1670
1671 %description xmlrpc
1672 This is a dynamic shared object (DSO) for PHP that will add XMLRPC
1673 support.
1674
1675 %description xmlrpc -l pl.UTF-8
1676 Moduł PHP dodający obsługę XMLRPC.
1677
1678 %package xmlwriter
1679 Summary:        Fast, non-cached, forward-only means to write XML data
1680 Summary(pl.UTF-8):      Szybka, nie cachowana metoda zapisu danych w formacie XML
1681 Group:          Libraries
1682 URL:            http://www.php.net/manual/en/book.xmlwriter.php
1683 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1684 Provides:       php(xmlwriter)
1685 Obsoletes:      php-pecl-xmlwriter
1686
1687 %description xmlwriter
1688 This extension wraps the libxml xmlWriter API. Represents a writer
1689 that provides a non-cached, forward-only means of generating streams
1690 or files containing XML data.
1691
1692 %description xmlwriter -l pl.UTF-8
1693 To rozszerzenie obudowuje API xmlWriter z libxml. Reprezentuje obsługę
1694 zapisu dostarczającą nie cachowanych metod generowania strumieni lub
1695 plików zawierających dane XML.
1696
1697 %package xsl
1698 Summary:        xsl extension module for PHP
1699 Summary(pl.UTF-8):      Moduł xsl dla PHP
1700 Group:          Libraries
1701 URL:            http://www.php.net/manual/en/book.xsl.php
1702 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1703 Requires:       %{name}-dom = %{epoch}:%{version}-%{release}
1704 Requires:       libxslt >= 1.0.18
1705 # actually not true, functionality is similar, but API differs
1706 Provides:       php(xsl)
1707 Obsoletes:      php-xslt <= 3:4.3.8-1
1708
1709 %description xsl
1710 This is a dynamic shared object (DSO) for PHP that will add new XSL
1711 support (using libxslt).
1712
1713 %description xsl -l pl.UTF-8
1714 Moduł PHP dodający nową obsługę XSLT (przy użyciu libxslt).
1715
1716 %package zip
1717 Summary:        Zip management extension
1718 Summary(pl.UTF-8):      Zarządzanie archiwami zip
1719 Group:          Libraries
1720 URL:            http://www.php.net/manual/en/book.zip.php
1721 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1722 Provides:       php(zip)
1723 Obsoletes:      php-pecl-zip
1724
1725 %description zip
1726 Zip is an extension to create, modify and read zip files.
1727
1728 %description zip -l pl.UTF-8
1729 Zip jest rozszerzeniem umożliwiającym tworzenie, modyfikację oraz
1730 odczyt archiwów zip.
1731
1732 %package zlib
1733 Summary:        Zlib extension module for PHP
1734 Summary(pl.UTF-8):      Moduł zlib dla PHP
1735 Group:          Libraries
1736 URL:            http://www.php.net/manual/en/book.zlib.php
1737 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1738 Provides:       php(zlib)
1739
1740 %description zlib
1741 This is a dynamic shared object (DSO) for PHP that will add zlib
1742 compression support to PHP.
1743
1744 %description zlib -l pl.UTF-8
1745 Moduł PHP umożliwiający używanie kompresji zlib.
1746
1747 %prep
1748 %setup -q
1749 # prep for suhosin patch
1750 %{__sed} -i -e 's,\r$,,' Zend/Zend.dsp Zend/ZendTS.dsp
1751 %patch0 -p1
1752 %patch1 -p1
1753 %patch2 -p1
1754 %patch3 -p1
1755 %patch4 -p1
1756 %patch5 -p1
1757 %patch6 -p1
1758 %patch8 -p1
1759 %patch7 -p1
1760 %patch9 -p1
1761 cp php.ini-production php.ini
1762 %patch10 -p1
1763 %if %{with type_hints}
1764 %patch12 -p0
1765 %endif
1766 %patch14 -p1
1767 %patch15 -p1
1768 %patch17 -p1
1769 %patch18 -p1
1770 %if %{with system_gd}
1771 %patch19 -p1
1772 %endif
1773 %patch20 -p1
1774 %patch21 -p1
1775 %patch22 -p1
1776 %patch23 -p1
1777 %patch24 -p1
1778 %patch25 -p1
1779 %patch26 -p1
1780 %patch27 -p1
1781 %patch29 -p1
1782 %patch31 -p1
1783 %patch32 -p1
1784 %if "%{pld_release}" != "ac"
1785 %patch34 -p1
1786 %endif
1787 %patch35 -p1
1788 %patch36 -p1
1789 %patch37 -p1
1790 %patch38 -p1
1791 %patch39 -p1
1792 %if %{with fpm}
1793 %patch40 -p1
1794 %patch41 -p1
1795 %patch42 -p1
1796 %endif
1797 %patch43 -p1
1798 %patch44 -p1
1799 %patch45 -p1
1800 %patch46 -p1
1801 %if %{with suhosin}
1802 %patch47 -p1
1803 %endif
1804 %patch49 -p1
1805 %patch50 -p1
1806 %patch51 -p1
1807 %patch52 -p1
1808 %patch53 -p1
1809 %patch54 -p1
1810
1811 %if "%{pld_release}" != "ac"
1812 sed -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4
1813 %endif
1814
1815 # cleanup backups after patching
1816 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
1817
1818 # conflict seems to be resolved by recode patches
1819 rm -f ext/recode/config9.m4
1820
1821 # remove all bundled libraries not to link with them accidentally
1822 #rm -rf ext/sqlite/libsqlite
1823 rm -rf ext/sqlite3/libsqlite
1824 #rm -rf ext/bcmath/libbcmath
1825 #rm -rf ext/date/lib
1826 #rm -rf ext/dba/libcdb
1827 #rm -rf ext/dba/libflatfile
1828 #rm -rf ext/dba/libinifile
1829 #rm -rf ext/gd/libgd
1830 #rm -rf ext/mbstring/libmbfl
1831 #rm -rf ext/mbstring/oniguruma
1832 rm -rf ext/pcre/pcrelib
1833 rm -rf ext/pdo_sqlite/sqlite
1834 #rm -rf ext/soap/interop
1835 rm -r ext/xmlrpc/libxmlrpc
1836
1837 cp -af Zend/LICENSE{,.Zend}
1838 install -p %{SOURCE13} dep-tests.sh
1839
1840 # breaks build
1841 sed -i -e 's#-fvisibility=hidden##g' configure*
1842
1843 # disable broken tests
1844 # says just "Terminated" twice and fails
1845 mv sapi/cli/tests/022.phpt{,.broken}
1846
1847 sh -xe %{_sourcedir}/skip-tests.sh
1848
1849 %build
1850 API=$(awk '/#define PHP_API_VERSION/{print $3}' main/php.h)
1851 if [ $API != %{php_api_version} ]; then
1852         echo "Set %%define php_api_version to $API and re-run."
1853         exit 1
1854 fi
1855
1856 API=$(awk '/#define ZEND_MODULE_API_NO/{print $3}' Zend/zend_modules.h)
1857 if [ $API != %{zend_module_api} ]; then
1858         echo "Set %%define zend_module_api to $API and re-run."
1859         exit 1
1860 fi
1861
1862 API=$(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' Zend/zend_extensions.h)
1863 if [ $API != %{zend_extension_api} ]; then
1864         echo "Set %%define zend_extension_api to $API and re-run."
1865         exit 1
1866 fi
1867
1868 export EXTENSION_DIR="%{php_extensiondir}"
1869 # configure once (for faster debugging purposes)
1870 if [ ! -f _built-conf ]; then
1871         # now remove Makefile copies
1872         rm -f Makefile.{cgi-fcgi,fpm,cli,apxs1,apxs2,litespeed}
1873         %{__libtoolize}
1874         %{__aclocal}
1875         cp -f /usr/share/automake/config.* .
1876         ./buildconf --force
1877         touch _built-conf
1878 fi
1879 export PROG_SENDMAIL="/usr/lib/sendmail"
1880 export CPPFLAGS="-DDEBUG_FASTCGI -DHAVE_STRNDUP %{rpmcppflags} \
1881         -I%{_includedir}/xmlrpc-epi"
1882
1883 sapis="
1884 cgi-fcgi cli
1885 %if %{with fpm}
1886 fpm
1887 %endif
1888 %if %{with apache1}
1889 apxs1
1890 %endif
1891 %if %{with apache2}
1892 apxs2
1893 %endif
1894 %if %{with litespeed}
1895 litespeed
1896 %endif
1897 "
1898 for sapi in $sapis; do
1899         : SAPI $sapi
1900         # skip if already configured (for faster debugging purposes)
1901         [ -f Makefile.$sapi ] && continue
1902
1903         sapi_args=''
1904         case $sapi in
1905         cgi-fcgi)
1906                 sapi_args='--disable-cli'
1907         ;;
1908         cli)
1909                 sapi_args='--disable-cgi'
1910         ;;
1911         fpm)
1912                 sapi_args='--disable-cli --with-fpm'
1913                 ;;
1914         apxs1)
1915                 ver=$(rpm -q --qf '%{V}' apache1-devel)
1916                 sapi_args="--disable-cli --with-apxs=%{apxs1} --with-apache-version=$ver"
1917         ;;
1918         apxs2)
1919                 ver=$(rpm -q --qf '%{V}' apache-devel)
1920                 sapi_args="--disable-cli --with-apxs2=%{apxs2} --with-apache-version=$ver"
1921         ;;
1922         litespeed)
1923                 sapi_args='--with-litespeed'
1924         ;;
1925         esac
1926
1927         %configure \
1928         $sapi_args \
1929 %if "%{!?configure_cache:0}%{?configure_cache}" == "0"
1930         --cache-file=config.cache \
1931 %endif
1932         --with-libdir=%{_lib} \
1933         --with-config-file-path=%{_sysconfdir} \
1934         --with-config-file-scan-dir=%{_sysconfdir}/conf.d \
1935         --with-exec-dir=%{_bindir} \
1936         --%{!?debug:dis}%{?debug:en}able-debug \
1937         %{?with_zts:--enable-maintainer-zts} \
1938         --enable-inline-optimization \
1939         --enable-bcmath=shared \
1940         --enable-calendar=shared \
1941         --enable-ctype=shared \
1942         --enable-dba=shared \
1943         --enable-dom=shared \
1944         --enable-exif=shared \
1945         --enable-fileinfo=shared \
1946         --enable-ftp=shared \
1947         --enable-gd-native-ttf \
1948         --enable-intl=shared \
1949         --enable-libxml \
1950         --enable-magic-quotes \
1951         --enable-mbstring=shared,all \
1952         --enable-mbregex \
1953         --enable-pcntl=shared \
1954         --enable-pdo=shared \
1955         --enable-json=shared \
1956         --enable-hash=shared \
1957         --enable-xmlwriter=shared \
1958 %if %{with fpm}
1959         --with-libevent=shared \
1960         --with-fpm-conf=%{_sysconfdir}/fpm.conf \
1961         --with-fpm-log=/var/log/fpm.log \
1962         --with-fpm-pid=/var/run/php/fpm.pid \
1963         --with-fpm-port=9000 \
1964         --with-fpm-user=http \
1965         --with-fpm-group=http \
1966 %endif
1967 %if %{with mssql} || %{with sybase_ct}
1968         --with-pdo-dblib=shared \
1969 %endif
1970 %if %{with interbase} && %{without interbase_inst}
1971         --with-pdo-firebird=shared,/usr \
1972 %endif
1973         --with-mysql-sock=/var/lib/mysql/mysql.sock \
1974         --with-pdo-mysql=shared%{?with_mysqlnd:,mysqlnd} \
1975         %{?with_oci8:--with-pdo-oci=shared} \
1976         %{?with_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \
1977         %{?with_pgsql:--with-pdo-pgsql=shared} \
1978         %{?with_sqlite:--with-pdo-sqlite=shared,/usr} \
1979         --without-libexpat-dir \
1980         --enable-overload=shared \
1981         --enable-posix=shared \
1982         --enable-shared \
1983         --enable-session=shared \
1984         --enable-shmop=shared \
1985         --enable-simplexml=shared \
1986         --enable-spl=shared \
1987         --enable-sysvmsg=shared \
1988         --enable-sysvsem=shared \
1989         --enable-sysvshm=shared \
1990         --enable-safe-mode \
1991         --enable-soap=shared \
1992         --enable-sockets=shared \
1993         --enable-tokenizer=shared \
1994         --enable-ucd-snmp-hack \
1995         %{?with_wddx:--enable-wddx=shared} \
1996         --enable-xml=shared \
1997         --enable-xmlreader=shared \
1998         --with-bz2=shared \
1999         %{__with_without curl curl shared} \
2000         --with-db4 \
2001         %{?with_fdf:--with-fdftk=shared} \
2002         --with-iconv=shared \
2003         --with-freetype-dir=shared \
2004         --with-gettext=shared \
2005         --with-gd=shared%{?with_system_gd:,/usr} \
2006         --with-gdbm \
2007         --with-gmp=shared \
2008         %{?with_imap:--with-imap=shared --with-imap-ssl} \
2009         %{?with_interbase:--with-interbase=shared%{!?with_interbase_inst:,/usr}} \
2010         --with-jpeg-dir=/usr \
2011         %{?with_ldap:--with-ldap=shared --with-ldap-sasl} \
2012         --with-mcrypt=shared \
2013         %{?with_mm:--with-mm} \
2014         %{?with_mssql:--with-mssql=shared} \
2015         %{?with_mysqlnd:--with-mysqlnd=shared} \
2016         --with-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2017         %{?with_mysqli:--with-mysqli=shared%{?with_mysqlnd:,mysqlnd}} \
2018         %{?with_oci8:--with-oci8=shared} \
2019         %{?with_openssl:--with-openssl=shared} \
2020         --with-kerberos \
2021         %{__with_without pcre pcre-regex /usr} \
2022         %{__enable_disable filter filter shared} \
2023         --with-pear=%{php_pear_dir} \
2024         %{__with_without pgsql pgsql shared,/usr} \
2025         %{__enable_disable phar phar shared} \
2026         --with-png-dir=/usr \
2027         %{?with_pspell:--with-pspell=shared} \
2028         --with-readline=shared \
2029         %{?with_recode:--with-recode=shared} \
2030         --with-regex=system \
2031         %{?with_snmp:--with-snmp=shared} \
2032         %{?with_sybase_ct:--with-sybase-ct=shared,/usr} \
2033         %{!?with_sqlite:--without-sqlite --without-pdo-sqlite}%{?with_sqlite:--with-sqlite=shared,/usr --enable-sqlite-utf8} \
2034         %{__with_without sqlite3 sqlite3 shared,/usr} \
2035         --with-t1lib=shared \
2036         %{?with_tidy:--with-tidy=shared} \
2037         %{?with_odbc:--with-unixODBC=shared,/usr} \
2038         %{__with_without xmlrpc xmlrpc shared,/usr} \
2039         --with-xsl=shared \
2040         --with-zlib=shared \
2041         --with-zlib-dir=shared,/usr \
2042         --enable-zip=shared,/usr \
2043
2044         # save for debug
2045         cp -f Makefile Makefile.$sapi
2046         cp -f main/php_config.h php_config.h.$sapi
2047         cp -f config.log config.log.$sapi
2048 done
2049
2050 # as we build each SAPI in own make, adjust php-config.in forehead
2051 sapis=$(awk '/^PHP_SAPI = /{print $3}' Makefile.* | sort -u | xargs)
2052 sed -i -e "s,@PHP_INSTALLED_SAPIS@,$sapis," "scripts/php-config.in"
2053
2054 # must make libphp_common first, so modules can link against it.
2055 %{__make} libphp_common.la
2056 %{__make} build-modules
2057
2058 %if %{with apache1}
2059 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache/libphp5.la -f Makefile.apxs1
2060 %endif
2061
2062 %if %{with apache2}
2063 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache2handler/libphp5.la -f Makefile.apxs2
2064 %endif
2065
2066 %if %{with litespeed}
2067 %{__make} -f Makefile.litespeed
2068 %endif
2069
2070 # CGI/FCGI
2071 cp -af php_config.h.cgi-fcgi main/php_config.h
2072 %{__make} -f Makefile.cgi-fcgi
2073 [ "$(echo '<?=php_sapi_name();' | ./sapi/cgi/php-cgi -qn)" = cgi-fcgi ] || exit 1
2074
2075 # PHP FPM
2076 %if %{with fpm}
2077 cp -af php_config.h.fpm main/php_config.h
2078 %{__make} -f Makefile.fpm
2079  ./sapi/fpm/php-fpm -qn -m > /dev/null
2080 %endif
2081
2082 # CLI
2083 cp -af php_config.h.cli main/php_config.h
2084 %{__make} -f Makefile.cli
2085 [ "$(echo '<?=php_sapi_name();' | ./sapi/cli/php -qn)" = cli ] || exit 1
2086
2087 # check for stupid xml parse breakage where &lt; and &gt; just get lost in parse result
2088 ./sapi/cli/php -n -dextension_dir=modules -dextension=xml.so -r '$p = xml_parser_create(); xml_parse_into_struct($p, "<x>&lt;</x>", $vals, $index); exit((int )empty($vals[0]["value"]));'
2089
2090 # Generate stub .ini files for each extension
2091 rm -rf conf.d
2092 install -d conf.d
2093 generate_inifiles() {
2094         for so in modules/*.so; do
2095                 mod=$(basename $so .so)
2096                 conf="$mod.ini"
2097                 # xml needs to be loaded before wddx
2098                 [ "$mod" = "wddx" ] && conf="xml_$mod.ini"
2099                 # pre needs to be loaded before SPL
2100                 [ "$mod" = "pcre" ] && conf="PCRE.ini"
2101                 # spl needs to be loaded before mysqli
2102                 [ "$mod" = "spl" ] && conf="SPL.ini"
2103                 # mysqlnd needs to be loaded before mysql,mysqli,pdo_mysqli
2104                 [ "$mod" = "mysqlnd" ] && conf="MySQLND.ini"
2105                 echo "+ $conf"
2106                 cat > conf.d/$conf <<-EOF
2107                         ; Enable $mod extension module
2108                         extension=$mod.so
2109                 EOF
2110         done
2111 }
2112 generate_inifiles
2113
2114 # Check that the module inner-dependencies are intact
2115 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh > dep-tests.log
2116 if grep -v OK dep-tests.log; then
2117         echo >&2 "The results above were not expected"
2118         exit 1
2119 fi
2120
2121
2122 %if %{with tests}
2123 # Run tests, using the CLI SAPI
2124 cp -af php_config.h.cli main/php_config.h
2125 cp -af Makefile.cli Makefile
2126 export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
2127 unset TZ LANG LC_ALL || :
2128 %{__make} test RUN_TESTS_ARGS="-s test.log"
2129 unset NO_INTERACTION REPORT_EXIT_STATUS MALLOC_CHECK_
2130
2131 # collect failed tests into cleanup script used in prep.
2132 sed -ne '/FAILED TEST SUMMARY/,/^===/p' test.log | sed -e '1,/^---/d;/^===/,$d' > tests-failed.log
2133 sed -ne '/\[.*\]/{s/\(.*\) \[\(.*\)\]/# \1\nmv \2{,.skip}/p}' tests-failed.log \
2134         >> %{_sourcedir}/skip-tests.sh
2135
2136 failed=$(wc -l < tests-failed.log)
2137 if [ "$failed" != 0 ]; then
2138         exit 1
2139 fi
2140 %endif
2141
2142 %install
2143 rm -rf $RPM_BUILD_ROOT
2144 install -d $RPM_BUILD_ROOT{%{_libdir}/{php,apache{,1}},%{_sysconfdir}/{apache,cgi}} \
2145         $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}} \
2146         $RPM_BUILD_ROOT/etc/{apache/conf.d,httpd/conf.d} \
2147         $RPM_BUILD_ROOT%{_mandir}/man1 \
2148
2149 # install the Apache modules' files
2150 %{__make} install-headers install-build install-modules install-programs \
2151         INSTALL_ROOT=$RPM_BUILD_ROOT
2152
2153 # install Apache1 DSO module
2154 %if %{with apache1}
2155 libtool --silent --mode=install install sapi/apache/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache1
2156 %endif
2157
2158 # install Apache2 DSO module
2159 %if %{with apache2}
2160 libtool --silent --mode=install install sapi/apache2handler/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache
2161 %endif
2162
2163 # install litespeed sapi
2164 %if %{with litespeed}
2165 libtool --silent --mode=install install sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/php.litespeed
2166 %endif
2167
2168 libtool --silent --mode=install install libphp_common.la $RPM_BUILD_ROOT%{_libdir}
2169 # fix install paths, avoid evil rpaths
2170 sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la
2171 # better solution?
2172 sed -i -e 's|libphp_common.la|$(libdir)/libphp_common.la|' $RPM_BUILD_ROOT%{_libdir}/php/build/acinclude.m4
2173
2174 # install CGI/FCGI
2175 libtool --silent --mode=install install sapi/cgi/php-cgi $RPM_BUILD_ROOT%{_bindir}/php.cgi
2176 ln -sf php.cgi $RPM_BUILD_ROOT%{_bindir}/php.fcgi
2177
2178 # install FCGI PM
2179 %if %{with fpm}
2180 libtool --silent --mode=install install sapi/fpm/php-fpm $RPM_BUILD_ROOT%{_bindir}/php.fpm
2181 cp -a sapi/fpm/php-fpm.1 $RPM_BUILD_ROOT%{_mandir}/man1/php-fpm.1
2182 cp -a sapi/fpm/php_fpm.conf $RPM_BUILD_ROOT%{_sysconfdir}/fpm.conf
2183 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
2184 install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/php-fpm
2185 install -d $RPM_BUILD_ROOT/etc/logrotate.d
2186 cp -a %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/php-fpm
2187 %endif
2188
2189 # install CLI
2190 libtool --silent --mode=install install sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php.cli
2191 install sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php.1
2192 echo ".so php.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.cli.1
2193 ln -sf php.cli $RPM_BUILD_ROOT%{_bindir}/php
2194
2195 sed -e 's#%{_prefix}/lib/php#%{_libdir}/php#g' php.ini > $RPM_BUILD_ROOT%{_sysconfdir}/php.ini
2196
2197 install -d $RPM_BUILD_ROOT%{_sysconfdir}
2198 cp -a %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/php-cli.ini
2199 cp -a %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/php-cgi-fcgi.ini
2200 cp -a %{SOURCE9} $RPM_BUILD_ROOT%{_sysconfdir}/browscap.ini
2201
2202 %if %{with apache1}
2203 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/apache/conf.d/70_mod_php.conf
2204 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache.ini
2205 rm -f $RPM_BUILD_ROOT%{_libdir}/apache1/libphp5.la
2206 %endif
2207
2208 %if %{with apache2}
2209 cp -a %{SOURCE2} $RPM_BUILD_ROOT/etc/httpd/conf.d/70_mod_php.conf
2210 cp -a %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache2handler.ini
2211 rm -f $RPM_BUILD_ROOT%{_libdir}/apache/libphp5.la
2212 %endif
2213
2214 install -d $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2215 cp -a conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2216
2217 # per SAPI ini directories
2218 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{cgi-fcgi,cli,apache,apache2handler}.d
2219
2220 # for CLI SAPI only
2221 mv $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d}
2222
2223 # use system automake and {lib,sh}tool
2224 %if "%{pld_release}" != "ac"
2225         ln -snf /usr/share/automake/config.{guess,sub} $RPM_BUILD_ROOT%{_libdir}/php/build
2226         for i in libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4; do
2227                 ln -snf %{_aclocaldir}/${i} $RPM_BUILD_ROOT%{_libdir}/php/build
2228         done
2229         ln -snf %{_datadir}/libtool/config/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2230 %else
2231         ln -snf %{_aclocaldir}/libtool.m4 $RPM_BUILD_ROOT%{_libdir}/php/build
2232         ln -snf %{_datadir}/libtool/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2233 %endif
2234 ln -snf %{_bindir}/shtool $RPM_BUILD_ROOT%{_libdir}/php/build
2235
2236 # as a result of ext/pcre/pcrelib removal in %%prep, ext/pcre/php_pcre.h
2237 # isn't installed by install-headers make target, we do it manually here.
2238 # this header file is required by e.g. filter PECL extension
2239 install -D ext/pcre/php_pcre.h $RPM_BUILD_ROOT%{_includedir}/php/ext/pcre/php_pcre.h
2240 # for php-pecl-mailparse
2241 install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2242 cp -a ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2243
2244 # tests
2245 install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2246 install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php
2247 cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2248
2249 %clean
2250 rm -rf $RPM_BUILD_ROOT
2251
2252 %post -n apache1-mod_php
2253 if [ "$1" = "1" ]; then
2254         %service -q apache restart
2255 fi
2256
2257 %postun -n apache1-mod_php
2258 if [ "$1" = "0" ]; then
2259         %service -q apache restart
2260 fi
2261
2262 %post -n apache-mod_php
2263 if [ "$1" = "1" ]; then
2264         %service -q httpd restart
2265 fi
2266
2267 %postun -n apache-mod_php
2268 if [ "$1" = "0" ]; then
2269         %service -q httpd restart
2270 fi
2271
2272 %pre fpm
2273 %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http
2274
2275 %post fpm
2276 /sbin/chkconfig --add php-fpm
2277 %service php-fpm restart
2278
2279 %preun fpm
2280 if [ "$1" = 0 ]; then
2281         %service php-fpm stop
2282         /sbin/chkconfig --del php-fpm
2283 fi
2284
2285 %postun fpm
2286 if [ "$1" = "0" ]; then
2287         %userremove http
2288 fi
2289
2290 %post   common -p /sbin/ldconfig
2291 %postun common -p /sbin/ldconfig
2292
2293 %posttrans common
2294 # minimizing apache restarts logics. we restart webserver:
2295 #
2296 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2297 # 2. first install of extension (post: $1 = 1)
2298 # 2. uninstall of extension (postun: $1 == 0)
2299 #
2300 # the strict internal deps between extensions (and apache modules) and
2301 # common package are very important for all this to work.
2302
2303 # restart webserver at the end of transaction
2304 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart
2305 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart
2306
2307 %if %{with apache1}
2308 %triggerpostun -n apache1-mod_php -- php < 4:5.0.4-9.11
2309 sed -i -e '
2310         /^AddType application\/x-httpd-php \.php/s,^,#,
2311         /^\(Add\|Load\)Module.*php5\.\(so\|c\)/d
2312 ' /etc/apache/apache.conf
2313 %service -q apache restart
2314 %endif
2315
2316 %if %{with apache2}
2317 %triggerpostun -n apache-mod_php -- php < 4:5.0.4-7.1
2318 # for fixed php-SAPI.ini, the poor php-apache.ini was never read for apache2
2319 if [ -f %{_sysconfdir}/php-apache.ini.rpmsave ]; then
2320         cp -f %{_sysconfdir}/php-apache2handler.ini{,.rpmnew}
2321         mv -f %{_sysconfdir}/php-apache.ini.rpmsave %{_sysconfdir}/php-apache2handler.ini
2322 fi
2323 %endif
2324
2325 # common macros called at extension post/postun scriptlet
2326 %define extension_scripts() \
2327 %post %1 \
2328 if [ "$1" = "1" ]; then \
2329         %php_webserver_restart \
2330 fi \
2331 \
2332 %postun %1 \
2333 if [ "$1" = "0" ]; then \
2334         %php_webserver_restart \
2335 fi
2336 %{nil}
2337
2338 # extension scripts defines
2339 %extension_scripts bcmath
2340 %extension_scripts bzip2
2341 %extension_scripts calendar
2342 %extension_scripts ctype
2343 %extension_scripts curl
2344 %extension_scripts dba
2345 %extension_scripts dom
2346 %extension_scripts exif
2347 %extension_scripts fdf
2348 %extension_scripts fileinfo
2349 %extension_scripts filter
2350 %extension_scripts ftp
2351 %extension_scripts gd
2352 %extension_scripts gettext
2353 %extension_scripts gmp
2354 %extension_scripts hash
2355 %extension_scripts iconv
2356 %extension_scripts imap
2357 %extension_scripts interbase
2358 %extension_scripts intl
2359 %extension_scripts json
2360 %extension_scripts ldap
2361 %extension_scripts mbstring
2362 %extension_scripts mcrypt
2363 %extension_scripts mssql
2364 %extension_scripts mysqlnd
2365 %extension_scripts mysql
2366 %extension_scripts mysqli
2367 %extension_scripts oci8
2368 %extension_scripts odbc
2369 %extension_scripts openssl
2370 %extension_scripts pcre
2371 %extension_scripts pdo-dblib
2372 %extension_scripts pdo-firebird
2373 %extension_scripts pdo-mysql
2374 %extension_scripts pdo-odbc
2375 %extension_scripts pdo-pgsql
2376 %extension_scripts pdo-sqlite
2377 %extension_scripts pgsql
2378 %extension_scripts phar
2379 %extension_scripts posix
2380 %extension_scripts pspell
2381 %extension_scripts recode
2382 %extension_scripts session
2383 %extension_scripts shmop
2384 %extension_scripts snmp
2385 %extension_scripts soap
2386 %extension_scripts sockets
2387 %extension_scripts spl
2388 %extension_scripts sqlite
2389 %extension_scripts sqlite3
2390 %extension_scripts sybase-ct
2391 %extension_scripts sysvmsg
2392 %extension_scripts sysvsem
2393 %extension_scripts sysvshm
2394 %extension_scripts tidy
2395 %extension_scripts tokenizer
2396 %extension_scripts wddx
2397 %extension_scripts xml
2398 %extension_scripts xmlreader
2399 %extension_scripts xmlrpc
2400 %extension_scripts xmlwriter
2401 %extension_scripts xsl
2402 %extension_scripts zip
2403 %extension_scripts zlib
2404
2405 %triggerun bcmath -- %{name}-bcmath < 4:5.0.4-9.1
2406 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bcmath\.so/d' %{_sysconfdir}/php.ini
2407
2408 %triggerun bzip2 -- %{name}-bzip2 < 4:5.0.4-9.1
2409 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bzip2\.so/d' %{_sysconfdir}/php.ini
2410
2411 %triggerun calendar -- %{name}-calendar < 4:5.0.4-9.1
2412 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*calendar\.so/d' %{_sysconfdir}/php.ini
2413
2414 %triggerun ctype -- %{name}-ctype < 4:5.0.4-9.1
2415 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ctype\.so/d' %{_sysconfdir}/php.ini
2416
2417 %triggerun curl -- %{name}-curl < 4:5.0.4-9.1
2418 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*curl\.so/d' %{_sysconfdir}/php.ini
2419
2420 %triggerun dba -- %{name}-dba < 4:5.0.4-9.1
2421 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dba\.so/d' %{_sysconfdir}/php.ini
2422
2423 %triggerun dom -- %{name}-dom < 4:5.0.4-9.1
2424 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dom\.so/d' %{_sysconfdir}/php.ini
2425
2426 %triggerun exif -- %{name}-exif < 4:5.0.4-9.1
2427 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*exif\.so/d' %{_sysconfdir}/php.ini
2428
2429 %triggerun fdf -- %{name}-fdf < 4:5.0.4-9.1
2430 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*fdf\.so/d' %{_sysconfdir}/php.ini
2431
2432 %triggerun ftp -- %{name}-ftp < 4:5.0.4-9.1
2433 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ftp\.so/d' %{_sysconfdir}/php.ini
2434
2435 %triggerun gd -- %{name}-gd < 4:5.0.4-9.1
2436 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gd\.so/d' %{_sysconfdir}/php.ini
2437
2438 %triggerun gettext -- %{name}-gettext < 4:5.0.4-9.1
2439 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gettext\.so/d' %{_sysconfdir}/php.ini
2440
2441 %triggerun gmp -- %{name}-gmp < 4:5.0.4-9.1
2442 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gmp\.so/d' %{_sysconfdir}/php.ini
2443
2444 %triggerun iconv -- %{name}-iconv < 4:5.0.4-9.1
2445 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*iconv\.so/d' %{_sysconfdir}/php.ini
2446
2447 %triggerun imap -- %{name}-imap < 4:5.0.4-9.1
2448 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*imap\.so/d' %{_sysconfdir}/php.ini
2449
2450 %triggerun interbase -- %{name}-interbase < 4:5.0.4-9.1
2451 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*interbase\.so/d' %{_sysconfdir}/php.ini
2452
2453 %triggerun ldap -- %{name}-ldap < 4:5.0.4-9.1
2454 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ldap\.so/d' %{_sysconfdir}/php.ini
2455
2456 %triggerun mbstring -- %{name}-mbstring < 4:5.0.4-9.1
2457 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mbstring\.so/d' %{_sysconfdir}/php.ini
2458
2459 %triggerun mcrypt -- %{name}-mcrypt < 4:5.0.4-9.1
2460 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mcrypt\.so/d' %{_sysconfdir}/php.ini
2461
2462 %triggerun mssql -- %{name}-mssql < 4:5.0.4-9.1
2463 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mssql\.so/d' %{_sysconfdir}/php.ini
2464
2465 %triggerun mysql -- %{name}-mysql < 4:5.0.4-9.1
2466 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysql\.so/d' %{_sysconfdir}/php.ini
2467
2468 %triggerun mysqli -- %{name}-mysqli < 4:5.0.4-9.1
2469 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysqli\.so/d' %{_sysconfdir}/php.ini
2470
2471 %triggerun oci8 -- %{name}-oci8 < 4:5.0.4-9.1
2472 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*oci8\.so/d' %{_sysconfdir}/php.ini
2473
2474 %triggerun odbc -- %{name}-odbc < 4:5.0.4-9.1
2475 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*odbc\.so/d' %{_sysconfdir}/php.ini
2476
2477 %triggerun openssl -- %{name}-openssl < 4:5.0.4-9.1
2478 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*openssl\.so/d' %{_sysconfdir}/php.ini
2479
2480 %triggerun pcntl -- %{name}-pcntl < 4:5.1.2-9.5
2481 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2482         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cgi.ini
2483 fi
2484 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2485         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cli.ini
2486 fi
2487
2488 %triggerun pcre -- %{name}-pcre < 4:5.0.4-9.1
2489 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcre\.so/d' %{_sysconfdir}/php.ini
2490
2491 %triggerun pgsql -- %{name}-pgsql < 4:5.0.4-9.1
2492 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pgsql\.so/d' %{_sysconfdir}/php.ini
2493
2494 %triggerun posix -- %{name}-posix < 4:5.0.4-9.1
2495 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*posix\.so/d' %{_sysconfdir}/php.ini
2496
2497 %triggerun pspell -- %{name}-pspell < 4:5.0.4-9.1
2498 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pspell\.so/d' %{_sysconfdir}/php.ini
2499
2500 %triggerun readline -- %{name}-readline < 4:5.1.2-9.5
2501 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2502         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cgi.ini
2503 fi
2504 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2505         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cli.ini
2506 fi
2507
2508 %triggerun recode -- %{name}-recode < 4:5.0.4-9.1
2509 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*recode\.so/d' %{_sysconfdir}/php.ini
2510
2511 %triggerun session -- %{name}-session < 4:5.0.4-9.1
2512 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*session\.so/d' %{_sysconfdir}/php.ini
2513
2514 %triggerun shmop -- %{name}-shmop < 4:5.0.4-9.1
2515 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*shmop\.so/d' %{_sysconfdir}/php.ini
2516
2517 %triggerun snmp -- %{name}-snmp < 4:5.0.4-9.1
2518 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*snmp\.so/d' %{_sysconfdir}/php.ini
2519
2520 %triggerun soap -- %{name}-soap < 4:5.0.4-9.1
2521 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*soap\.so/d' %{_sysconfdir}/php.ini
2522
2523 %triggerun sockets -- %{name}-sockets < 4:5.0.4-9.1
2524 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sockets\.so/d' %{_sysconfdir}/php.ini
2525
2526 %triggerun sqlite -- %{name}-sqlite < 4:5.0.4-9.1
2527 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sqlite\.so/d' %{_sysconfdir}/php.ini
2528
2529 %triggerun sybase-ct -- %{name}-sybase-ct < 4:5.0.4-9.1
2530 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sybase-ct\.so/d' %{_sysconfdir}/php.ini
2531
2532 %triggerun sysvmsg -- %{name}-sysvmsg < 4:5.0.4-9.1
2533 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvmsg\.so/d' %{_sysconfdir}/php.ini
2534
2535 %triggerun sysvsem -- %{name}-sysvsem < 4:5.0.4-9.1
2536 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvsem\.so/d' %{_sysconfdir}/php.ini
2537
2538 %triggerun sysvshm -- %{name}-sysvshm < 4:5.0.4-9.1
2539 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvshm\.so/d' %{_sysconfdir}/php.ini
2540
2541 %triggerun tidy -- %{name}-tidy < 4:5.0.4-9.1
2542 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*tidy\.so/d' %{_sysconfdir}/php.ini
2543
2544 %triggerun wddx -- %{name}-wddx < 4:5.0.4-9.1
2545 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*wddx\.so/d' %{_sysconfdir}/php.ini
2546
2547 %triggerun xml -- %{name}-xml < 4:5.0.4-9.1
2548 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xml\.so/d' %{_sysconfdir}/php.ini
2549
2550 %triggerun xmlrpc -- %{name}-xmlrpc < 4:5.0.4-9.1
2551 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xmlrpc\.so/d' %{_sysconfdir}/php.ini
2552
2553 %triggerun xsl -- %{name}-xsl < 4:5.0.4-9.1
2554 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xsl\.so/d' %{_sysconfdir}/php.ini
2555
2556 %triggerun zlib -- %{name}-zlib < 4:5.0.4-9.1
2557 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*zlib\.so/d' %{_sysconfdir}/php.ini
2558
2559 %if %{with apache1}
2560 %files -n apache1-mod_php
2561 %defattr(644,root,root,755)
2562 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/apache/conf.d/*_mod_php.conf
2563 %dir %{_sysconfdir}/apache.d
2564 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache.ini
2565 %attr(755,root,root) %{_libdir}/apache1/libphp5.so
2566 %endif
2567
2568 %if %{with apache2}
2569 %files -n apache-mod_php
2570 %defattr(644,root,root,755)
2571 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/httpd/conf.d/*_mod_php.conf
2572 %dir %{_sysconfdir}/apache2handler.d
2573 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache2handler.ini
2574 %attr(755,root,root) %{_libdir}/apache/libphp5.so
2575 %endif
2576
2577 %if %{with litespeed}
2578 %files litespeed
2579 %defattr(644,root,root,755)
2580 %attr(755,root,root) %{_sbindir}/php.litespeed
2581 %endif
2582
2583 %files cgi
2584 %defattr(644,root,root,755)
2585 %dir %{_sysconfdir}/cgi-fcgi.d
2586 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cgi-fcgi.ini
2587 %attr(755,root,root) %{_bindir}/php.cgi
2588 %attr(755,root,root) %{_bindir}/php.fcgi
2589
2590 %files cli
2591 %defattr(644,root,root,755)
2592 %dir %{_sysconfdir}/cli.d
2593 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cli.ini
2594 %attr(755,root,root) %{_bindir}/php.cli
2595 %{_mandir}/man1/php.1*
2596 %{_mandir}/man1/php.cli.1*
2597
2598 %files program
2599 %defattr(644,root,root,755)
2600 %attr(755,root,root) %{_bindir}/php
2601
2602 %if %{with fpm}
2603 %files fpm
2604 %defattr(644,root,root,755)
2605 %doc %lang(ru) sapi/fpm/readme-ru.markdown
2606 %doc sapi/fpm/nginx-site-conf.sample
2607 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/fpm.conf
2608 %attr(755,root,root) %{_bindir}/php.fpm
2609 %{_mandir}/man1/php-fpm.1*
2610 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/php-fpm
2611 %attr(754,root,root) /etc/rc.d/init.d/php-fpm
2612 %endif
2613
2614 %files common
2615 %defattr(644,root,root,755)
2616 %doc php.ini-*
2617 %doc CREDITS Zend/ZEND_CHANGES
2618 %doc LICENSE Zend/LICENSE.Zend EXTENSIONS NEWS TODO*
2619 %doc README.PHP4-TO-PHP5-THIN-CHANGES
2620 %doc README.namespaces
2621
2622 %dir %{_sysconfdir}
2623 %dir %{_sysconfdir}/conf.d
2624 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.ini
2625 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/browscap.ini
2626 %attr(755,root,root) %{_libdir}/libphp_common-*.so
2627 %dir %{php_extensiondir}
2628
2629 %doc ext/session/mod_files.sh
2630
2631 %files devel
2632 %defattr(644,root,root,755)
2633 %doc README.UNIX-BUILD-SYSTEM
2634 %doc README.EXT_SKEL README.SELF-CONTAINED-EXTENSIONS
2635 %doc CODING_STANDARDS README.EXTENSIONS README.PARAMETER_PARSING_API README.STREAMS
2636 %doc README.SUBMITTING_PATCH README.TESTING README.TESTING2
2637 %attr(755,root,root) %{_bindir}/phpize
2638 %attr(755,root,root) %{_bindir}/php-config
2639 %attr(755,root,root) %{_libdir}/libphp_common.so
2640 %{_libdir}/libphp_common.la
2641 %{_includedir}/php
2642 %{_libdir}/php/build
2643 %{_mandir}/man1/php-config.1*
2644 %{_mandir}/man1/phpize.1*
2645
2646 %files bcmath
2647 %defattr(644,root,root,755)
2648 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bcmath.ini
2649 %attr(755,root,root) %{php_extensiondir}/bcmath.so
2650
2651 %files bzip2
2652 %defattr(644,root,root,755)
2653 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bz2.ini
2654 %attr(755,root,root) %{php_extensiondir}/bz2.so
2655
2656 %files calendar
2657 %defattr(644,root,root,755)
2658 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/calendar.ini
2659 %attr(755,root,root) %{php_extensiondir}/calendar.so
2660
2661 %files ctype
2662 %defattr(644,root,root,755)
2663 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ctype.ini
2664 %attr(755,root,root) %{php_extensiondir}/ctype.so
2665
2666 %if %{with curl}
2667 %files curl
2668 %defattr(644,root,root,755)
2669 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/curl.ini
2670 %attr(755,root,root) %{php_extensiondir}/curl.so
2671 %endif
2672
2673 %files dba
2674 %defattr(644,root,root,755)
2675 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dba.ini
2676 %attr(755,root,root) %{php_extensiondir}/dba.so
2677
2678 %files dom
2679 %defattr(644,root,root,755)
2680 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dom.ini
2681 %attr(755,root,root) %{php_extensiondir}/dom.so
2682
2683 %if %{with fdf}
2684 %files fdf
2685 %defattr(644,root,root,755)
2686 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fdf.ini
2687 %attr(755,root,root) %{php_extensiondir}/fdf.so
2688 %endif
2689
2690 %files fileinfo
2691 %defattr(644,root,root,755)
2692 %doc README.input_filter
2693 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fileinfo.ini
2694 %attr(755,root,root) %{php_extensiondir}/fileinfo.so
2695
2696 %if %{with filter}
2697 %files filter
2698 %defattr(644,root,root,755)
2699 %doc README.input_filter
2700 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/filter.ini
2701 %attr(755,root,root) %{php_extensiondir}/filter.so
2702 %endif
2703
2704 %files exif
2705 %defattr(644,root,root,755)
2706 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/exif.ini
2707 %attr(755,root,root) %{php_extensiondir}/exif.so
2708
2709 %files ftp
2710 %defattr(644,root,root,755)
2711 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ftp.ini
2712 %attr(755,root,root) %{php_extensiondir}/ftp.so
2713
2714 %files gd
2715 %defattr(644,root,root,755)
2716 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gd.ini
2717 %attr(755,root,root) %{php_extensiondir}/gd.so
2718
2719 %files gettext
2720 %defattr(644,root,root,755)
2721 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gettext.ini
2722 %attr(755,root,root) %{php_extensiondir}/gettext.so
2723
2724 %files gmp
2725 %defattr(644,root,root,755)
2726 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gmp.ini
2727 %attr(755,root,root) %{php_extensiondir}/gmp.so
2728
2729 %files hash
2730 %defattr(644,root,root,755)
2731 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/hash.ini
2732 %attr(755,root,root) %{php_extensiondir}/hash.so
2733
2734 %files iconv
2735 %defattr(644,root,root,755)
2736 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/iconv.ini
2737 %attr(755,root,root) %{php_extensiondir}/iconv.so
2738
2739 %if %{with imap}
2740 %files imap
2741 %defattr(644,root,root,755)
2742 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/imap.ini
2743 %attr(755,root,root) %{php_extensiondir}/imap.so
2744 %endif
2745
2746 %if %{with interbase}
2747 %files interbase
2748 %defattr(644,root,root,755)
2749 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/interbase.ini
2750 %attr(755,root,root) %{php_extensiondir}/interbase.so
2751 %endif
2752
2753 %files intl
2754 %defattr(644,root,root,755)
2755 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/intl.ini
2756 %attr(755,root,root) %{php_extensiondir}/intl.so
2757
2758 %files json
2759 %defattr(644,root,root,755)
2760 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/json.ini
2761 %attr(755,root,root) %{php_extensiondir}/json.so
2762
2763 %if %{with ldap}
2764 %files ldap
2765 %defattr(644,root,root,755)
2766 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ldap.ini
2767 %attr(755,root,root) %{php_extensiondir}/ldap.so
2768 %endif
2769
2770 %files mbstring
2771 %defattr(644,root,root,755)
2772 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mbstring.ini
2773 %attr(755,root,root) %{php_extensiondir}/mbstring.so
2774
2775 %files mcrypt
2776 %defattr(644,root,root,755)
2777 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mcrypt.ini
2778 %attr(755,root,root) %{php_extensiondir}/mcrypt.so
2779
2780 %if %{with mssql}
2781 %files mssql
2782 %defattr(644,root,root,755)
2783 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mssql.ini
2784 %attr(755,root,root) %{php_extensiondir}/mssql.so
2785 %endif
2786
2787 %if %{with mysqlnd}
2788 %files mysqlnd
2789 %defattr(644,root,root,755)
2790 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/MySQLND.ini
2791 %attr(755,root,root) %{php_extensiondir}/mysqlnd.so
2792 %endif
2793
2794 %files mysql
2795 %defattr(644,root,root,755)
2796 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysql.ini
2797 %attr(755,root,root) %{php_extensiondir}/mysql.so
2798
2799 %if %{with mysqli}
2800 %files mysqli
2801 %defattr(644,root,root,755)
2802 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysqli.ini
2803 %attr(755,root,root) %{php_extensiondir}/mysqli.so
2804 %endif
2805
2806 %if %{with oci8}
2807 %files oci8
2808 %defattr(644,root,root,755)
2809 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/oci8.ini
2810 %attr(755,root,root) %{php_extensiondir}/oci8.so
2811 %endif
2812
2813 %if %{with odbc}
2814 %files odbc
2815 %defattr(644,root,root,755)
2816 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/odbc.ini
2817 %attr(755,root,root) %{php_extensiondir}/odbc.so
2818 %endif
2819
2820 %if %{with openssl}
2821 %files openssl
2822 %defattr(644,root,root,755)
2823 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/openssl.ini
2824 %attr(755,root,root) %{php_extensiondir}/openssl.so
2825 %endif
2826
2827 %files pcntl
2828 %defattr(644,root,root,755)
2829 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pcntl.ini
2830 %attr(755,root,root) %{php_extensiondir}/pcntl.so
2831
2832 %if %{with pcre}
2833 %files pcre
2834 %defattr(644,root,root,755)
2835 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/PCRE.ini
2836 %attr(755,root,root) %{php_extensiondir}/pcre.so
2837 %endif
2838
2839 %files pdo
2840 %defattr(644,root,root,755)
2841 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo.ini
2842 %attr(755,root,root) %{php_extensiondir}/pdo.so
2843
2844 %if %{with mssql} || %{with sybase_ct}
2845 %files pdo-dblib
2846 %defattr(644,root,root,755)
2847 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_dblib.ini
2848 %attr(755,root,root) %{php_extensiondir}/pdo_dblib.so
2849 %endif
2850
2851 %if %{with interbase} && !%{with interbase_inst}
2852 %files pdo-firebird
2853 %defattr(644,root,root,755)
2854 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_firebird.ini
2855 %attr(755,root,root) %{php_extensiondir}/pdo_firebird.so
2856 %endif
2857
2858 %files pdo-mysql
2859 %defattr(644,root,root,755)
2860 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_mysql.ini
2861 %attr(755,root,root) %{php_extensiondir}/pdo_mysql.so
2862
2863 %if %{with oci8}
2864 %files pdo-oci
2865 %defattr(644,root,root,755)
2866 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_oci.ini
2867 %attr(755,root,root) %{php_extensiondir}/pdo_oci.so
2868 %endif
2869
2870 %if %{with odbc}
2871 %files pdo-odbc
2872 %defattr(644,root,root,755)
2873 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_odbc.ini
2874 %attr(755,root,root) %{php_extensiondir}/pdo_odbc.so
2875 %endif
2876
2877 %if %{with pgsql}
2878 %files pdo-pgsql
2879 %defattr(644,root,root,755)
2880 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_pgsql.ini
2881 %attr(755,root,root) %{php_extensiondir}/pdo_pgsql.so
2882 %endif
2883
2884 %if %{with sqlite}
2885 %files pdo-sqlite
2886 %defattr(644,root,root,755)
2887 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_sqlite.ini
2888 %attr(755,root,root) %{php_extensiondir}/pdo_sqlite.so
2889 %endif
2890
2891 %if %{with pgsql}
2892 %files pgsql
2893 %defattr(644,root,root,755)
2894 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pgsql.ini
2895 %attr(755,root,root) %{php_extensiondir}/pgsql.so
2896 %endif
2897
2898 %if %{with phar}
2899 %files phar
2900 %defattr(644,root,root,755)
2901 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/phar.ini
2902 %attr(755,root,root) %{php_extensiondir}/phar.so
2903 %endif
2904
2905 %files posix
2906 %defattr(644,root,root,755)
2907 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/posix.ini
2908 %attr(755,root,root) %{php_extensiondir}/posix.so
2909
2910 %if %{with pspell}
2911 %files pspell
2912 %defattr(644,root,root,755)
2913 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pspell.ini
2914 %attr(755,root,root) %{php_extensiondir}/pspell.so
2915 %endif
2916
2917 %files readline
2918 %defattr(644,root,root,755)
2919 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/readline.ini
2920 %attr(755,root,root) %{php_extensiondir}/readline.so
2921
2922 %if %{with recode}
2923 %files recode
2924 %defattr(644,root,root,755)
2925 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/recode.ini
2926 %attr(755,root,root) %{php_extensiondir}/recode.so
2927 %endif
2928
2929 %files simplexml
2930 %defattr(644,root,root,755)
2931 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/simplexml.ini
2932 %attr(755,root,root) %{php_extensiondir}/simplexml.so
2933
2934 %files session
2935 %defattr(644,root,root,755)
2936 %doc ext/session/mod_files.sh
2937 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/session.ini
2938 %attr(755,root,root) %{php_extensiondir}/session.so
2939
2940 %files shmop
2941 %defattr(644,root,root,755)
2942 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/shmop.ini
2943 %attr(755,root,root) %{php_extensiondir}/shmop.so
2944
2945 %if %{with snmp}
2946 %files snmp
2947 %defattr(644,root,root,755)
2948 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/snmp.ini
2949 %attr(755,root,root) %{php_extensiondir}/snmp.so
2950 %endif
2951
2952 %files soap
2953 %defattr(644,root,root,755)
2954 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/soap.ini
2955 %attr(755,root,root) %{php_extensiondir}/soap.so
2956
2957 %files sockets
2958 %defattr(644,root,root,755)
2959 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sockets.ini
2960 %attr(755,root,root) %{php_extensiondir}/sockets.so
2961
2962 %files spl
2963 %defattr(644,root,root,755)
2964 %doc ext/spl/{CREDITS,README,TODO}
2965 %doc ext/spl/examples
2966 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/SPL.ini
2967 %attr(755,root,root) %{php_extensiondir}/spl.so
2968
2969 %if %{with sqlite}
2970 %files sqlite
2971 %defattr(644,root,root,755)
2972 %doc ext/sqlite/{README,TODO,CREDITS}
2973 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite.ini
2974 %attr(755,root,root) %{php_extensiondir}/sqlite.so
2975 %endif
2976
2977 %if %{with sqlite3}
2978 %files sqlite3
2979 %defattr(644,root,root,755)
2980 %doc ext/sqlite3/CREDITS
2981 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite3.ini
2982 %attr(755,root,root) %{php_extensiondir}/sqlite3.so
2983 %endif
2984
2985 %if %{with sybase_ct}
2986 %files sybase-ct
2987 %defattr(644,root,root,755)
2988 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sybase_ct.ini
2989 %attr(755,root,root) %{php_extensiondir}/sybase_ct.so
2990 %endif
2991
2992 %files sysvmsg
2993 %defattr(644,root,root,755)
2994 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvmsg.ini
2995 %attr(755,root,root) %{php_extensiondir}/sysvmsg.so
2996
2997 %files sysvsem
2998 %defattr(644,root,root,755)
2999 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvsem.ini
3000 %attr(755,root,root) %{php_extensiondir}/sysvsem.so
3001
3002 %files sysvshm
3003 %defattr(644,root,root,755)
3004 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvshm.ini
3005 %attr(755,root,root) %{php_extensiondir}/sysvshm.so
3006
3007 %files tests
3008 %defattr(644,root,root,755)
3009 %dir %{php_data_dir}/tests/php
3010 %{php_data_dir}/tests/php/basic
3011 %{php_data_dir}/tests/php/classes
3012 %{php_data_dir}/tests/php/func
3013 %{php_data_dir}/tests/php/lang
3014 %{php_data_dir}/tests/php/output
3015 %{php_data_dir}/tests/php/run-test
3016 %{php_data_dir}/tests/php/security
3017 %{php_data_dir}/tests/php/strings
3018 %{php_data_dir}/tests/php/quicktester.inc
3019 %attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php
3020
3021 %if %{with tidy}
3022 %files tidy
3023 %defattr(644,root,root,755)
3024 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tidy.ini
3025 %attr(755,root,root) %{php_extensiondir}/tidy.so
3026 %endif
3027
3028 %files tokenizer
3029 %defattr(644,root,root,755)
3030 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tokenizer.ini
3031 %attr(755,root,root) %{php_extensiondir}/tokenizer.so
3032
3033 %if %{with wddx}
3034 %files wddx
3035 %defattr(644,root,root,755)
3036 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*wddx.ini
3037 %attr(755,root,root) %{php_extensiondir}/wddx.so
3038 %endif
3039
3040 %files xml
3041 %defattr(644,root,root,755)
3042 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xml.ini
3043 %attr(755,root,root) %{php_extensiondir}/xml.so
3044
3045 %files xmlreader
3046 %defattr(644,root,root,755)
3047 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlreader.ini
3048 %attr(755,root,root) %{php_extensiondir}/xmlreader.so
3049
3050 %if %{with xmlrpc}
3051 %files xmlrpc
3052 %defattr(644,root,root,755)
3053 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlrpc.ini
3054 %attr(755,root,root) %{php_extensiondir}/xmlrpc.so
3055 %endif
3056
3057 %files xmlwriter
3058 %defattr(644,root,root,755)
3059 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlwriter.ini
3060 %attr(755,root,root) %{php_extensiondir}/xmlwriter.so
3061
3062 %files xsl
3063 %defattr(644,root,root,755)
3064 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xsl.ini
3065 %attr(755,root,root) %{php_extensiondir}/xsl.so
3066
3067 %files zip
3068 %defattr(644,root,root,755)
3069 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zip.ini
3070 %attr(755,root,root) %{php_extensiondir}/zip.so
3071
3072 %files zlib
3073 %defattr(644,root,root,755)
3074 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zlib.ini
3075 %attr(755,root,root) %{php_extensiondir}/zlib.so
This page took 0.499479 seconds and 4 git commands to generate.