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