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