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