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