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