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