]> git.pld-linux.org Git - packages/php.git/blob - php.spec
devel obsoletes php71-devel
[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     32
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 Provides:       php-pecl-PDO_PGSQL = 4:5.3.28-7
1465 Obsoletes:      php-pdo-pgsql < 4:5.3.28-7
1466 Obsoletes:      php-pecl-PDO_PGSQL < 4:5.2.1-2
1467
1468 %description pdo-pgsql
1469 This is a dynamic shared object (DSO) for PHP that will add PDO
1470 PostgreSQL support.
1471
1472 %description pdo-pgsql -l pl.UTF-8
1473 Moduł dla PHP dodający obsługę baz danych PostgreSQL za pośrednictwem
1474 interfejsu PDO.
1475
1476 %package pdo-sqlite
1477 Summary:        PHP Data Objects (PDO) SQLite support
1478 Summary(pl.UTF-8):      Moduł PHP Data Objects (PDO) z obsługą SQLite
1479 Group:          Libraries
1480 URL:            http://www.php.net/manual/en/ref.pdo-sqlite.php
1481 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1482 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1483 Provides:       php(pdo-sqlite)
1484 Provides:       php(pdo_sqlite)
1485 Obsoletes:      php-pdo-sqlite < 4:5.3.28-7
1486 Obsoletes:      php-pecl-PDO_SQLITE
1487
1488 %description pdo-sqlite
1489 This is a dynamic shared object (DSO) for PHP that will add PDO SQLite
1490 support.
1491
1492 %description pdo-sqlite -l pl.UTF-8
1493 Moduł dla PHP dodający obsługę baz danych SQLite za pośrednictwem
1494 interfejsu PDO.
1495
1496 %package pgsql
1497 Summary:        PostgreSQL database module for PHP
1498 Summary(pl.UTF-8):      Moduł bazy danych PostgreSQL dla PHP
1499 Group:          Libraries
1500 URL:            http://www.php.net/manual/en/book.pgsql.php
1501 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1502 Provides:       php(pgsql)
1503 Obsoletes:      php-pgsql < 4:5.3.28-7
1504
1505 %description pgsql
1506 This is a dynamic shared object (DSO) for PHP that will add PostgreSQL
1507 database support.
1508
1509 %description pgsql -l pl.UTF-8
1510 Moduł PHP umożliwiający dostęp do bazy danych PostgreSQL.
1511
1512 %description pgsql -l pt_BR.UTF-8
1513 Um módulo para aplicações PHP que usam bancos de dados postgresql.
1514
1515 %package phar
1516 Summary:        Phar archive module for PHP
1517 Summary(pl.UTF-8):      Moduł phar dla PHP
1518 Group:          Libraries
1519 URL:            http://www.php.net/manual/en/book.phar.php
1520 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1521 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1522 %{?with_alternatives:Requires:  alternatives}
1523 Suggests:       %{name}-cli
1524 # zlib is required by phar program, but as phar cli is optional should the dep be too
1525 Suggests:       %{name}-zlib
1526 Provides:       php(phar) = %{pharver}
1527 Obsoletes:      php-pecl-phar < %{pharver}
1528 Obsoletes:      php-phar < 4:5.3.28-7
1529 Conflicts:      php-ioncube < 4.0.9
1530
1531 %description phar
1532 This is a dynamic shared object (DSO) for PHP that will add phar
1533 archive a support.
1534
1535 %description phar -l pl.UTF-8
1536 Moduł PHP umożliwiający dostęp do achiwów .phar.
1537
1538 %package posix
1539 Summary:        POSIX extension module for PHP
1540 Summary(pl.UTF-8):      Moduł POSIX dla PHP
1541 Group:          Libraries
1542 URL:            http://www.php.net/manual/en/book.posix.php
1543 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1544 Provides:       php(posix)
1545 Obsoletes:      php-posix < 4:5.3.28-7
1546
1547 %description posix
1548 This is a dynamic shared object (DSO) for PHP that will add POSIX
1549 functions support to PHP.
1550
1551 %description posix -l pl.UTF-8
1552 Moduł PHP umożliwiający korzystanie z funkcji POSIX.
1553
1554 %package pspell
1555 Summary:        pspell extension module for PHP
1556 Summary(pl.UTF-8):      Moduł pspell dla PHP
1557 Group:          Libraries
1558 URL:            http://www.php.net/manual/en/book.pspell.php
1559 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1560 Provides:       php(pspell)
1561 Obsoletes:      php-pspell < 4:5.3.28-7
1562
1563 %description pspell
1564 This is a dynamic shared object (DSO) for PHP that will add pspell
1565 support to PHP. It allows to check the spelling of a word and offer
1566 suggestions.
1567
1568 %description pspell -l pl.UTF-8
1569 Moduł PHP umożliwiający korzystanie z pspella. Pozwala on na
1570 sprawdzanie pisowni słowa i sugerowanie poprawek.
1571
1572 %package readline
1573 Summary:        readline extension module for PHP
1574 Summary(pl.UTF-8):      Moduł readline dla PHP
1575 Group:          Libraries
1576 URL:            http://www.php.net/manual/en/book.readline.php
1577 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
1578 Provides:       php(readline)
1579 Obsoletes:      php-readline < 4:5.3.28-7
1580
1581 %description readline
1582 This PHP module adds support for readline functions (only for cli and
1583 cgi SAPIs).
1584
1585 %description readline -l pl.UTF-8
1586 Moduł PHP dodający obsługę funkcji readline (tylko do SAPI cli i cgi).
1587
1588 %package recode
1589 Summary:        recode extension module for PHP
1590 Summary(pl.UTF-8):      Moduł recode dla PHP
1591 Group:          Libraries
1592 URL:            http://www.php.net/manual/en/book.recode.php
1593 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1594 Requires:       recode >= 3.5d-3
1595 Provides:       php(recode)
1596 Obsoletes:      php-recode < 4:5.3.28-7
1597
1598 %description recode
1599 This is a dynamic shared object (DSO) for PHP that will add recode
1600 support.
1601
1602 %description recode -l pl.UTF-8
1603 Moduł PHP dodający możliwość konwersji kodowania plików (poprzez
1604 bibliotekę recode).
1605
1606 %package session
1607 Summary:        session extension module for PHP
1608 Summary(pl.UTF-8):      Moduł session dla PHP
1609 Group:          Libraries
1610 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1611 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1612 Suggests:       %{name}-hash = %{epoch}:%{version}-%{release}
1613 Suggests:       tmpwatch
1614 Provides:       php(session)
1615 Obsoletes:      php-session < 4:5.3.28-7
1616
1617 %description session
1618 This is a dynamic shared object (DSO) for PHP that will add session
1619 support.
1620
1621 %description session -l pl.UTF-8
1622 Moduł PHP dodający obsługę sesji.
1623
1624 %package shmop
1625 Summary:        Shared Memory Operations extension module for PHP
1626 Summary(pl.UTF-8):      Moduł shmop dla PHP
1627 Group:          Libraries
1628 URL:            http://www.php.net/manual/en/book.shmop.php
1629 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1630 Provides:       php(shmop)
1631 Obsoletes:      php-shmop < 4:5.3.28-7
1632
1633 %description shmop
1634 This is a dynamic shared object (DSO) for PHP that will add Shared
1635 Memory Operations support.
1636
1637 %description shmop -l pl.UTF-8
1638 Moduł PHP umożliwiający korzystanie z pamięci dzielonej.
1639
1640 %package simplexml
1641 Summary:        Simple XML extension module for PHP
1642 Summary(pl.UTF-8):      Moduł prostego rozszerzenia XML dla PHP
1643 Group:          Libraries
1644 URL:            http://www.php.net/manual/en/book.simplexml.php
1645 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1646 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1647 Provides:       php(simplexml)
1648 Obsoletes:      php-simplexml < 4:5.3.28-7
1649
1650 %description simplexml
1651 This is a dynamic shared object (DSO) for PHP that will add Simple XML
1652 support.
1653
1654 %description simplexml -l pl.UTF-8
1655 Moduł PHP dodający obsługę prostego XML-a.
1656
1657 %package snmp
1658 Summary:        SNMP extension module for PHP
1659 Summary(pl.UTF-8):      Moduł SNMP dla PHP
1660 Group:          Libraries
1661 URL:            http://www.php.net/manual/en/book.snmp.php
1662 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1663 Requires:       %{name}-sockets = %{epoch}:%{version}-%{release}
1664 Provides:       php(snmp)
1665 Obsoletes:      php-snmp < 4:5.3.28-7
1666
1667 %description snmp
1668 This is a dynamic shared object (DSO) for PHP that will add SNMP
1669 support.
1670
1671 %description snmp -l pl.UTF-8
1672 Moduł PHP dodający obsługę SNMP.
1673
1674 %package soap
1675 Summary:        soap extension module for PHP
1676 Summary(pl.UTF-8):      Moduł soap dla PHP
1677 Group:          Libraries
1678 URL:            http://www.php.net/manual/en/book.soap.php
1679 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1680 Provides:       php(soap)
1681 Obsoletes:      php-soap < 4:5.3.28-7
1682
1683 %description soap
1684 This is a dynamic shared object (DSO) for PHP that will add SOAP/WSDL
1685 support.
1686
1687 %description soap -l pl.UTF-8
1688 Moduł PHP dodający obsługę SOAP/WSDL.
1689
1690 %package sockets
1691 Summary:        sockets extension module for PHP
1692 Summary(pl.UTF-8):      Moduł socket dla PHP
1693 Group:          Libraries
1694 URL:            http://www.php.net/manual/en/book.sockets.php
1695 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1696 Provides:       php(sockets)
1697 Obsoletes:      php-sockets < 4:5.3.28-7
1698
1699 %description sockets
1700 This is a dynamic shared object (DSO) for PHP that will add sockets
1701 support.
1702
1703 %description sockets -l pl.UTF-8
1704 Moduł PHP dodający obsługę gniazdek.
1705
1706 %package spl
1707 Summary:        Standard PHP Library module for PHP
1708 Summary(pl.UTF-8):      Moduł biblioteki standardowej (Standard PHP Library) dla PHP
1709 Group:          Libraries
1710 URL:            http://php.net/manual/en/book.spl.php
1711 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1712 Requires:       %{name}-pcre = %{epoch}:%{version}-%{release}
1713 Requires:       %{name}-simplexml = %{epoch}:%{version}-%{release}
1714 Provides:       php(spl)
1715 Obsoletes:      php-spl < 4:5.3.28-7
1716
1717 %description spl
1718 This is a dynamic shared object (DSO) for PHP that will add Standard
1719 PHP Library support.
1720
1721 %description spl -l pl.UTF-8
1722 Moduł PHP z biblioteką standardową PHP (SPL - Standard PHP Library).
1723
1724 %package sqlite
1725 Summary:        SQLite extension module for PHP
1726 Summary(pl.UTF-8):      Moduł SQLite dla PHP
1727 Group:          Libraries
1728 URL:            http://www.php.net/manual/en/book.sqlite.php
1729 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1730 Requires:       %{name}-pdo = %{epoch}:%{version}-%{release}
1731 Requires:       %{name}-spl = %{epoch}:%{version}-%{release}
1732 Provides:       php(sqlite) = %{sqlitever}
1733 Obsoletes:      php-pecl-SQLite < %{sqlitever}
1734 Obsoletes:      php-sqlite < 4:5.3.28-7
1735
1736 %description sqlite
1737 SQLite is a C library that implements an embeddable SQL database
1738 engine. Programs that link with the SQLite library can have SQL
1739 database access without running a separate RDBMS process.
1740
1741 SQLite is not a client library used to connect to a big database
1742 server. SQLite is the server. The SQLite library reads and writes
1743 directly to and from the database files on disk.
1744
1745 %description sqlite -l pl.UTF-8
1746 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1747 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1748 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1749 RDBMS.
1750
1751 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1752 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1753 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1754 dysku.
1755
1756 %package sqlite3
1757 Summary:        SQLite3 extension module for PHP
1758 Summary(pl.UTF-8):      Moduł SQLite3 dla PHP
1759 Group:          Libraries
1760 URL:            http://php.net/manual/en/book.sqlite3.php
1761 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1762 Provides:       php(sqlite3) = %{sqlite3ver}
1763 Obsoletes:      php-sqlite3 < 4:5.3.28-7
1764
1765 %description sqlite3
1766 SQLite is a C library that implements an embeddable SQL database
1767 engine. Programs that link with the SQLite library can have SQL
1768 database access without running a separate RDBMS process.
1769
1770 SQLite is not a client library used to connect to a big database
1771 server. SQLite is the server. The SQLite library reads and writes
1772 directly to and from the database files on disk.
1773
1774 %description sqlite3 -l pl.UTF-8
1775 SQLite jest napisaną w C biblioteką implementującą osadzalny silnik
1776 bazodanowy SQL. Program linkujący się z biblioteką SQLite może mieć
1777 dostęp do bazy SQL bez potrzeby uruchamiania dodatkowego procesu
1778 RDBMS.
1779
1780 SQLite to nie klient baz danych - biblioteka nie łączy się z serwerami
1781 baz danych. SQLite sam jest serwerem. Biblioteka SQLite czyta i
1782 zapisuje dane bezpośrednio z/do plików baz danych znajdujących się na
1783 dysku.
1784
1785 %package sybase-ct
1786 Summary:        Sybase-CT extension module for PHP
1787 Summary(pl.UTF-8):      Moduł Sybase-CT dla PHP
1788 Group:          Libraries
1789 URL:            http://www.php.net/manual/en/book.sybase.php
1790 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1791 Provides:       php(sybase-ct)
1792 Obsoletes:      php-sybase
1793 Obsoletes:      php-sybase-ct < 4:5.3.28-7
1794
1795 %description sybase-ct
1796 This is a dynamic shared object (DSO) for PHP that will add Sybase and
1797 MS SQL databases support through CT-lib.
1798
1799 %description sybase-ct -l pl.UTF-8
1800 Moduł PHP dodający obsługę baz danych Sybase oraz MS SQL poprzez
1801 CT-lib.
1802
1803 %package sysvmsg
1804 Summary:        SysV msg extension module for PHP
1805 Summary(pl.UTF-8):      Moduł SysV msg dla PHP
1806 Group:          Libraries
1807 URL:            http://www.php.net/manual/en/book.sem.php
1808 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1809 Provides:       php(sysvmsg)
1810 Obsoletes:      php-sysvmsg < 4:5.3.28-7
1811
1812 %description sysvmsg
1813 This is a dynamic shared object (DSO) for PHP that will add SysV
1814 message queues support.
1815
1816 %description sysvmsg -l pl.UTF-8
1817 Moduł PHP umożliwiający korzystanie z kolejek komunikatów SysV.
1818
1819 %package sysvsem
1820 Summary:        SysV sem extension module for PHP
1821 Summary(pl.UTF-8):      Moduł SysV sem dla PHP
1822 Group:          Libraries
1823 URL:            http://www.php.net/manual/en/book.sem.php
1824 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1825 Provides:       php(sysvsem)
1826 Obsoletes:      php-sysvsem < 4:5.3.28-7
1827
1828 %description sysvsem
1829 This is a dynamic shared object (DSO) for PHP that will add SysV
1830 semaphores support.
1831
1832 %description sysvsem -l pl.UTF-8
1833 Moduł PHP umożliwiający korzystanie z semaforów SysV.
1834
1835 %package sysvshm
1836 Summary:        SysV shm extension module for PHP
1837 Summary(pl.UTF-8):      Moduł SysV shm dla PHP
1838 Group:          Libraries
1839 URL:            http://www.php.net/manual/en/book.shmop.php
1840 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1841 Provides:       php(sysvshm)
1842 Obsoletes:      php-sysvshm < 4:5.3.28-7
1843
1844 %description sysvshm
1845 This is a dynamic shared object (DSO) for PHP that will add SysV
1846 Shared Memory support.
1847
1848 %description sysvshm -l pl.UTF-8
1849 Moduł PHP umożliwiający korzystanie z pamięci dzielonej SysV.
1850
1851 %package tests
1852 Summary:        Contains unit test files for PHP and extensions
1853 Summary(pl.UTF-8):      Zawiera pliki testów jednostkowych dla PHP i rozszerzeń
1854 Group:          Libraries
1855 URL:            http://qa.php.net/
1856 Requires:       %{name}-cli = %{epoch}:%{version}-%{release}
1857
1858 %description tests
1859 This package contains unit tests for PHP and its extensions.
1860
1861 %description tests -l pl.UTF-8
1862 Ten pakiet zawiera pliki testów jednostkowych dla PHP i rozszerzeń.
1863
1864 %package tidy
1865 Summary:        Tidy extension module for PHP
1866 Summary(pl.UTF-8):      Moduł Tidy dla PHP
1867 Group:          Libraries
1868 URL:            http://www.php.net/manual/en/book.tidy.php
1869 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1870 Requires:       tidy
1871 Provides:       php(tidy)
1872 Obsoletes:      php-tidy < 4:5.3.28-7
1873
1874 %description tidy
1875 This is a dynamic shared object (DSO) for PHP that will add Tidy
1876 support.
1877
1878 %description tidy -l pl.UTF-8
1879 Moduł PHP umożliwiający korzystanie z tidy.
1880
1881 %package tokenizer
1882 Summary:        tokenizer extension module for PHP
1883 Summary(pl.UTF-8):      Moduł rozszerzenia tokenizer dla PHP
1884 Group:          Libraries
1885 URL:            http://www.php.net/manual/en/book.tokenizer.php
1886 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1887 Provides:       php(tokenizer)
1888 Obsoletes:      php-tokenizer < 4:5.3.28-7
1889
1890 %description tokenizer
1891 This is a dynamic shared object (DSO) for PHP that will add tokenizer
1892 support.
1893
1894 %description tokenizer -l pl.UTF-8
1895 Moduł PHP dodający obsługę tokenizera do PHP.
1896
1897 %package wddx
1898 Summary:        wddx extension module for PHP
1899 Summary(pl.UTF-8):      Moduł wddx dla PHP
1900 Group:          Libraries
1901 URL:            http://www.php.net/manual/en/book.wddx.php
1902 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1903 # - wddx doesn't require session as it's disabled at compile time:
1904 #   if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION)
1905 #   see also php.spec#rev1.120.2.22
1906 #Requires:      %{name}-session = %{epoch}:%{version}-%{release}
1907 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1908 Provides:       php(wddx)
1909 Obsoletes:      php-wddx < 4:5.3.28-7
1910
1911 %description wddx
1912 This is a dynamic shared object (DSO) for PHP that will add wddx
1913 support.
1914
1915 %description wddx -l pl.UTF-8
1916 Moduł PHP umożliwiający korzystanie z wddx.
1917
1918 %package xml
1919 Summary:        XML extension module for PHP
1920 Summary(pl.UTF-8):      Moduł XML dla PHP
1921 Group:          Libraries
1922 URL:            http://www.php.net/manual/en/book.xml.php
1923 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1924 Provides:       php(xml)
1925 Obsoletes:      php-xml < 4:5.3.28-7
1926
1927 %description xml
1928 This is a dynamic shared object (DSO) for PHP that will add XML
1929 support. This extension lets you create XML parsers and then define
1930 handlers for different XML events.
1931
1932 %description xml -l pl.UTF-8
1933 Moduł PHP umożliwiający parsowanie plików XML i obsługę zdarzeń
1934 związanych z tymi plikami. Pozwala on tworzyć analizatory XML-a i
1935 następnie definiować procedury obsługi dla różnych zdarzeń XML.
1936
1937 %package xmlreader
1938 Summary:        XML Reader extension module for PHP
1939 Summary(pl.UTF-8):      Moduł XML Reader dla PHP
1940 Group:          Libraries
1941 URL:            http://www.php.net/manual/en/book.xmlreader.php
1942 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1943 Requires:       %{name}-dom = %{epoch}:%{version}-%{release}
1944 Provides:       php(xmlreader)
1945 Obsoletes:      php-xmlreader < 4:5.3.28-7
1946
1947 %description xmlreader
1948 This is a dynamic shared object (DSO) for PHP that will add XML Reader
1949 support. The XMLReader extension is an XML Pull parser. The reader
1950 acts as a cursor going forward on the document stream and stopping at
1951 each node on the way.
1952
1953 %description xmlreader -l pl.UTF-8
1954 Moduł PHP umożliwiający analizę plików XML w trybie Pull. Czytnik
1955 działa jako kursor przechodzący przez strumień dokumentu i
1956 zatrzymujący się na każdym węźle po drodze.
1957
1958 %package xmlrpc
1959 Summary:        xmlrpc extension module for PHP
1960 Summary(pl.UTF-8):      Moduł xmlrpc dla PHP
1961 Group:          Libraries
1962 URL:            http://www.php.net/manual/en/book.xmlrpc.php
1963 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1964 Requires:       %{name}-xml = %{epoch}:%{version}-%{release}
1965 Provides:       php(xmlrpc)
1966 Obsoletes:      php-xmlrpc < 4:5.3.28-7
1967
1968 %description xmlrpc
1969 This is a dynamic shared object (DSO) for PHP that will add XMLRPC
1970 support.
1971
1972 %description xmlrpc -l pl.UTF-8
1973 Moduł PHP dodający obsługę XMLRPC.
1974
1975 %package xmlwriter
1976 Summary:        Fast, non-cached, forward-only means to write XML data
1977 Summary(pl.UTF-8):      Szybka, nie cachowana metoda zapisu danych w formacie XML
1978 Group:          Libraries
1979 URL:            http://www.php.net/manual/en/book.xmlwriter.php
1980 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
1981 Provides:       php(xmlwriter)
1982 Obsoletes:      php-pecl-xmlwriter
1983 Obsoletes:      php-xmlwriter < 4:5.3.28-7
1984
1985 %description xmlwriter
1986 This extension wraps the libxml xmlWriter API. Represents a writer
1987 that provides a non-cached, forward-only means of generating streams
1988 or files containing XML data.
1989
1990 %description xmlwriter -l pl.UTF-8
1991 To rozszerzenie obudowuje API xmlWriter z libxml. Reprezentuje obsługę
1992 zapisu dostarczającą nie cachowanych metod generowania strumieni lub
1993 plików zawierających dane XML.
1994
1995 %package xsl
1996 Summary:        xsl extension module for PHP
1997 Summary(pl.UTF-8):      Moduł xsl dla PHP
1998 Group:          Libraries
1999 URL:            http://www.php.net/manual/en/book.xsl.php
2000 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
2001 Requires:       %{name}-dom = %{epoch}:%{version}-%{release}
2002 Requires:       libxslt >= 1.0.18
2003 # actually not true, functionality is similar, but API differs
2004 Provides:       php(xsl)
2005 Obsoletes:      php-xsl < 4:5.3.28-7
2006 Obsoletes:      php-xslt <= 3:4.3.8-1
2007
2008 %description xsl
2009 This is a dynamic shared object (DSO) for PHP that will add new XSL
2010 support (using libxslt).
2011
2012 %description xsl -l pl.UTF-8
2013 Moduł PHP dodający nową obsługę XSLT (przy użyciu libxslt).
2014
2015 %package zip
2016 Summary:        Zip management extension
2017 Summary(pl.UTF-8):      Zarządzanie archiwami zip
2018 Group:          Libraries
2019 URL:            http://www.php.net/manual/en/book.zip.php
2020 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
2021 %{?with_system_libzip:Requires: libzip >= 0.10-3}
2022 Provides:       php(zip) = %{zipver}
2023 Obsoletes:      php-pecl-zip < %{zipver}
2024 Obsoletes:      php-zip < 4:5.3.28-7
2025
2026 %description zip
2027 Zip is an extension to create, modify and read zip files.
2028
2029 %description zip -l pl.UTF-8
2030 Zip jest rozszerzeniem umożliwiającym tworzenie, modyfikację oraz
2031 odczyt archiwów zip.
2032
2033 %package zlib
2034 Summary:        Zlib extension module for PHP
2035 Summary(pl.UTF-8):      Moduł zlib dla PHP
2036 Group:          Libraries
2037 URL:            http://www.php.net/manual/en/book.zlib.php
2038 Requires:       %{name}-common = %{epoch}:%{version}-%{release}
2039 Provides:       php(zlib)
2040 Obsoletes:      php-zlib < 4:5.3.28-7
2041
2042 %description zlib
2043 This is a dynamic shared object (DSO) for PHP that will add zlib
2044 compression support to PHP.
2045
2046 %description zlib -l pl.UTF-8
2047 Moduł PHP umożliwiający używanie kompresji zlib.
2048
2049 %prep
2050 %setup -q -n %{orgname}-%{version}
2051 %patch0 -p1
2052 %patch1 -p1
2053 %patch2 -p1
2054 %patch3 -p1
2055 %patch4 -p1
2056 %patch5 -p1
2057 %patch6 -p1
2058 %patch8 -p1
2059 %patch7 -p1
2060 %patch9 -p1
2061 cp -p php.ini-production php.ini
2062 %patch10 -p1
2063 %patch11 -p1
2064 %if %{with type_hints}
2065 %patch12 -p0
2066 %endif
2067 %patch13 -p1
2068 %patch14 -p1
2069 %patch15 -p1
2070 %patch16 -p1
2071 %patch17 -p1
2072 %patch18 -p1
2073 %if %{with system_gd}
2074 %patch19 -p1
2075 %endif
2076 %patch20 -p1
2077 %patch21 -p1
2078 %patch22 -p1
2079 %patch23 -p1
2080 %patch24 -p1
2081 %patch25 -p1
2082 %patch26 -p1
2083 %patch27 -p1
2084 %patch29 -p1
2085 %patch31 -p1
2086 %if "%{pld_release}" != "ac"
2087 %patch34 -p1
2088 %endif
2089 %patch35 -p1
2090 %patch36 -p1
2091 %patch37 -p1
2092 %patch38 -p1
2093 %patch39 -p1
2094 %if %{with fpm}
2095 %patch69 -p1
2096 %patch41 -p1
2097 %patch42 -p1
2098 %endif
2099 %patch43 -p1
2100 %patch44 -p1
2101 %patch45 -p1
2102 %patch46 -p1
2103 %if %{with suhosin}
2104 %patch47 -p1
2105 %patch72 -p1
2106 %endif
2107 %patch68 -p1
2108 %patch48 -p1
2109 %patch49 -p1
2110 %patch50 -p1
2111 %patch51 -p1
2112 %patch52 -p1
2113 %patch53 -p1
2114 %undos ext/spl/tests/SplFileInfo_getInode_basic.phpt
2115 %patch59 -p1
2116 %patch60 -p1
2117 %patch62 -p1
2118 %patch63 -p1
2119 %patch64 -p1
2120 %{?with_system_libzip:%patch65 -p1}
2121 %patch66 -p1
2122 %{__rm} -r sapi/litespeed
2123 gzip -dc %{SOURCE15} | tar xf - -C sapi/
2124 %patch67 -p1
2125 %patch70 -p1
2126 %patch71 -p1
2127 %patch73 -p1
2128
2129 %patch220 -p1
2130
2131 %patch247 -p1
2132
2133 %patch249 -p1
2134 %patch250 -p1
2135 %patch251 -p1
2136 %patch252 -p1
2137 %patch253 -p1
2138 %patch254 -p1
2139
2140 %patch256 -p1
2141 %patch257 -p1
2142 %patch258 -p1
2143
2144 %{__sed} -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4
2145
2146 # cleanup backups after patching
2147 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
2148
2149 # conflict seems to be resolved by recode patches
2150 %{__rm} ext/recode/config9.m4
2151
2152 # remove all bundled libraries not to link with them accidentally
2153 #%{__rm} -r ext/sqlite/libsqlite
2154 %{__rm} -r ext/sqlite3/libsqlite
2155 #%{__rm} -r ext/bcmath/libbcmath
2156 #%{__rm} -r ext/date/lib
2157 #%{__rm} -r ext/fileinfo/libmagic
2158 #%{__rm} -r ext/dba/libcdb
2159 #%{__rm} -r ext/dba/libflatfile
2160 #%{__rm} -r ext/dba/libinifile
2161 #%{__rm} -r ext/gd/libgd
2162 #%{__rm} -r ext/mbstring/libmbfl
2163 #%{__rm} -r ext/mbstring/oniguruma
2164 %{__rm} -r ext/pcre/pcrelib
2165 #%{__rm} -r ext/soap/interop
2166 %{__rm} -r ext/xmlrpc/libxmlrpc
2167 #%{__rm} -r ext/zip/lib
2168
2169 cp -pf Zend/LICENSE{,.Zend}
2170 install -p %{SOURCE13} dep-tests.sh
2171
2172 # breaks build
2173 sed -i -e 's#-fvisibility=hidden##g' configure*
2174
2175 # disable broken tests
2176 # says just "Terminated" twice and fails
2177 %{__mv} sapi/cli/tests/022.phpt{,.broken}
2178
2179 # php-5.3.3/ext/standard/tests/file/statpage.phpt
2180 %{__rm} ext/standard/tests/file/statpage.phpt
2181
2182 # idiotic test, it will fail if somebody else makes space on disk or if disk
2183 # space is not yet allocated (xfs). report upstream to advice bogus test is
2184 # probably pointless.
2185 %{__rm} ext/standard/tests/file/disk_free_space_basic.phpt
2186
2187 sh -xe %{_sourcedir}/skip-tests.sh
2188
2189 %build
2190 API=$(awk '/#define PHP_API_VERSION/{print $3}' main/php.h)
2191 if [ $API != %{php_api_version} ]; then
2192         echo "Set %%define php_api_version to $API and re-run."
2193         exit 1
2194 fi
2195
2196 API=$(awk '/#define ZEND_MODULE_API_NO/{print $3}' Zend/zend_modules.h)
2197 if [ $API != %{zend_module_api} ]; then
2198         echo "Set %%define zend_module_api to $API and re-run."
2199         exit 1
2200 fi
2201
2202 API=$(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' Zend/zend_extensions.h)
2203 if [ $API != %{zend_extension_api} ]; then
2204         echo "Set %%define zend_extension_api to $API and re-run."
2205         exit 1
2206 fi
2207
2208 # Check for some extension version
2209 ver=$(sed -n '/#define PHP_FILEINFO_VERSION /{s/.* "//;s/".*$//;p}' ext/fileinfo/php_fileinfo.h)
2210 if test "$ver" != "%{fileinfover}"; then
2211         : Error: Upstream FILEINFO version is now ${ver}, expecting %{fileinfover}.
2212         : Update the fileinfover macro and rebuild.
2213         exit 1
2214 fi
2215 ver=$(sed -n '/#define PHP_PHAR_VERSION /{s/.* "//;s/".*$//;p}' ext/phar/php_phar.h)
2216 if test "$ver" != "%{pharver}"; then
2217         : Error: Upstream PHAR version is now ${ver}, expecting %{pharver}.
2218         : Update the pharver macro and rebuild.
2219         exit 1
2220 fi
2221 ver=$(sed -n '/#define PHP_SQLITE3_VERSION/{s/.* "//;s/".*$//;p}' ext/sqlite3/php_sqlite3.h)
2222 if test "$ver" != "%{sqlite3ver}"; then
2223         : Error: Upstream Sqlite3 version is now ${ver}, expecting %{sqlite3ver}.
2224         : Update the sqlite3ver macro and rebuild.
2225         exit 1
2226 fi
2227 ver=$(sed -n '/#define PHP_ZIP_VERSION_STRING /{s/.* "//;s/".*$//;p}' ext/zip/php_zip.h)
2228 if test "$ver" != "%{zipver}"; then
2229         : Error: Upstream ZIP version is now ${ver}, expecting %{zipver}.
2230         : Update the zipver macro and rebuild.
2231         exit 1
2232 fi
2233 ver=$(sed -n '/#define PHP_JSON_VERSION /{s/.* "//;s/".*$//;p}' ext/json/php_json.h)
2234 if test "$ver" != "%{jsonver}"; then
2235         : Error: Upstream JSON version is now ${ver}, expecting %{jsonver}.
2236         : Update the jsonver macro and rebuild.
2237         exit 1
2238 fi
2239 ver=$(sed -rne 's,.*<version>(.+)</version>,\1,p' ext/bz2/package.xml)
2240 if test "$ver" != "%{bz2ver}"; then
2241         : Error: Upstream BZIP2 version is now ${ver}, expecting %{bz2ver}.
2242         : Update the bz2ver macro and rebuild.
2243         exit 1
2244 fi
2245 ver=$(sed -n '/#define PHP_ENCHANT_VERSION /{s/.* "//;s/".*$//;p}' ext/enchant/php_enchant.h)
2246 if test "$ver" != "%{enchantver}"; then
2247         : Error: Upstream Enchant version is now ${ver}, expecting %{enchantver}.
2248         : Update the enchantver macro and rebuild.
2249         exit 1
2250 fi
2251 ver=$(awk '/#define PHP_HASH_EXTVER/ {print $3}' ext/hash/php_hash.h | xargs)
2252 if test "$ver" != "%{hashver}"; then
2253         : Error: Upstream HASH version is now ${ver}, expecting %{hashver}.
2254         : Update the hashver macro and rebuild.
2255         exit 1
2256 fi
2257 ver=$(sed -n '/#define PHP_INTL_VERSION /{s/.* "//;s/".*$//;p}' ext/intl/php_intl.h)
2258 if test "$ver" != "%{intlver}"; then
2259         : Error: Upstream Intl version is now ${ver}, expecting %{intlver}.
2260         : Update the intlver macro and rebuild.
2261         exit 1
2262 fi
2263 ver=$(awk '/#define PHP_SQLITE_MODULE_VERSION/ {print $3}' ext/sqlite/sqlite.c | xargs)
2264 if test "$ver" != "%{sqlitever}"; then
2265         : Error: Upstream Sqlite version is now ${ver}, expecting %{sqlitever}.
2266         : Update the sqlitever macro and rebuild.
2267         exit 1
2268 fi
2269
2270 export EXTENSION_DIR="%{php_extensiondir}"
2271 # configure once (for faster debugging purposes)
2272 if [ ! -f _built-conf ]; then
2273         # now remove Makefile copies
2274         rm -f Makefile.{cgi-fcgi,fpm,cli,apxs1,apxs2,litespeed}
2275         # force regeneration
2276         touch Zend/zend_language_parser.y
2277         %{__libtoolize}
2278         %{__aclocal}
2279         cp -f /usr/share/automake/config.* .
2280         ./buildconf --force
2281         touch _built-conf
2282 fi
2283 export PROG_SENDMAIL="/usr/lib/sendmail"
2284 export CPPFLAGS="-DDEBUG_FASTCGI -DHAVE_STRNDUP %{rpmcppflags} -I%{_includedir}/xmlrpc-epi"
2285 %if %{with lfs}
2286 CPPFLAGS="$CPPFLAGS $(getconf LFS_CFLAGS)"
2287 %endif
2288
2289 sapis="
2290 cli
2291 %if %{with cgi}
2292 cgi-fcgi
2293 %endif
2294 %if %{with litespeed}
2295 litespeed
2296 %endif
2297 %if %{with fpm}
2298 fpm
2299 %endif
2300 %if %{with embed}
2301 embed
2302 %endif
2303 %if %{with apache1}
2304 apxs1
2305 %endif
2306 %if %{with apache2}
2307 apxs2
2308 %endif
2309 "
2310 for sapi in $sapis; do
2311         : SAPI $sapi
2312         # skip if already configured (for faster debugging purposes)
2313         [ -f Makefile.$sapi ] && continue
2314
2315         sapi_args=''
2316         case $sapi in
2317         cgi-fcgi)
2318                 sapi_args='--disable-cli'
2319         ;;
2320         cli)
2321                 sapi_args='--disable-cgi %{?with_gcov:--enable-gcov}'
2322         ;;
2323         fpm)
2324                 sapi_args='--disable-cli --enable-fpm'
2325                 ;;
2326         embed)
2327                 sapi_args='--disable-cli --enable-embed'
2328                 ;;
2329         apxs1)
2330                 ver=$(rpm -q --qf '%{V}' apache1-devel)
2331                 sapi_args="--disable-cli --with-apxs=%{apxs1} --with-apache-version=$ver"
2332         ;;
2333         apxs2)
2334                 ver=$(rpm -q --qf '%{V}' apache-devel)
2335                 sapi_args="--disable-cli --with-apxs2=%{apxs2} --with-apache-version=$ver"
2336         ;;
2337         litespeed)
2338                 sapi_args='--with-litespeed'
2339         ;;
2340         esac
2341
2342         %configure \
2343         EXTRA_LDFLAGS="%{rpmldflags}" \
2344         $sapi_args \
2345 %if "%{!?configure_cache:0}%{?configure_cache}" == "0"
2346         --cache-file=config.cache \
2347 %endif
2348         --with-libdir=%{_lib} \
2349         --with-config-file-path=%{_sysconfdir} \
2350         --with-config-file-scan-dir=%{_sysconfdir}/conf.d \
2351         --with-exec-dir=%{_bindir} \
2352         --with-system-tzdata \
2353         --%{!?debug:dis}%{?debug:en}able-debug \
2354         %{?with_zts:--enable-maintainer-zts} \
2355         --enable-inline-optimization \
2356         --enable-bcmath=shared \
2357         --enable-calendar=shared \
2358         --enable-ctype=shared \
2359         --enable-dba=shared \
2360         --enable-dom=shared \
2361         --enable-exif=shared \
2362         --enable-fileinfo=shared \
2363         --enable-ftp=shared \
2364         --enable-gd-native-ttf \
2365         --enable-intl=shared \
2366         --enable-libxml \
2367         --enable-magic-quotes \
2368         --enable-mbstring=shared,all \
2369         --enable-mbregex \
2370         --enable-pcntl=shared \
2371         --enable-pdo=shared \
2372         --enable-json=shared \
2373         --enable-hash=shared \
2374         --enable-xmlwriter=shared \
2375 %if %{with fpm}
2376         --with-fpm-user=http \
2377         --with-fpm-group=http \
2378 %endif
2379 %if %{with mssql} || %{with sybase_ct}
2380         --with-pdo-dblib=shared \
2381 %endif
2382 %if %{with interbase} && %{without interbase_inst}
2383         --with-pdo-firebird=shared,/usr \
2384 %endif
2385         %{?with_mhash:--with-mhash=yes} \
2386         --with-mysql-sock=/var/lib/mysql/mysql.sock \
2387         --with-pdo-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2388         %{?with_oci:--with-pdo-oci=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2389         %{?with_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \
2390         %{?with_pgsql:--with-pdo-pgsql=shared} \
2391         %{?with_pdo_sqlite:--with-pdo-sqlite=shared,/usr} \
2392         --without-libexpat-dir \
2393         --enable-posix=shared \
2394         --enable-shared \
2395         --enable-session=shared \
2396         --enable-shmop=shared \
2397         --enable-simplexml=shared \
2398         --enable-sysvmsg=shared \
2399         --enable-sysvsem=shared \
2400         --enable-sysvshm=shared \
2401         --enable-safe-mode \
2402         --enable-soap=shared \
2403         --enable-sockets=shared \
2404         --enable-tokenizer=shared \
2405         --enable-ucd-snmp-hack \
2406         %{?with_wddx:--enable-wddx=shared} \
2407         --enable-xml=shared \
2408         --enable-xmlreader=shared \
2409         --with-bz2=shared \
2410         %{__with_without curl curl shared} \
2411         --with-db4 \
2412         --with-iconv=shared \
2413         %{?with_enchant:--with-enchant=shared,/usr} \
2414         --with-freetype-dir=shared \
2415         --with-gettext=shared \
2416         --with-gd=shared%{?with_system_gd:,/usr} \
2417         --with-gdbm \
2418         --with-gmp=shared \
2419         %{?with_imap:--with-imap=shared --with-imap-ssl} \
2420         %{?with_interbase:--with-interbase=shared%{!?with_interbase_inst:,/usr}} \
2421         --with-jpeg-dir=/usr \
2422         %{?with_ldap:--with-ldap=shared --with-ldap-sasl} \
2423         --with-mcrypt=shared \
2424         %{?with_mm:--with-mm} \
2425         %{?with_mssql:--with-mssql=shared} \
2426         %{?with_mysqlnd:--enable-mysqlnd=shared} \
2427         --with-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2428         %{?with_mysqli:--with-mysqli=shared%{?with_mysqlnd:,mysqlnd}} \
2429         %{?with_oci:--with-oci8=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2430         %{?with_openssl:--with-openssl=shared} \
2431         %{?with_kerberos5:--with-kerberos} \
2432         %{__with_without pcre pcre-regex /usr} \
2433         %{__enable_disable filter filter shared} \
2434         --with-pear=%{php_pear_dir} \
2435         %{__with_without pgsql pgsql shared,/usr} \
2436         %{__enable_disable phar phar shared} \
2437         --with-png-dir=/usr \
2438         %{?with_pspell:--with-pspell=shared} \
2439         --with-readline=shared \
2440         %{?with_recode:--with-recode=shared} \
2441         --with-regex=system \
2442         %{?with_snmp:--with-snmp=shared} \
2443         %{?with_sybase_ct:--with-sybase-ct=shared,/usr} \
2444         %{!?with_sqlite2:--without-sqlite}%{?with_sqlite2:--with-sqlite=shared,/usr --enable-sqlite-utf8} \
2445         %{!?with_pdo_sqlite:--without-pdo-sqlite} \
2446         %{__with_without sqlite3 sqlite3 shared,/usr} \
2447         --with-t1lib=shared \
2448         %{?with_tidy:--with-tidy=shared} \
2449         %{?with_odbc:--with-unixODBC=shared,/usr} \
2450         %{__with_without xmlrpc xmlrpc shared,/usr} \
2451         --with-xsl=shared \
2452         --with-zlib=shared \
2453         --with-zlib-dir=shared,/usr \
2454         %{?with_system_libzip:--with-libzip} \
2455         --enable-zip=shared,/usr \
2456
2457         # save for debug
2458         cp -f Makefile Makefile.$sapi
2459         cp -f main/php_config.h php_config.h.$sapi
2460         cp -f config.log config.log.$sapi
2461 done
2462
2463 # as we build each SAPI in own make, adjust php-config.in forehead
2464 sapis=$(awk '/^PHP_SAPI = /{print $3}' Makefile.* | sort -u | xargs)
2465 sed -i -e "s,@PHP_INSTALLED_SAPIS@,$sapis," "scripts/php-config.in"
2466
2467 # must make libphp_common first, so modules can link against it.
2468 cp -af php_config.h.cli main/php_config.h
2469 cp -af Makefile.cli Makefile
2470 %{__make} libphp_common.la
2471 %{__make} build-modules
2472
2473 %if %{with apache1}
2474 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache/libphp5.la -f Makefile.apxs1
2475 %endif
2476
2477 %if %{with apache2}
2478 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache2handler/libphp5.la -f Makefile.apxs2
2479 %endif
2480
2481 %if %{with litespeed}
2482 %{__make} -f Makefile.litespeed
2483 %endif
2484
2485 # CGI/FCGI
2486 %if %{with cgi}
2487 cp -pf php_config.h.cgi-fcgi main/php_config.h
2488 %{__make} -f Makefile.cgi-fcgi
2489 [ "$(echo '<?=php_sapi_name();' | ./sapi/cgi/php-cgi -qn)" = "cgi-fcgi" ]
2490 %endif
2491
2492 # PHP FPM
2493 %if %{with fpm}
2494 cp -pf php_config.h.fpm main/php_config.h
2495 %{__make} -f Makefile.fpm
2496 [ $(./sapi/fpm/php-fpm -n -m | grep cgi-fcgi) = "cgi-fcgi" ]
2497 %endif
2498
2499 # CLI
2500 cp -pf php_config.h.cli main/php_config.h
2501 %{__make} -f Makefile.cli
2502 [ "$(echo '<?=php_sapi_name();' | ./sapi/cli/php -qn)" = "cli" ]
2503
2504 # check for stupid xml parse breakage where &lt; and &gt; just get lost in parse result
2505 ./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"]));'
2506
2507 # Generate stub .ini files for each extension
2508 rm -rf conf.d
2509 install -d conf.d
2510 generate_inifiles() {
2511         for so in modules/*.so; do
2512                 mod=$(basename $so .so)
2513                 conf="$mod.ini"
2514                 # xml needs to be loaded before wddx
2515                 [ "$mod" = "wddx" ] && conf="xml_$mod.ini"
2516                 # pre needs to be loaded before SPL
2517                 [ "$mod" = "pcre" ] && conf="PCRE.ini"
2518                 # spl needs to be loaded before mysqli
2519                 [ "$mod" = "spl" ] && conf="SPL.ini"
2520                 # session needs to be loaded before php-pecl-http, php-pecl-memcache, php-pecl-session_mysql
2521                 [ "$mod" = "session" ] && conf="Session.ini"
2522                 # mysqlnd needs to be loaded before mysql,mysqli,pdo_mysqli
2523                 [ "$mod" = "mysqlnd" ] && conf="MySQLND.ini"
2524                 echo "+ $conf"
2525                 cat > conf.d/$conf <<-EOF
2526                         ; Enable $mod extension module
2527                         extension=$mod.so
2528                 EOF
2529         done
2530 }
2531 generate_inifiles
2532
2533 # Check that the module inner-dependencies are intact
2534 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh > dep-tests.log
2535 if grep -v OK dep-tests.log; then
2536         echo >&2 "The results above were not expected"
2537         exit 1
2538 fi
2539
2540 %if %{with gcov}
2541 # Use CLI SAPI
2542 cp -pf php_config.h.cli main/php_config.h
2543 cp -pf Makefile.cli Makefile
2544 %{__make} lcov
2545 # you really don't want to package result of gcov build
2546 exit 1
2547 %endif
2548
2549 cat <<'EOF' > run-tests.sh
2550 #!/bin/sh
2551 export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
2552 unset TZ LANG LC_ALL || :
2553 %{__make} test \
2554         EXTENSION_DIR=modules \
2555         PHP_TEST_SHARED_SYSTEM_EXTENSIONS= \
2556         RUN_TESTS_SETTINGS="-q $*"
2557 EOF
2558 chmod +x run-tests.sh
2559
2560 %if %{with tests}
2561 # Run tests, using the CLI SAPI
2562 cp -pf php_config.h.cli main/php_config.h
2563 cp -pf Makefile.cli Makefile
2564
2565 ./run-tests.sh -w failed.log -s test.log
2566
2567 # collect failed tests into cleanup script used in prep.
2568 sed -ne '/FAILED TEST SUMMARY/,/^===/p' test.log | sed -e '1,/^---/d;/^===/,$d' > tests-failed.log
2569 sed -ne '/\[.*\]/{s/\(.*\) \[\(.*\)\]/# \1\nmv \2{,.skip}/p}' tests-failed.log \
2570         >> %{_sourcedir}/skip-tests.sh
2571
2572 failed=$(wc -l < tests-failed.log)
2573 if [ "$failed" != 0 ]; then
2574         exit 1
2575 fi
2576 %endif
2577
2578 %install
2579 rm -rf $RPM_BUILD_ROOT
2580 install -d $RPM_BUILD_ROOT{%{_libdir}/{php,apache{,1}},%{_sysconfdir}/{apache,cgi}} \
2581         $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}} \
2582         $RPM_BUILD_ROOT/etc/{apache/conf.d,httpd/conf.d} \
2583         $RPM_BUILD_ROOT%{_mandir}/man{1,8} \
2584
2585 cp -pf php_config.h.cli main/php_config.h
2586 cp -pf Makefile.cli Makefile
2587 %{__make} install \
2588         phpbuilddir=%{_libdir}/%{name}/build \
2589         INSTALL_ROOT=$RPM_BUILD_ROOT
2590
2591 %if %{without default_php}
2592 # version the .phar files
2593 %{__mv} $RPM_BUILD_ROOT%{_bindir}/phar{,%{php_suffix}}.phar
2594 %endif
2595 %if %{with alternatives}
2596 # touch for ghost
2597 %{__rm} $RPM_BUILD_ROOT%{_bindir}/phar
2598 touch $RPM_BUILD_ROOT%{_bindir}/phar
2599 %else
2600 # make link relative
2601 ln -sfn phar%{php_suffix}.phar $RPM_BUILD_ROOT%{_bindir}/phar
2602 %endif
2603
2604 # version suffix
2605 v=$(echo %{version} | cut -d. -f1-2)
2606
2607 # install Apache1 DSO module
2608 %if %{with apache1}
2609 libtool --mode=install install -p sapi/apache/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache1
2610 %{__mv} $RPM_BUILD_ROOT%{_libdir}/apache1/libphp5{,-$v}.so
2611 ln -s libphp5-$v.so $RPM_BUILD_ROOT%{_libdir}/apache1/mod_php.so
2612 %endif
2613
2614 # install Apache2 DSO module
2615 %if %{with apache2}
2616 libtool --mode=install install -p sapi/apache2handler/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache
2617 %{__mv} $RPM_BUILD_ROOT%{_libdir}/apache/libphp5{,-$v}.so
2618 ln -s libphp5-$v.so $RPM_BUILD_ROOT%{_libdir}/apache/mod_php.so
2619 %endif
2620
2621 # install litespeed sapi
2622 %if %{with litespeed}
2623 libtool --mode=install install -p sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/%{name}.litespeed
2624 %endif
2625
2626 libtool --mode=install install -p libphp_common.la $RPM_BUILD_ROOT%{_libdir}
2627
2628 # install CGI/FCGI
2629 %if %{with cgi}
2630 # install-cgi
2631 libtool --mode=install install -p sapi/cgi/php-cgi $RPM_BUILD_ROOT%{_bindir}/%{name}.cgi
2632 ln -sf %{name}.cgi $RPM_BUILD_ROOT%{_bindir}/%{name}.fcgi
2633 cp -p %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/php-cgi-fcgi.ini
2634 %endif
2635
2636 # install FCGI PM
2637 %if %{with fpm}
2638 install -d $RPM_BUILD_ROOT{%{_sysconfdir}/fpm.d,%{_sbindir},%{_datadir}/fpm}
2639 libtool --mode=install install -p sapi/fpm/php-fpm $RPM_BUILD_ROOT%{_sbindir}/%{name}-fpm
2640 cp -p sapi/fpm/php-fpm.8 $RPM_BUILD_ROOT%{_mandir}/man8/%{name}-fpm.8
2641 cp -p sapi/fpm/php-fpm.conf $RPM_BUILD_ROOT%{_sysconfdir}
2642 cp -p sapi/fpm/php-fpm.conf-d $RPM_BUILD_ROOT%{_sysconfdir}/fpm.d/www.conf
2643 cp -p sapi/fpm/status.html $RPM_BUILD_ROOT%{_datadir}/fpm
2644 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
2645 install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}-fpm
2646 install -d $RPM_BUILD_ROOT/etc/logrotate.d
2647 cp -p %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}-fpm
2648 %if "%{pld_release}" == "ac"
2649 %{__sed} -i -e '/su/d' $RPM_BUILD_ROOT/etc/logrotate.d/%{name}-fpm
2650 %endif
2651
2652 %if %{with alternatives}
2653 # touch for ghost for alternatives
2654 touch $RPM_BUILD_ROOT%{_sbindir}/php-fpm
2655 %endif
2656
2657 %{__sed} -i -e '
2658         s#/usr/lib/php#%{php_extensiondir}#
2659         s#/etc/php#%{_sysconfdir}#
2660         s#@processname@#%{name}-fpm#g
2661 ' $RPM_BUILD_ROOT{/etc/{rc.d/init.d/%{name}-fpm,logrotate.d/%{name}-fpm},%{_sysconfdir}/php-fpm.conf,%{_sysconfdir}/fpm.d/www.conf}
2662 %endif
2663
2664 # install Embedded API
2665 %if %{with embed}
2666 %{__make} -f Makefile.embed install-sapi INSTALL_ROOT=$RPM_BUILD_ROOT
2667 # we could use install-headers from Makefile.embed, but that would reinstall all headers
2668 install -d $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2669 cp -p sapi/embed/php_embed.h $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2670 %endif
2671
2672 # install CLI
2673 # versioned suffix is always installed
2674 libtool --mode=install install -p sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php%{ver_suffix}
2675 cp -p sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php%{ver_suffix}.1
2676 echo ".so php%{ver_suffix}.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.1
2677 ln -sf php%{ver_suffix} $RPM_BUILD_ROOT%{_bindir}/php
2678
2679 # .cli extension is installed only if default php.spec in distro for legacy purposes
2680 %if "%{?php_suffix}" == "" && "%{pld_release}" != "ac"
2681 ln -s php%{ver_suffix} $RPM_BUILD_ROOT%{_bindir}/php.cli
2682 %endif
2683
2684 cp -p php.ini $RPM_BUILD_ROOT%{_sysconfdir}/php.ini
2685 cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/php-cli.ini
2686
2687 %if %{with apache1}
2688 cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/apache/conf.d/70_mod_php.conf
2689 cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache.ini
2690 %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/apache1/libphp5.la
2691 %endif
2692
2693 %if %{with apache2}
2694 cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/httpd/conf.d/70_mod_php.conf
2695 cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache2handler.ini
2696 %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/apache/libphp5.la
2697 %endif
2698
2699 # ensure that paths are correct for current php version and arch
2700 grep -El '/etc/php/|/usr/lib/php/' $RPM_BUILD_ROOT%{_sysconfdir}/*.ini | xargs -r \
2701 %{__sed} -i -e '
2702         s#/usr/lib/php#%{php_extensiondir}#
2703         s#/etc/php#%{_sysconfdir}#
2704 '
2705
2706 install -d $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2707 cp -p conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2708
2709 # per SAPI ini directories
2710 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{cgi-fcgi,cli,apache,apache2handler}.d
2711
2712 # for CLI SAPI only
2713 %{__mv} $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d}
2714
2715 # use system automake and {lib,sh}tool
2716 ln -snf /usr/share/automake/config.{guess,sub} $RPM_BUILD_ROOT%{_libdir}/%{name}/build
2717 ln -snf %{_bindir}/shtool $RPM_BUILD_ROOT%{_libdir}/%{name}/build
2718 for fn in libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4; do
2719         f=%{_aclocaldir}/$fn
2720         test -f $f || continue
2721         ln -snf $f $RPM_BUILD_ROOT%{_libdir}/%{name}/build
2722 done
2723 for fn in ltmain.sh config/ltmain.sh build-aux/ltmain.sh; do
2724         f=/usr/share/libtool/$fn
2725         test -f $f || continue
2726         ln -snf $f $RPM_BUILD_ROOT%{_libdir}/%{name}/build
2727         break
2728 done
2729 sed -i -e '/^phpdir/ s,/php/build,/%{name}/build,' $RPM_BUILD_ROOT%{_bindir}/phpize
2730
2731 # for php-pecl-mailparse
2732 install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2733 cp -p ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2734
2735 # tests
2736 install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2737 install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php
2738 cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2739
2740 # fix install paths, avoid evil rpaths
2741 sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la
2742 %if %{with embed}
2743 # libphp5.la contains our buildroot in dependency_libs
2744 sed -i -e "/dependency_libs/ s,/[^ ]*/libs/libphp_common.la,%{_libdir}/libphp_common.la," $RPM_BUILD_ROOT%{_libdir}/libphp5.la
2745 %endif
2746 # better solution?
2747 sed -i -e 's|libphp_common.la|$(libdir)/libphp_common.la|' $RPM_BUILD_ROOT%{_libdir}/%{name}/build/acinclude.m4
2748
2749 %clean
2750 rm -rf $RPM_BUILD_ROOT
2751
2752 %post -n apache1-mod_%{name}
2753 if [ "$1" = "1" ]; then
2754         %service -q apache restart
2755 fi
2756
2757 %postun -n apache1-mod_%{name}
2758 if [ "$1" = "0" ]; then
2759         %service -q apache restart
2760 fi
2761
2762 %post -n apache-mod_%{name}
2763 if [ "$1" = "1" ]; then
2764         %service -q httpd restart
2765 fi
2766
2767 %postun -n apache-mod_%{name}
2768 if [ "$1" = "0" ]; then
2769         %service -q httpd restart
2770 fi
2771
2772 %pre fpm
2773 %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http
2774
2775 %post fpm
2776 /sbin/chkconfig --add %{name}-fpm
2777 %service %{name}-fpm restart
2778 %if %{with alternatives}
2779 update-alternatives --install %{_sbindir}/php-fpm php-fpm %{_sbindir}/php%{ver_suffix}-fpm %{ver_suffix} || :
2780 %endif
2781
2782 %preun fpm
2783 if [ "$1" = "0" ]; then
2784         %service %{name}-fpm stop
2785         /sbin/chkconfig --del %{name}-fpm
2786 %if %{with alternatives}
2787         update-alternatives --remove php-fpm %{_sbindir}/php-fpm || :
2788 %endif
2789 fi
2790
2791 %postun fpm
2792 if [ "$1" = "0" ]; then
2793         %userremove http
2794 fi
2795
2796 %post   embedded -p /sbin/ldconfig
2797 %postun embedded -p /sbin/ldconfig
2798
2799 %posttrans common
2800 # PHP 5.3 requires timezone being setup, try setup it from tzdata
2801 if ! grep -q '^date.timezone[[:space:]]*=' %{_sysconfdir}/php.ini && [ -f /etc/sysconfig/timezone ]; then
2802         TIMEZONE=
2803         . /etc/sysconfig/timezone
2804         if [ "$TIMEZONE" ]; then
2805                 %{__sed} -i -e "s,^;date.timezone[[:space:]]*=.*,date.timezone = $TIMEZONE," %{_sysconfdir}/php.ini
2806         fi
2807 fi
2808
2809 # minimizing apache restarts logics. we restart webserver:
2810 #
2811 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2812 # 2. first install of extension (post: $1 = 1)
2813 # 2. uninstall of extension (postun: $1 == 0)
2814 #
2815 # the strict internal deps between extensions (and apache modules) and
2816 # common package are very important for all this to work.
2817
2818 # restart webserver at the end of transaction
2819 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart
2820 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart
2821
2822 %triggerpostun common -- php-common < 4:5.3.28-7
2823 # migrate configs /etc/php/conf.d -> /etc/phpXY/conf.d/
2824 # do config migration in php-common trigger, as the trigger is ran after all packages are upgraded
2825 # this way we can stick to one trigger, instead of attaching one for each (sub)package!
2826 for f in /etc/php/*.ini.rpmsave /etc/php/*.d/*.ini.rpmsave; do
2827         test -f "$f" || continue
2828         bn=${f#/etc/php/}
2829         dn=${bn%/*}
2830         fn=${bn#*/}
2831         test "$dn" = "$fn" && dn=
2832         fn=${fn%.rpmsave}
2833         nf=%{_sysconfdir}/$dn/$fn
2834         test -f "$nf" || continue
2835         cp -vfb $nf{,.rpmnew}
2836         cp -vfb $f $nf
2837         %{__sed} -i -e '
2838                 s#%{_libdir}/php#%{_libdir}/%{name}#
2839                 s#/etc/php#%{_sysconfdir}#
2840         ' $nf
2841 done
2842
2843 %triggerpostun common -- %{name}-common < 4:5.3.29-7, php-common < 4:5.3.29-7
2844 # switch to browscap package if the ini file has original value
2845 %{__sed} -i -e 's#%{_sysconfdir}/browscap.ini#/usr/share/browscap/php_browscap.ini#' %{_sysconfdir}/php.ini
2846 # disable browscap, if optional package not present
2847 if [ ! -e /usr/share/browscap/php_browscap.ini ]; then
2848         %{__sed} -i -e 's#^browscap = /usr/share/browscap/php_browscap.ini#;&#' %{_sysconfdir}/php.ini
2849 fi
2850
2851 %triggerpostun -n apache1-mod_%{name} -- apache1-mod_%{name} < 4:5.3.29-23
2852 sed -i -e 's#modules/libphp5.so#modules/mod_php.so#g' /etc/apache/conf.d/*_mod_php.conf
2853
2854 %triggerpostun -n apache-mod_%{name} -- apache-mod_%{name} < 4:5.3.29-23
2855 sed -i -e 's#modules/libphp[57].so#modules/mod_php.so#g' /etc/httpd/conf.d/*_mod_php.conf
2856
2857 # common macros called at extension post/postun scriptlet
2858 %define ext_post \
2859 if [ "$1" = "1" ]; then \
2860         %php_webserver_restart \
2861 fi \
2862 %{nil}
2863
2864 %define ext_postun \
2865 if [ "$1" = "0" ]; then \
2866         %php_webserver_restart \
2867 fi \
2868 %{nil}
2869
2870 %define extension_scripts() \
2871 %post %1 \
2872 %ext_post \
2873 \
2874 %postun %1 \
2875 %ext_postun \
2876 %{nil}
2877
2878 # extension scripts defines
2879 %extension_scripts bcmath
2880 %extension_scripts bz2
2881 %extension_scripts calendar
2882 %extension_scripts ctype
2883 %extension_scripts curl
2884 %extension_scripts dba
2885 %extension_scripts dom
2886 %extension_scripts enchant
2887 %extension_scripts exif
2888 %extension_scripts fileinfo
2889 %extension_scripts filter
2890 %extension_scripts ftp
2891 %extension_scripts gd
2892 %extension_scripts gettext
2893 %extension_scripts gmp
2894 %extension_scripts hash
2895 %extension_scripts iconv
2896 %extension_scripts imap
2897 %extension_scripts interbase
2898 %extension_scripts intl
2899 %extension_scripts json
2900 %extension_scripts ldap
2901 %extension_scripts mbstring
2902 %extension_scripts mcrypt
2903 %extension_scripts mssql
2904 %extension_scripts mysql
2905 %extension_scripts mysqli
2906 %extension_scripts mysqlnd
2907 %extension_scripts oci8
2908 %extension_scripts odbc
2909 %extension_scripts openssl
2910 %extension_scripts pcre
2911 %extension_scripts pdo
2912 %extension_scripts pdo-dblib
2913 %extension_scripts pdo-firebird
2914 %extension_scripts pdo-oci
2915 %extension_scripts pdo-mysql
2916 %extension_scripts pdo-odbc
2917 %extension_scripts pdo-pgsql
2918 %extension_scripts pdo-sqlite
2919 %extension_scripts pgsql
2920 %extension_scripts pcntl
2921 %extension_scripts posix
2922 %extension_scripts pspell
2923 %extension_scripts recode
2924 %extension_scripts session
2925 %extension_scripts shmop
2926 %extension_scripts simplexml
2927 %extension_scripts snmp
2928 %extension_scripts soap
2929 %extension_scripts sockets
2930 %extension_scripts spl
2931 %extension_scripts sqlite
2932 %extension_scripts sqlite3
2933 %extension_scripts sybase-ct
2934 %extension_scripts sysvmsg
2935 %extension_scripts sysvsem
2936 %extension_scripts sysvshm
2937 %extension_scripts tidy
2938 %extension_scripts tokenizer
2939 %extension_scripts wddx
2940 %extension_scripts xml
2941 %extension_scripts xmlreader
2942 %extension_scripts xmlrpc
2943 %extension_scripts xmlwriter
2944 %extension_scripts xsl
2945 %extension_scripts zip
2946 %extension_scripts zlib
2947
2948 %post phar
2949 %ext_post
2950 %if %{with alternatives}
2951 update-alternatives --install %{_bindir}/phar phar %{_bindir}/phar%{ver_suffix}.phar %{ver_suffix} || :
2952 %endif
2953
2954 %postun phar
2955 %ext_postun
2956 %if %{with alternatives}
2957 if [ $1 -eq 0 ]; then
2958         update-alternatives --remove phar %{_bindir}/phar || :
2959 fi
2960 %endif
2961
2962 %if %{with apache1}
2963 %files -n apache1-mod_%{name}
2964 %defattr(644,root,root,755)
2965 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/apache/conf.d/*_mod_php.conf
2966 %dir %{_sysconfdir}/apache.d
2967 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache.ini
2968 %attr(755,root,root) %{_libdir}/apache1/mod_php.so
2969 %attr(755,root,root) %{_libdir}/apache1/libphp5-*.*.so
2970 %endif
2971
2972 %if %{with apache2}
2973 %files -n apache-mod_%{name}
2974 %defattr(644,root,root,755)
2975 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/httpd/conf.d/*_mod_php.conf
2976 %dir %{_sysconfdir}/apache2handler.d
2977 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache2handler.ini
2978 %attr(755,root,root) %{_libdir}/apache/mod_php.so
2979 %attr(755,root,root) %{_libdir}/apache/libphp5-*.*.so
2980 %endif
2981
2982 %if %{with litespeed}
2983 %files litespeed
2984 %defattr(644,root,root,755)
2985 %attr(755,root,root) %{_sbindir}/%{name}.litespeed
2986 %endif
2987
2988 %if %{with cgi}
2989 %files cgi
2990 %defattr(644,root,root,755)
2991 %dir %{_sysconfdir}/cgi-fcgi.d
2992 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cgi-fcgi.ini
2993 %attr(755,root,root) %{_bindir}/%{name}.cgi
2994 %attr(755,root,root) %{_bindir}/%{name}.fcgi
2995 %endif
2996
2997 %if %{with embed}
2998 %files embedded
2999 %defattr(644,root,root,755)
3000 %attr(755,root,root) %{_libdir}/libphp5-%{version}.so
3001 %endif
3002
3003 %files cli
3004 %defattr(644,root,root,755)
3005 %dir %{_sysconfdir}/cli.d
3006 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cli.ini
3007 %attr(755,root,root) %{_bindir}/php%{ver_suffix}
3008 %{_mandir}/man1/php%{ver_suffix}.1*
3009
3010 # legacy. do we really need it?
3011 %if "%{?php_suffix}" == "" && "%{pld_release}" != "ac"
3012 %attr(755,root,root) %{_bindir}/php.cli
3013 %endif
3014
3015 %files program
3016 %defattr(644,root,root,755)
3017 %attr(755,root,root) %{_bindir}/php
3018 %{_mandir}/man1/php.1*
3019
3020 %if %{with fpm}
3021 %files fpm
3022 %defattr(644,root,root,755)
3023 %doc sapi/fpm/{CREDITS,LICENSE}
3024 %dir %{_sysconfdir}/fpm.d
3025 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-fpm.conf
3026 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/fpm.d/www.conf
3027 %attr(755,root,root) %{_sbindir}/%{name}-fpm
3028 %if %{with alternatives}
3029 %ghost %{_sbindir}/php-fpm
3030 %endif
3031 %{_mandir}/man8/%{name}-fpm.8*
3032 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}-fpm
3033 %attr(754,root,root) /etc/rc.d/init.d/%{name}-fpm
3034 %dir %{_datadir}/fpm
3035 %{_datadir}/fpm/status.html
3036 %endif
3037
3038 %files common
3039 %defattr(644,root,root,755)
3040 %doc CREDITS EXTENSIONS LICENSE NEWS README.{PHP4-TO-PHP5-THIN-CHANGES,namespaces} TODO* UPGRADING* Zend/{LICENSE.Zend,ZEND_CHANGES} php.ini-*
3041 %dir %{_sysconfdir}
3042 %dir %{_sysconfdir}/conf.d
3043 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.ini
3044 %attr(755,root,root) %{_libdir}/libphp_common-*.so
3045 %dir %{php_extensiondir}
3046
3047 %doc ext/session/mod_files.sh
3048
3049 %files devel
3050 %defattr(644,root,root,755)
3051 %doc CODING_STANDARDS README.{EXTENSIONS,EXT_SKEL,PARAMETER_PARSING_API,SELF-CONTAINED-EXTENSIONS,STREAMS,SUBMITTING_PATCH,TESTING,TESTING2,UNIX-BUILD-SYSTEM,input_filter}
3052 %attr(755,root,root) %{_bindir}/phpize
3053 %attr(755,root,root) %{_bindir}/php-config
3054 %attr(755,root,root) %{_libdir}/libphp_common.so
3055 %{_libdir}/libphp_common.la
3056 %{_includedir}/php
3057 %{_libdir}/%{name}/build
3058 %{_mandir}/man1/php-config.1*
3059 %{_mandir}/man1/phpize.1*
3060 %if %{with embed}
3061 # embedded
3062 %{_libdir}/libphp5.so
3063 %{_libdir}/libphp5.la
3064 %endif
3065
3066 %files bcmath
3067 %defattr(644,root,root,755)
3068 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bcmath.ini
3069 %attr(755,root,root) %{php_extensiondir}/bcmath.so
3070
3071 %files bz2
3072 %defattr(644,root,root,755)
3073 %doc ext/bz2/CREDITS
3074 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bz2.ini
3075 %attr(755,root,root) %{php_extensiondir}/bz2.so
3076
3077 %files calendar
3078 %defattr(644,root,root,755)
3079 %doc ext/calendar/CREDITS
3080 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/calendar.ini
3081 %attr(755,root,root) %{php_extensiondir}/calendar.so
3082
3083 %files ctype
3084 %defattr(644,root,root,755)
3085 %doc ext/calendar/CREDITS
3086 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ctype.ini
3087 %attr(755,root,root) %{php_extensiondir}/ctype.so
3088
3089 %if %{with curl}
3090 %files curl
3091 %defattr(644,root,root,755)
3092 %doc ext/curl/CREDITS
3093 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/curl.ini
3094 %attr(755,root,root) %{php_extensiondir}/curl.so
3095 %endif
3096
3097 %files dba
3098 %defattr(644,root,root,755)
3099 %doc ext/dba/{CREDITS,README}
3100 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dba.ini
3101 %attr(755,root,root) %{php_extensiondir}/dba.so
3102
3103 %files dom
3104 %defattr(644,root,root,755)
3105 %doc ext/dom/{CREDITS,TODO}
3106 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dom.ini
3107 %attr(755,root,root) %{php_extensiondir}/dom.so
3108
3109 %if %{with enchant}
3110 %files enchant
3111 %defattr(644,root,root,755)
3112 %doc ext/enchant/{CREDITS,docs/examples}
3113 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/enchant.ini
3114 %attr(755,root,root) %{php_extensiondir}/enchant.so
3115 %endif
3116
3117 %files exif
3118 %defattr(644,root,root,755)
3119 %doc ext/exif/CREDITS
3120 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/exif.ini
3121 %attr(755,root,root) %{php_extensiondir}/exif.so
3122
3123 %files fileinfo
3124 %defattr(644,root,root,755)
3125 %doc ext/fileinfo/CREDITS
3126 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fileinfo.ini
3127 %attr(755,root,root) %{php_extensiondir}/fileinfo.so
3128
3129 %if %{with filter}
3130 %files filter
3131 %defattr(644,root,root,755)
3132 %doc ext/filter/{CREDITS,docs/*}
3133 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/filter.ini
3134 %attr(755,root,root) %{php_extensiondir}/filter.so
3135 %endif
3136
3137 %files ftp
3138 %defattr(644,root,root,755)
3139 %doc ext/ftp/CREDITS
3140 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ftp.ini
3141 %attr(755,root,root) %{php_extensiondir}/ftp.so
3142
3143 %files gd
3144 %defattr(644,root,root,755)
3145 %doc ext/gd/CREDITS
3146 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gd.ini
3147 %attr(755,root,root) %{php_extensiondir}/gd.so
3148
3149 %files gettext
3150 %defattr(644,root,root,755)
3151 %doc ext/gettext/CREDITS
3152 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gettext.ini
3153 %attr(755,root,root) %{php_extensiondir}/gettext.so
3154
3155 %files gmp
3156 %defattr(644,root,root,755)
3157 %doc ext/gmp/{CREDITS,README,TODO}
3158 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gmp.ini
3159 %attr(755,root,root) %{php_extensiondir}/gmp.so
3160
3161 %files hash
3162 %defattr(644,root,root,755)
3163 %doc ext/hash/{CREDITS,README}
3164 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/hash.ini
3165 %attr(755,root,root) %{php_extensiondir}/hash.so
3166
3167 %files iconv
3168 %defattr(644,root,root,755)
3169 %doc ext/iconv/CREDITS
3170 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/iconv.ini
3171 %attr(755,root,root) %{php_extensiondir}/iconv.so
3172
3173 %if %{with imap}
3174 %files imap
3175 %defattr(644,root,root,755)
3176 %doc ext/imap/CREDITS
3177 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/imap.ini
3178 %attr(755,root,root) %{php_extensiondir}/imap.so
3179 %endif
3180
3181 %if %{with interbase}
3182 %files interbase
3183 %defattr(644,root,root,755)
3184 %doc ext/interbase/CREDITS
3185 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/interbase.ini
3186 %attr(755,root,root) %{php_extensiondir}/interbase.so
3187 %endif
3188
3189 %files intl
3190 %defattr(644,root,root,755)
3191 %doc ext/intl/{CREDITS,TODO}
3192 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/intl.ini
3193 %attr(755,root,root) %{php_extensiondir}/intl.so
3194
3195 %files json
3196 %defattr(644,root,root,755)
3197 %doc ext/json/CREDITS
3198 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/json.ini
3199 %attr(755,root,root) %{php_extensiondir}/json.so
3200
3201 %if %{with ldap}
3202 %files ldap
3203 %defattr(644,root,root,755)
3204 %doc ext/ldap/CREDITS
3205 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ldap.ini
3206 %attr(755,root,root) %{php_extensiondir}/ldap.so
3207 %endif
3208
3209 %files mbstring
3210 %defattr(644,root,root,755)
3211 %doc ext/mbstring/{CREDITS,README*}
3212 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mbstring.ini
3213 %attr(755,root,root) %{php_extensiondir}/mbstring.so
3214
3215 %files mcrypt
3216 %defattr(644,root,root,755)
3217 %doc ext/mcrypt/{CREDITS,TODO}
3218 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mcrypt.ini
3219 %attr(755,root,root) %{php_extensiondir}/mcrypt.so
3220
3221 %if %{with mssql}
3222 %files mssql
3223 %defattr(644,root,root,755)
3224 %doc ext/mssql/CREDITS
3225 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mssql.ini
3226 %attr(755,root,root) %{php_extensiondir}/mssql.so
3227 %endif
3228
3229 %files mysql
3230 %defattr(644,root,root,755)
3231 %doc ext/mysql/CREDITS
3232 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysql.ini
3233 %attr(755,root,root) %{php_extensiondir}/mysql.so
3234
3235 %if %{with mysqli}
3236 %files mysqli
3237 %defattr(644,root,root,755)
3238 %doc ext/mysqli/{CREDITS,TODO}
3239 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysqli.ini
3240 %attr(755,root,root) %{php_extensiondir}/mysqli.so
3241 %endif
3242
3243 %if %{with mysqlnd}
3244 %files mysqlnd
3245 %defattr(644,root,root,755)
3246 %doc ext/mysqlnd/CREDITS
3247 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/MySQLND.ini
3248 %attr(755,root,root) %{php_extensiondir}/mysqlnd.so
3249 %endif
3250
3251 %if %{with oci}
3252 %files oci8
3253 %defattr(644,root,root,755)
3254 %doc ext/oci8/{CREDITS,README}
3255 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/oci8.ini
3256 %attr(755,root,root) %{php_extensiondir}/oci8.so
3257 %endif
3258
3259 %if %{with odbc}
3260 %files odbc
3261 %defattr(644,root,root,755)
3262 %doc ext/odbc/CREDITS
3263 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/odbc.ini
3264 %attr(755,root,root) %{php_extensiondir}/odbc.so
3265 %endif
3266
3267 %if %{with openssl}
3268 %files openssl
3269 %defattr(644,root,root,755)
3270 %doc ext/openssl/{CREDITS,README}
3271 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/openssl.ini
3272 %attr(755,root,root) %{php_extensiondir}/openssl.so
3273 %endif
3274
3275 %files pcntl
3276 %defattr(644,root,root,755)
3277 %doc ext/pcntl/{CREDITS,README}
3278 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pcntl.ini
3279 %attr(755,root,root) %{php_extensiondir}/pcntl.so
3280
3281 %if %{with pcre}
3282 %files pcre
3283 %defattr(644,root,root,755)
3284 %doc ext/pcre/CREDITS
3285 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/PCRE.ini
3286 %attr(755,root,root) %{php_extensiondir}/pcre.so
3287 %endif
3288
3289 %files pdo
3290 %defattr(644,root,root,755)
3291 %doc ext/pdo/{CREDITS,README,TODO}
3292 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo.ini
3293 %attr(755,root,root) %{php_extensiondir}/pdo.so
3294
3295 %if %{with mssql} || %{with sybase_ct}
3296 %files pdo-dblib
3297 %defattr(644,root,root,755)
3298 %doc ext/pdo_dblib/{CREDITS,README}
3299 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_dblib.ini
3300 %attr(755,root,root) %{php_extensiondir}/pdo_dblib.so
3301 %endif
3302
3303 %if %{with interbase} && !%{with interbase_inst}
3304 %files pdo-firebird
3305 %defattr(644,root,root,755)
3306 %doc ext/pdo_firebird/CREDITS
3307 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_firebird.ini
3308 %attr(755,root,root) %{php_extensiondir}/pdo_firebird.so
3309 %endif
3310
3311 %files pdo-mysql
3312 %defattr(644,root,root,755)
3313 %doc ext/pdo_mysql/CREDITS
3314 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_mysql.ini
3315 %attr(755,root,root) %{php_extensiondir}/pdo_mysql.so
3316
3317 %if %{with oci}
3318 %files pdo-oci
3319 %defattr(644,root,root,755)
3320 %doc ext/pdo_oci/CREDITS
3321 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_oci.ini
3322 %attr(755,root,root) %{php_extensiondir}/pdo_oci.so
3323 %endif
3324
3325 %if %{with odbc}
3326 %files pdo-odbc
3327 %defattr(644,root,root,755)
3328 %doc ext/pdo_odbc/CREDITS
3329 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_odbc.ini
3330 %attr(755,root,root) %{php_extensiondir}/pdo_odbc.so
3331 %endif
3332
3333 %if %{with pgsql}
3334 %files pdo-pgsql
3335 %defattr(644,root,root,755)
3336 %doc ext/pdo_pgsql/CREDITS
3337 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_pgsql.ini
3338 %attr(755,root,root) %{php_extensiondir}/pdo_pgsql.so
3339 %endif
3340
3341 %if %{with pdo_sqlite}
3342 %files pdo-sqlite
3343 %defattr(644,root,root,755)
3344 %doc ext/pdo_sqlite/CREDITS
3345 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_sqlite.ini
3346 %attr(755,root,root) %{php_extensiondir}/pdo_sqlite.so
3347 %endif
3348
3349 %if %{with pgsql}
3350 %files pgsql
3351 %defattr(644,root,root,755)
3352 %doc ext/pgsql/{CREDITS,README}
3353 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pgsql.ini
3354 %attr(755,root,root) %{php_extensiondir}/pgsql.so
3355 %endif
3356
3357 %if %{with phar}
3358 %files phar
3359 %defattr(644,root,root,755)
3360 %doc ext/phar/{CREDITS,TODO}
3361 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/phar.ini
3362 %attr(755,root,root) %{php_extensiondir}/phar.so
3363 %attr(755,root,root) %{_bindir}/phar%{php_suffix}.phar
3364 %if %{with alternatives}
3365 %ghost %{_bindir}/phar
3366 %else
3367 %attr(755,root,root) %{_bindir}/phar
3368 %endif
3369 %endif
3370
3371 %files posix
3372 %defattr(644,root,root,755)
3373 %doc ext/posix/CREDITS
3374 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/posix.ini
3375 %attr(755,root,root) %{php_extensiondir}/posix.so
3376
3377 %if %{with pspell}
3378 %files pspell
3379 %defattr(644,root,root,755)
3380 %doc ext/pspell/{CREDITS,README}
3381 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pspell.ini
3382 %attr(755,root,root) %{php_extensiondir}/pspell.so
3383 %endif
3384
3385 %files readline
3386 %defattr(644,root,root,755)
3387 %doc ext/readline/{CREDITS,README*}
3388 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/readline.ini
3389 %attr(755,root,root) %{php_extensiondir}/readline.so
3390
3391 %if %{with recode}
3392 %files recode
3393 %defattr(644,root,root,755)
3394 %doc ext/recode/CREDITS
3395 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/recode.ini
3396 %attr(755,root,root) %{php_extensiondir}/recode.so
3397 %endif
3398
3399 %files session
3400 %defattr(644,root,root,755)
3401 %doc ext/session/CREDITS
3402 %doc ext/session/mod_files.sh
3403 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/Session.ini
3404 %attr(755,root,root) %{php_extensiondir}/session.so
3405
3406 %files shmop
3407 %defattr(644,root,root,755)
3408 %doc ext/shmop/{CREDITS,README}
3409 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/shmop.ini
3410 %attr(755,root,root) %{php_extensiondir}/shmop.so
3411
3412 %files simplexml
3413 %defattr(644,root,root,755)
3414 %doc ext/simplexml/{CREDITS,README}
3415 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/simplexml.ini
3416 %attr(755,root,root) %{php_extensiondir}/simplexml.so
3417
3418 %if %{with snmp}
3419 %files snmp
3420 %defattr(644,root,root,755)
3421 %doc ext/snmp/CREDITS
3422 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/snmp.ini
3423 %attr(755,root,root) %{php_extensiondir}/snmp.so
3424 %endif
3425
3426 %files soap
3427 %defattr(644,root,root,755)
3428 %doc ext/soap/{CREDITS,TODO*}
3429 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/soap.ini
3430 %attr(755,root,root) %{php_extensiondir}/soap.so
3431
3432 %files sockets
3433 %defattr(644,root,root,755)
3434 %doc ext/sockets/CREDITS
3435 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sockets.ini
3436 %attr(755,root,root) %{php_extensiondir}/sockets.so
3437
3438 %files spl
3439 %defattr(644,root,root,755)
3440 %doc ext/spl/{CREDITS,README,TODO,examples}
3441 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/SPL.ini
3442 %attr(755,root,root) %{php_extensiondir}/spl.so
3443
3444 %if %{with sqlite2}
3445 %files sqlite
3446 %defattr(644,root,root,755)
3447 %doc ext/sqlite/{README,TODO,CREDITS}
3448 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite.ini
3449 %attr(755,root,root) %{php_extensiondir}/sqlite.so
3450 %endif
3451
3452 %if %{with sqlite3}
3453 %files sqlite3
3454 %defattr(644,root,root,755)
3455 %doc ext/sqlite3/CREDITS
3456 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite3.ini
3457 %attr(755,root,root) %{php_extensiondir}/sqlite3.so
3458 %endif
3459
3460 %if %{with sybase_ct}
3461 %files sybase-ct
3462 %defattr(644,root,root,755)
3463 %doc ext/sybase_ct/CREDITS
3464 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sybase_ct.ini
3465 %attr(755,root,root) %{php_extensiondir}/sybase_ct.so
3466 %endif
3467
3468 %files sysvmsg
3469 %defattr(644,root,root,755)
3470 %doc ext/sysvmsg/CREDITS
3471 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvmsg.ini
3472 %attr(755,root,root) %{php_extensiondir}/sysvmsg.so
3473
3474 %files sysvsem
3475 %defattr(644,root,root,755)
3476 %doc ext/sysvsem/CREDITS
3477 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvsem.ini
3478 %attr(755,root,root) %{php_extensiondir}/sysvsem.so
3479
3480 %files sysvshm
3481 %defattr(644,root,root,755)
3482 %doc ext/sysvshm/CREDITS
3483 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvshm.ini
3484 %attr(755,root,root) %{php_extensiondir}/sysvshm.so
3485
3486 %files tests
3487 %defattr(644,root,root,755)
3488 %dir %{php_data_dir}/tests/php
3489 %{php_data_dir}/tests/php/basic
3490 %{php_data_dir}/tests/php/classes
3491 %{php_data_dir}/tests/php/func
3492 %{php_data_dir}/tests/php/lang
3493 %{php_data_dir}/tests/php/output
3494 %{php_data_dir}/tests/php/run-test
3495 %{php_data_dir}/tests/php/security
3496 %{php_data_dir}/tests/php/strings
3497 %{php_data_dir}/tests/php/quicktester.inc
3498 %attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php
3499
3500 %if %{with tidy}
3501 %files tidy
3502 %defattr(644,root,root,755)
3503 %doc ext/tidy/{CREDITS,README}
3504 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tidy.ini
3505 %attr(755,root,root) %{php_extensiondir}/tidy.so
3506 %endif
3507
3508 %files tokenizer
3509 %defattr(644,root,root,755)
3510 %doc ext/tokenizer/CREDITS
3511 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tokenizer.ini
3512 %attr(755,root,root) %{php_extensiondir}/tokenizer.so
3513
3514 %if %{with wddx}
3515 %files wddx
3516 %defattr(644,root,root,755)
3517 %doc ext/wddx/CREDITS
3518 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*wddx.ini
3519 %attr(755,root,root) %{php_extensiondir}/wddx.so
3520 %endif
3521
3522 %files xml
3523 %defattr(644,root,root,755)
3524 %doc ext/xml/CREDITS
3525 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xml.ini
3526 %attr(755,root,root) %{php_extensiondir}/xml.so
3527
3528 %files xmlreader
3529 %defattr(644,root,root,755)
3530 %doc ext/xmlreader/{CREDITS,README,TODO,examples}
3531 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlreader.ini
3532 %attr(755,root,root) %{php_extensiondir}/xmlreader.so
3533
3534 %if %{with xmlrpc}
3535 %files xmlrpc
3536 %defattr(644,root,root,755)
3537 %doc ext/xmlrpc/CREDITS
3538 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlrpc.ini
3539 %attr(755,root,root) %{php_extensiondir}/xmlrpc.so
3540 %endif
3541
3542 %files xmlwriter
3543 %defattr(644,root,root,755)
3544 %doc ext/xmlwriter/{CREDITS,TODO}
3545 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlwriter.ini
3546 %attr(755,root,root) %{php_extensiondir}/xmlwriter.so
3547
3548 %files xsl
3549 %defattr(644,root,root,755)
3550 %doc ext/xsl/CREDITS
3551 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xsl.ini
3552 %attr(755,root,root) %{php_extensiondir}/xsl.so
3553
3554 %files zip
3555 %defattr(644,root,root,755)
3556 %doc ext/zip/{CREDITS,TODO}
3557 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zip.ini
3558 %attr(755,root,root) %{php_extensiondir}/zip.so
3559
3560 %files zlib
3561 %defattr(644,root,root,755)
3562 %doc ext/zlib/CREDITS
3563 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zlib.ini
3564 %attr(755,root,root) %{php_extensiondir}/zlib.so
This page took 0.365879 seconds and 3 git commands to generate.