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