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