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