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