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