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