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