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