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