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