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