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