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