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