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