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