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