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