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