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