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