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