]> git.pld-linux.org Git - packages/php.git/blob - php.spec
- ac fix
[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     8
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 sed -i -e '/PHP_ADD_LIBRARY_WITH_PATH/s#xmlrpc,#xmlrpc-epi,#' ext/xmlrpc/config.m4
1901
1902 # cleanup backups after patching
1903 find '(' -name '*~' -o -name '*.orig' ')' -print0 | xargs -0 -r -l512 rm -f
1904
1905 # conflict seems to be resolved by recode patches
1906 %{__rm} ext/recode/config9.m4
1907
1908 # remove all bundled libraries not to link with them accidentally
1909 #%{__rm} -r ext/sqlite/libsqlite
1910 %{__rm} -r ext/sqlite3/libsqlite
1911 #%{__rm} -r ext/bcmath/libbcmath
1912 #%{__rm} -r ext/date/lib
1913 #%{__rm} -r ext/fileinfo/libmagic
1914 #%{__rm} -r ext/dba/libcdb
1915 #%{__rm} -r ext/dba/libflatfile
1916 #%{__rm} -r ext/dba/libinifile
1917 #%{__rm} -r ext/gd/libgd
1918 #%{__rm} -r ext/mbstring/libmbfl
1919 #%{__rm} -r ext/mbstring/oniguruma
1920 %{__rm} -r ext/pcre/pcrelib
1921 #%{__rm} -r ext/soap/interop
1922 %{__rm} -r ext/xmlrpc/libxmlrpc
1923 #%{__rm} -r ext/zip/lib
1924
1925 cp -pf Zend/LICENSE{,.Zend}
1926 install -p %{SOURCE13} dep-tests.sh
1927
1928 # breaks build
1929 sed -i -e 's#-fvisibility=hidden##g' configure*
1930
1931 # disable broken tests
1932 # says just "Terminated" twice and fails
1933 mv sapi/cli/tests/022.phpt{,.broken}
1934
1935 # php-5.3.3/ext/standard/tests/file/statpage.phpt
1936 %{__rm} ext/standard/tests/file/statpage.phpt
1937
1938 # idiotic test, it will fail if somebody else makes space on disk or if disk
1939 # space is not yet allocated (xfs). report upstream to advice bogus test is
1940 # probably pointless.
1941 %{__rm} ext/standard/tests/file/disk_free_space_basic.phpt
1942
1943 sh -xe %{_sourcedir}/skip-tests.sh
1944
1945 %build
1946 API=$(awk '/#define PHP_API_VERSION/{print $3}' main/php.h)
1947 if [ $API != %{php_api_version} ]; then
1948         echo "Set %%define php_api_version to $API and re-run."
1949         exit 1
1950 fi
1951
1952 API=$(awk '/#define ZEND_MODULE_API_NO/{print $3}' Zend/zend_modules.h)
1953 if [ $API != %{zend_module_api} ]; then
1954         echo "Set %%define zend_module_api to $API and re-run."
1955         exit 1
1956 fi
1957
1958 API=$(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' Zend/zend_extensions.h)
1959 if [ $API != %{zend_extension_api} ]; then
1960         echo "Set %%define zend_extension_api to $API and re-run."
1961         exit 1
1962 fi
1963
1964 export EXTENSION_DIR="%{php_extensiondir}"
1965 # configure once (for faster debugging purposes)
1966 if [ ! -f _built-conf ]; then
1967         # now remove Makefile copies
1968         rm -f Makefile.{cgi-fcgi,fpm,cli,apxs1,apxs2,litespeed}
1969         %{__libtoolize}
1970         %{__aclocal}
1971         cp -f /usr/share/automake/config.* .
1972         ./buildconf --force
1973         touch _built-conf
1974 fi
1975 export PROG_SENDMAIL="/usr/lib/sendmail"
1976 export CPPFLAGS="-DDEBUG_FASTCGI -DHAVE_STRNDUP %{rpmcppflags} \
1977         -I%{_includedir}/xmlrpc-epi"
1978
1979 sapis="
1980 cli
1981 %if %{with cgi}
1982 cgi-fcgi
1983 %endif
1984 %if %{with litespeed}
1985 litespeed
1986 %endif
1987 %if %{with fpm}
1988 fpm
1989 %endif
1990 %if %{with embed}
1991 embed
1992 %endif
1993 %if %{with apache1}
1994 apxs1
1995 %endif
1996 %if %{with apache2}
1997 apxs2
1998 %endif
1999 "
2000 for sapi in $sapis; do
2001         : SAPI $sapi
2002         # skip if already configured (for faster debugging purposes)
2003         [ -f Makefile.$sapi ] && continue
2004
2005         sapi_args=''
2006         case $sapi in
2007         cgi-fcgi)
2008                 sapi_args='--disable-cli'
2009         ;;
2010         cli)
2011                 sapi_args='--disable-cgi %{?with_gcov:--enable-gcov}'
2012         ;;
2013         fpm)
2014                 sapi_args='--disable-cli --enable-fpm'
2015                 ;;
2016         embed)
2017                 sapi_args='--disable-cli --enable-embed'
2018                 ;;
2019         apxs1)
2020                 ver=$(rpm -q --qf '%{V}' apache1-devel)
2021                 sapi_args="--disable-cli --with-apxs=%{apxs1} --with-apache-version=$ver"
2022         ;;
2023         apxs2)
2024                 ver=$(rpm -q --qf '%{V}' apache-devel)
2025                 sapi_args="--disable-cli --with-apxs2=%{apxs2} --with-apache-version=$ver"
2026         ;;
2027         litespeed)
2028                 sapi_args='--with-litespeed'
2029         ;;
2030         esac
2031
2032         %configure \
2033         $sapi_args \
2034 %if "%{!?configure_cache:0}%{?configure_cache}" == "0"
2035         --cache-file=config.cache \
2036 %endif
2037         --with-libdir=%{_lib} \
2038         --with-config-file-path=%{_sysconfdir} \
2039         --with-config-file-scan-dir=%{_sysconfdir}/conf.d \
2040         --with-exec-dir=%{_bindir} \
2041         --with-system-tzdata \
2042         --%{!?debug:dis}%{?debug:en}able-debug \
2043         %{?with_zts:--enable-maintainer-zts} \
2044         --enable-inline-optimization \
2045         --enable-bcmath=shared \
2046         --enable-calendar=shared \
2047         --enable-ctype=shared \
2048         --enable-dba=shared \
2049         --enable-dom=shared \
2050         --enable-exif=shared \
2051         --enable-fileinfo=shared \
2052         --enable-ftp=shared \
2053         --enable-gd-native-ttf \
2054         --enable-intl=shared \
2055         --enable-libxml \
2056         --enable-magic-quotes \
2057         --enable-mbstring=shared,all \
2058         --enable-mbregex \
2059         --enable-pcntl=shared \
2060         --enable-pdo=shared \
2061         --enable-json=shared \
2062         --enable-hash=shared \
2063         --enable-xmlwriter=shared \
2064 %if %{with fpm}
2065         --with-fpm-user=http \
2066         --with-fpm-group=http \
2067 %endif
2068 %if %{with mssql} || %{with sybase_ct}
2069         --with-pdo-dblib=shared \
2070 %endif
2071 %if %{with interbase} && %{without interbase_inst}
2072         --with-pdo-firebird=shared,/usr \
2073 %endif
2074         %{?with_mhash:--with-mhash=yes} \
2075         --with-mysql-sock=/var/lib/mysql/mysql.sock \
2076         --with-pdo-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2077         %{?with_oci8:--with-pdo-oci=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2078         %{?with_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \
2079         %{?with_pgsql:--with-pdo-pgsql=shared} \
2080         %{?with_pdo_sqlite:--with-pdo-sqlite=shared,/usr} \
2081         --without-libexpat-dir \
2082         --enable-posix=shared \
2083         --enable-shared \
2084         --enable-session=shared \
2085         --enable-shmop=shared \
2086         --enable-simplexml=shared \
2087         --enable-sysvmsg=shared \
2088         --enable-sysvsem=shared \
2089         --enable-sysvshm=shared \
2090         --enable-safe-mode \
2091         --enable-soap=shared \
2092         --enable-sockets=shared \
2093         --enable-tokenizer=shared \
2094         --enable-ucd-snmp-hack \
2095         %{?with_wddx:--enable-wddx=shared} \
2096         --enable-xml=shared \
2097         --enable-xmlreader=shared \
2098         --with-bz2=shared \
2099         %{__with_without curl curl shared} \
2100         --with-db4 \
2101         --with-iconv=shared \
2102         --with-freetype-dir=shared \
2103         --with-gettext=shared \
2104         --with-gd=shared%{?with_system_gd:,/usr} \
2105         --with-gdbm \
2106         --with-gmp=shared \
2107         %{?with_imap:--with-imap=shared --with-imap-ssl} \
2108         %{?with_interbase:--with-interbase=shared%{!?with_interbase_inst:,/usr}} \
2109         --with-jpeg-dir=/usr \
2110         %{?with_ldap:--with-ldap=shared --with-ldap-sasl} \
2111         --with-mcrypt=shared \
2112         %{?with_mm:--with-mm} \
2113         %{?with_mssql:--with-mssql=shared} \
2114         %{?with_mysqlnd:--with-mysqlnd=shared} \
2115         --with-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2116         %{?with_mysqli:--with-mysqli=shared%{?with_mysqlnd:,mysqlnd}} \
2117         %{?with_oci8:--with-oci8=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2118         %{?with_openssl:--with-openssl=shared} \
2119         %{?with_kerberos5:--with-kerberos} \
2120         %{__with_without pcre pcre-regex /usr} \
2121         %{__enable_disable filter filter shared} \
2122         --with-pear=%{php_pear_dir} \
2123         %{__with_without pgsql pgsql shared,/usr} \
2124         %{__enable_disable phar phar shared} \
2125         --with-png-dir=/usr \
2126         %{?with_pspell:--with-pspell=shared} \
2127         --with-readline=shared \
2128         %{?with_recode:--with-recode=shared} \
2129         --with-regex=system \
2130         %{?with_snmp:--with-snmp=shared} \
2131         %{?with_sybase_ct:--with-sybase-ct=shared,/usr} \
2132         %{!?with_sqlite2:--without-sqlite}%{?with_sqlite2:--with-sqlite=shared,/usr --enable-sqlite-utf8} \
2133         %{!?with_pdo_sqlite:--without-pdo-sqlite} \
2134         %{__with_without sqlite3 sqlite3 shared,/usr} \
2135         --with-t1lib=shared \
2136         %{?with_tidy:--with-tidy=shared} \
2137         %{?with_odbc:--with-unixODBC=shared,/usr} \
2138         %{__with_without xmlrpc xmlrpc shared,/usr} \
2139         --with-xsl=shared \
2140         --with-zlib=shared \
2141         --with-zlib-dir=shared,/usr \
2142         --with-libzip \
2143         --enable-zip=shared,/usr \
2144
2145         # save for debug
2146         cp -f Makefile Makefile.$sapi
2147         cp -f main/php_config.h php_config.h.$sapi
2148         cp -f config.log config.log.$sapi
2149 done
2150
2151 # as we build each SAPI in own make, adjust php-config.in forehead
2152 sapis=$(awk '/^PHP_SAPI = /{print $3}' Makefile.* | sort -u | xargs)
2153 sed -i -e "s,@PHP_INSTALLED_SAPIS@,$sapis," "scripts/php-config.in"
2154
2155 # must make libphp_common first, so modules can link against it.
2156 cp -af php_config.h.cli main/php_config.h
2157 cp -af Makefile.cli Makefile
2158 %{__make} libphp_common.la
2159 %{__make} build-modules
2160
2161 %if %{with apache1}
2162 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache/libphp5.la -f Makefile.apxs1
2163 %endif
2164
2165 %if %{with apache2}
2166 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache2handler/libphp5.la -f Makefile.apxs2
2167 %endif
2168
2169 %if %{with litespeed}
2170 %{__make} -f Makefile.litespeed
2171 %endif
2172
2173 # CGI/FCGI
2174 %if %{with cgi}
2175 cp -pf php_config.h.cgi-fcgi main/php_config.h
2176 %{__make} -f Makefile.cgi-fcgi
2177 [ "$(echo '<?=php_sapi_name();' | ./sapi/cgi/php-cgi -qn)" = cgi-fcgi ] || exit 1
2178 %endif
2179
2180 # PHP FPM
2181 %if %{with fpm}
2182 cp -pf php_config.h.fpm main/php_config.h
2183 %{__make} -f Makefile.fpm
2184  ./sapi/fpm/php-fpm -qn -m > /dev/null
2185 %endif
2186
2187 # CLI
2188 cp -pf php_config.h.cli main/php_config.h
2189 %{__make} -f Makefile.cli
2190 [ "$(echo '<?=php_sapi_name();' | ./sapi/cli/php -qn)" = cli ] || exit 1
2191
2192 # check for stupid xml parse breakage where &lt; and &gt; just get lost in parse result
2193 ./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"]));'
2194
2195 # Generate stub .ini files for each extension
2196 rm -rf conf.d
2197 install -d conf.d
2198 generate_inifiles() {
2199         for so in modules/*.so; do
2200                 mod=$(basename $so .so)
2201                 conf="$mod.ini"
2202                 # xml needs to be loaded before wddx
2203                 [ "$mod" = "wddx" ] && conf="xml_$mod.ini"
2204                 # pre needs to be loaded before SPL
2205                 [ "$mod" = "pcre" ] && conf="PCRE.ini"
2206                 # spl needs to be loaded before mysqli
2207                 [ "$mod" = "spl" ] && conf="SPL.ini"
2208                 # session needs to be loaded before php-pecl-http, php-pecl-memcache, php-pecl-session_mysql
2209                 [ "$mod" = "session" ] && conf="Session.ini"
2210                 # mysqlnd needs to be loaded before mysql,mysqli,pdo_mysqli
2211                 [ "$mod" = "mysqlnd" ] && conf="MySQLND.ini"
2212                 echo "+ $conf"
2213                 cat > conf.d/$conf <<-EOF
2214                         ; Enable $mod extension module
2215                         extension=$mod.so
2216                 EOF
2217         done
2218 }
2219 generate_inifiles
2220
2221 # Check that the module inner-dependencies are intact
2222 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh > dep-tests.log
2223 if grep -v OK dep-tests.log; then
2224         echo >&2 "The results above were not expected"
2225         exit 1
2226 fi
2227
2228 %if %{with gcov}
2229 # Use CLI SAPI
2230 cp -pf php_config.h.cli main/php_config.h
2231 cp -pf Makefile.cli Makefile
2232 %{__make} lcov
2233 # you really don't want to package result of gcov build
2234 exit 1
2235 %endif
2236
2237 %if %{with tests}
2238 # Run tests, using the CLI SAPI
2239 cp -pf php_config.h.cli main/php_config.h
2240 cp -pf Makefile.cli Makefile
2241
2242 cat <<'EOF' > run-tests.sh
2243 #!/bin/sh
2244 export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
2245 unset TZ LANG LC_ALL || :
2246 %{__make} test \
2247         EXTENSION_DIR=modules \
2248         PHP_TEST_SHARED_SYSTEM_EXTENSIONS= \
2249         RUN_TESTS_SETTINGS="-q $*"
2250 EOF
2251 chmod +x run-tests.sh
2252 ./run-tests.sh -w failed.log -s test.log
2253
2254 # collect failed tests into cleanup script used in prep.
2255 sed -ne '/FAILED TEST SUMMARY/,/^===/p' test.log | sed -e '1,/^---/d;/^===/,$d' > tests-failed.log
2256 sed -ne '/\[.*\]/{s/\(.*\) \[\(.*\)\]/# \1\nmv \2{,.skip}/p}' tests-failed.log \
2257         >> %{_sourcedir}/skip-tests.sh
2258
2259 failed=$(wc -l < tests-failed.log)
2260 if [ "$failed" != 0 ]; then
2261         exit 1
2262 fi
2263 %endif
2264
2265 %install
2266 rm -rf $RPM_BUILD_ROOT
2267 install -d $RPM_BUILD_ROOT{%{_libdir}/{php,apache{,1}},%{_sysconfdir}/{apache,cgi}} \
2268         $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}} \
2269         $RPM_BUILD_ROOT/etc/{apache/conf.d,httpd/conf.d} \
2270         $RPM_BUILD_ROOT%{_mandir}/man{1,8} \
2271
2272 cp -pf php_config.h.cli main/php_config.h
2273 cp -pf Makefile.cli Makefile
2274 %{__make} install \
2275         INSTALL_ROOT=$RPM_BUILD_ROOT
2276
2277 # make link relative
2278 ln -sfn phar.phar $RPM_BUILD_ROOT%{_bindir}/phar
2279
2280 # install Apache1 DSO module
2281 %if %{with apache1}
2282 libtool --mode=install install -p sapi/apache/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache1
2283 %endif
2284
2285 # install Apache2 DSO module
2286 %if %{with apache2}
2287 libtool --mode=install install -p sapi/apache2handler/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache
2288 %endif
2289
2290 # install litespeed sapi
2291 %if %{with litespeed}
2292 libtool --mode=install install -p sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/php.litespeed
2293 %endif
2294
2295 libtool --mode=install install -p libphp_common.la $RPM_BUILD_ROOT%{_libdir}
2296
2297 # install CGI/FCGI
2298 %if %{with cgi}
2299 # install-cgi
2300 libtool --mode=install install -p sapi/cgi/php-cgi $RPM_BUILD_ROOT%{_bindir}/php.cgi
2301 ln -sf php.cgi $RPM_BUILD_ROOT%{_bindir}/php.fcgi
2302 cp -p %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/php-cgi-fcgi.ini
2303 %endif
2304
2305 # install FCGI PM
2306 %if %{with fpm}
2307 install -d $RPM_BUILD_ROOT{%{_sysconfdir}/fpm.d,%{_sbindir}}
2308 libtool --mode=install install -p sapi/fpm/php-fpm $RPM_BUILD_ROOT%{_sbindir}
2309 cp -p sapi/fpm/php-fpm.8 $RPM_BUILD_ROOT%{_mandir}/man8
2310 cp -p sapi/fpm/php-fpm.conf $RPM_BUILD_ROOT%{_sysconfdir}
2311 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
2312 install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/php-fpm
2313 install -d $RPM_BUILD_ROOT/etc/logrotate.d
2314 cp -p %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/php-fpm
2315 %endif
2316
2317 # install Embedded API
2318 %if %{with embed}
2319 %{__make} -f Makefile.embed install-sapi INSTALL_ROOT=$RPM_BUILD_ROOT
2320 # we could use install-headers from Makefile.embed, but that would reinstall all headers
2321 install -d $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2322 cp -p sapi/embed/php_embed.h $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2323 %endif
2324
2325 # install CLI
2326 libtool --mode=install install -p sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php.cli
2327 cp -p sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php.1
2328 echo ".so php.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.cli.1
2329 ln -sf php.cli $RPM_BUILD_ROOT%{_bindir}/php
2330
2331 sed -e 's#%{_prefix}/lib/php#%{_libdir}/php#g' php.ini > $RPM_BUILD_ROOT%{_sysconfdir}/php.ini
2332
2333 cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/php-cli.ini
2334 cp -p %{SOURCE9} $RPM_BUILD_ROOT%{_sysconfdir}/browscap.ini
2335
2336 %if %{with apache1}
2337 cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/apache/conf.d/70_mod_php.conf
2338 cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache.ini
2339 %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/apache1/libphp5.la
2340 %endif
2341
2342 %if %{with apache2}
2343 cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/httpd/conf.d/70_mod_php.conf
2344 cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache2handler.ini
2345 %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/apache/libphp5.la
2346 %endif
2347
2348 install -d $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2349 cp -p conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2350
2351 # per SAPI ini directories
2352 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{cgi-fcgi,cli,apache,apache2handler}.d
2353
2354 # for CLI SAPI only
2355 mv $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d}
2356
2357 # use system automake and {lib,sh}tool
2358 %if "%{pld_release}" != "ac"
2359         ln -snf /usr/share/automake/config.{guess,sub} $RPM_BUILD_ROOT%{_libdir}/php/build
2360         for i in libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4; do
2361                 ln -snf %{_aclocaldir}/${i} $RPM_BUILD_ROOT%{_libdir}/php/build
2362         done
2363         ln -snf %{_datadir}/libtool/config/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2364 %else
2365         ln -snf %{_aclocaldir}/libtool.m4 $RPM_BUILD_ROOT%{_libdir}/php/build
2366         ln -snf %{_datadir}/libtool/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2367 %endif
2368 ln -snf %{_bindir}/shtool $RPM_BUILD_ROOT%{_libdir}/php/build
2369
2370 # for php-pecl-mailparse
2371 install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2372 cp -p ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2373
2374 # tests
2375 install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2376 install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php
2377 cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2378
2379 # fix install paths, avoid evil rpaths
2380 sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la
2381 # libphp5.la contains our buildroot in dependency_libs
2382 sed -i -e "/dependency_libs/ s,/[^ ]*/libs/libphp_common.la,%{_libdir}/libphp_common.la," $RPM_BUILD_ROOT%{_libdir}/libphp5.la
2383 # better solution?
2384 sed -i -e 's|libphp_common.la|$(libdir)/libphp_common.la|' $RPM_BUILD_ROOT%{_libdir}/php/build/acinclude.m4
2385
2386 %clean
2387 rm -rf $RPM_BUILD_ROOT
2388
2389 %post -n apache1-mod_php
2390 if [ "$1" = "1" ]; then
2391         %service -q apache restart
2392 fi
2393
2394 %postun -n apache1-mod_php
2395 if [ "$1" = "0" ]; then
2396         %service -q apache restart
2397 fi
2398
2399 %post -n apache-mod_php
2400 if [ "$1" = "1" ]; then
2401         %service -q httpd restart
2402 fi
2403
2404 %postun -n apache-mod_php
2405 if [ "$1" = "0" ]; then
2406         %service -q httpd restart
2407 fi
2408
2409 %pre fpm
2410 %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http
2411
2412 %post fpm
2413 /sbin/chkconfig --add php-fpm
2414 %service php-fpm restart
2415
2416 %preun fpm
2417 if [ "$1" = 0 ]; then
2418         %service php-fpm stop
2419         /sbin/chkconfig --del php-fpm
2420 fi
2421
2422 %postun fpm
2423 if [ "$1" = "0" ]; then
2424         %userremove http
2425 fi
2426
2427 %post   embedded -p /sbin/ldconfig
2428 %postun embedded -p /sbin/ldconfig
2429
2430 %post common
2431 # PHP 5.3 requires timezone being setup, try setup it from tzdata
2432 if ! grep -q '^date.timezone[[:space:]]*=' %{_sysconfdir}/php.ini && [ -f /etc/sysconfig/timezone ]; then
2433         TIMEZONE=
2434         . /etc/sysconfig/timezone
2435         if [ "$TIMEZONE" ]; then
2436                 %{__sed} -i -e "s,^;date.timezone[[:space:]]*=.*,date.timezone = $TIMEZONE," %{_sysconfdir}/php.ini
2437         fi
2438 fi
2439
2440 %posttrans common
2441 # minimizing apache restarts logics. we restart webserver:
2442 #
2443 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2444 # 2. first install of extension (post: $1 = 1)
2445 # 2. uninstall of extension (postun: $1 == 0)
2446 #
2447 # the strict internal deps between extensions (and apache modules) and
2448 # common package are very important for all this to work.
2449
2450 # restart webserver at the end of transaction
2451 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart
2452 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart
2453
2454 %if %{with apache1}
2455 %triggerpostun -n apache1-mod_php -- php < 4:5.0.4-9.11
2456 sed -i -e '
2457         /^AddType application\/x-httpd-php \.php/s,^,#,
2458         /^\(Add\|Load\)Module.*php5\.\(so\|c\)/d
2459 ' /etc/apache/apache.conf
2460 %service -q apache restart
2461 %endif
2462
2463 %if %{with apache2}
2464 %triggerpostun -n apache-mod_php -- php < 4:5.0.4-7.1
2465 # for fixed php-SAPI.ini, the poor php-apache.ini was never read for apache2
2466 if [ -f %{_sysconfdir}/php-apache.ini.rpmsave ]; then
2467         cp -f %{_sysconfdir}/php-apache2handler.ini{,.rpmnew}
2468         mv -f %{_sysconfdir}/php-apache.ini.rpmsave %{_sysconfdir}/php-apache2handler.ini
2469 fi
2470 %endif
2471
2472 # common macros called at extension post/postun scriptlet
2473 %define extension_scripts() \
2474 %post %1 \
2475 if [ "$1" = "1" ]; then \
2476         %php_webserver_restart \
2477 fi \
2478 \
2479 %postun %1 \
2480 if [ "$1" = "0" ]; then \
2481         %php_webserver_restart \
2482 fi
2483 %{nil}
2484
2485 # extension scripts defines
2486 %extension_scripts bcmath
2487 %extension_scripts bz2
2488 %extension_scripts calendar
2489 %extension_scripts ctype
2490 %extension_scripts curl
2491 %extension_scripts dba
2492 %extension_scripts dom
2493 %extension_scripts exif
2494 %extension_scripts fileinfo
2495 %extension_scripts filter
2496 %extension_scripts ftp
2497 %extension_scripts gd
2498 %extension_scripts gettext
2499 %extension_scripts gmp
2500 %extension_scripts hash
2501 %extension_scripts iconv
2502 %extension_scripts imap
2503 %extension_scripts interbase
2504 %extension_scripts intl
2505 %extension_scripts json
2506 %extension_scripts ldap
2507 %extension_scripts mbstring
2508 %extension_scripts mcrypt
2509 %extension_scripts mssql
2510 %extension_scripts mysql
2511 %extension_scripts mysqli
2512 %extension_scripts mysqlnd
2513 %extension_scripts oci8
2514 %extension_scripts odbc
2515 %extension_scripts openssl
2516 %extension_scripts pcre
2517 %extension_scripts pdo-dblib
2518 %extension_scripts pdo-firebird
2519 %extension_scripts pdo-mysql
2520 %extension_scripts pdo-odbc
2521 %extension_scripts pdo-pgsql
2522 %extension_scripts pdo-sqlite
2523 %extension_scripts pgsql
2524 %extension_scripts phar
2525 %extension_scripts posix
2526 %extension_scripts pspell
2527 %extension_scripts recode
2528 %extension_scripts session
2529 %extension_scripts shmop
2530 %extension_scripts snmp
2531 %extension_scripts soap
2532 %extension_scripts sockets
2533 %extension_scripts spl
2534 %extension_scripts sqlite
2535 %extension_scripts sqlite3
2536 %extension_scripts sybase-ct
2537 %extension_scripts sysvmsg
2538 %extension_scripts sysvsem
2539 %extension_scripts sysvshm
2540 %extension_scripts tidy
2541 %extension_scripts tokenizer
2542 %extension_scripts wddx
2543 %extension_scripts xml
2544 %extension_scripts xmlreader
2545 %extension_scripts xmlrpc
2546 %extension_scripts xmlwriter
2547 %extension_scripts xsl
2548 %extension_scripts zip
2549 %extension_scripts zlib
2550
2551 %triggerun bcmath -- %{name}-bcmath < 4:5.0.4-9.1
2552 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bcmath\.so/d' %{_sysconfdir}/php.ini
2553
2554 %triggerun calendar -- %{name}-calendar < 4:5.0.4-9.1
2555 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*calendar\.so/d' %{_sysconfdir}/php.ini
2556
2557 %triggerun ctype -- %{name}-ctype < 4:5.0.4-9.1
2558 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ctype\.so/d' %{_sysconfdir}/php.ini
2559
2560 %triggerun curl -- %{name}-curl < 4:5.0.4-9.1
2561 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*curl\.so/d' %{_sysconfdir}/php.ini
2562
2563 %triggerun dba -- %{name}-dba < 4:5.0.4-9.1
2564 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dba\.so/d' %{_sysconfdir}/php.ini
2565
2566 %triggerun dom -- %{name}-dom < 4:5.0.4-9.1
2567 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dom\.so/d' %{_sysconfdir}/php.ini
2568
2569 %triggerun exif -- %{name}-exif < 4:5.0.4-9.1
2570 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*exif\.so/d' %{_sysconfdir}/php.ini
2571
2572 %triggerun ftp -- %{name}-ftp < 4:5.0.4-9.1
2573 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ftp\.so/d' %{_sysconfdir}/php.ini
2574
2575 %triggerun gd -- %{name}-gd < 4:5.0.4-9.1
2576 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gd\.so/d' %{_sysconfdir}/php.ini
2577
2578 %triggerun gettext -- %{name}-gettext < 4:5.0.4-9.1
2579 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gettext\.so/d' %{_sysconfdir}/php.ini
2580
2581 %triggerun gmp -- %{name}-gmp < 4:5.0.4-9.1
2582 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gmp\.so/d' %{_sysconfdir}/php.ini
2583
2584 %triggerun iconv -- %{name}-iconv < 4:5.0.4-9.1
2585 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*iconv\.so/d' %{_sysconfdir}/php.ini
2586
2587 %triggerun imap -- %{name}-imap < 4:5.0.4-9.1
2588 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*imap\.so/d' %{_sysconfdir}/php.ini
2589
2590 %triggerun interbase -- %{name}-interbase < 4:5.0.4-9.1
2591 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*interbase\.so/d' %{_sysconfdir}/php.ini
2592
2593 %triggerun ldap -- %{name}-ldap < 4:5.0.4-9.1
2594 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ldap\.so/d' %{_sysconfdir}/php.ini
2595
2596 %triggerun mbstring -- %{name}-mbstring < 4:5.0.4-9.1
2597 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mbstring\.so/d' %{_sysconfdir}/php.ini
2598
2599 %triggerun mcrypt -- %{name}-mcrypt < 4:5.0.4-9.1
2600 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mcrypt\.so/d' %{_sysconfdir}/php.ini
2601
2602 %triggerun mssql -- %{name}-mssql < 4:5.0.4-9.1
2603 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mssql\.so/d' %{_sysconfdir}/php.ini
2604
2605 %triggerun mysql -- %{name}-mysql < 4:5.0.4-9.1
2606 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysql\.so/d' %{_sysconfdir}/php.ini
2607
2608 %triggerun mysqli -- %{name}-mysqli < 4:5.0.4-9.1
2609 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysqli\.so/d' %{_sysconfdir}/php.ini
2610
2611 %triggerun oci8 -- %{name}-oci8 < 4:5.0.4-9.1
2612 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*oci8\.so/d' %{_sysconfdir}/php.ini
2613
2614 %triggerun odbc -- %{name}-odbc < 4:5.0.4-9.1
2615 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*odbc\.so/d' %{_sysconfdir}/php.ini
2616
2617 %triggerun openssl -- %{name}-openssl < 4:5.0.4-9.1
2618 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*openssl\.so/d' %{_sysconfdir}/php.ini
2619
2620 %triggerun pcntl -- %{name}-pcntl < 4:5.1.2-9.5
2621 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2622         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cgi.ini
2623 fi
2624 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2625         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cli.ini
2626 fi
2627
2628 %triggerun pcre -- %{name}-pcre < 4:5.0.4-9.1
2629 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcre\.so/d' %{_sysconfdir}/php.ini
2630
2631 %triggerun pgsql -- %{name}-pgsql < 4:5.0.4-9.1
2632 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pgsql\.so/d' %{_sysconfdir}/php.ini
2633
2634 %triggerun posix -- %{name}-posix < 4:5.0.4-9.1
2635 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*posix\.so/d' %{_sysconfdir}/php.ini
2636
2637 %triggerun pspell -- %{name}-pspell < 4:5.0.4-9.1
2638 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pspell\.so/d' %{_sysconfdir}/php.ini
2639
2640 %triggerun readline -- %{name}-readline < 4:5.1.2-9.5
2641 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2642         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cgi.ini
2643 fi
2644 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2645         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cli.ini
2646 fi
2647
2648 %triggerun recode -- %{name}-recode < 4:5.0.4-9.1
2649 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*recode\.so/d' %{_sysconfdir}/php.ini
2650
2651 %triggerun session -- %{name}-session < 4:5.0.4-9.1
2652 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*session\.so/d' %{_sysconfdir}/php.ini
2653
2654 %triggerun shmop -- %{name}-shmop < 4:5.0.4-9.1
2655 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*shmop\.so/d' %{_sysconfdir}/php.ini
2656
2657 %triggerun snmp -- %{name}-snmp < 4:5.0.4-9.1
2658 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*snmp\.so/d' %{_sysconfdir}/php.ini
2659
2660 %triggerun soap -- %{name}-soap < 4:5.0.4-9.1
2661 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*soap\.so/d' %{_sysconfdir}/php.ini
2662
2663 %triggerun sockets -- %{name}-sockets < 4:5.0.4-9.1
2664 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sockets\.so/d' %{_sysconfdir}/php.ini
2665
2666 %triggerun sqlite -- %{name}-sqlite < 4:5.0.4-9.1
2667 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sqlite\.so/d' %{_sysconfdir}/php.ini
2668
2669 %triggerun sybase-ct -- %{name}-sybase-ct < 4:5.0.4-9.1
2670 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sybase-ct\.so/d' %{_sysconfdir}/php.ini
2671
2672 %triggerun sysvmsg -- %{name}-sysvmsg < 4:5.0.4-9.1
2673 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvmsg\.so/d' %{_sysconfdir}/php.ini
2674
2675 %triggerun sysvsem -- %{name}-sysvsem < 4:5.0.4-9.1
2676 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvsem\.so/d' %{_sysconfdir}/php.ini
2677
2678 %triggerun sysvshm -- %{name}-sysvshm < 4:5.0.4-9.1
2679 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvshm\.so/d' %{_sysconfdir}/php.ini
2680
2681 %triggerun tidy -- %{name}-tidy < 4:5.0.4-9.1
2682 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*tidy\.so/d' %{_sysconfdir}/php.ini
2683
2684 %triggerun wddx -- %{name}-wddx < 4:5.0.4-9.1
2685 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*wddx\.so/d' %{_sysconfdir}/php.ini
2686
2687 %triggerun xml -- %{name}-xml < 4:5.0.4-9.1
2688 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xml\.so/d' %{_sysconfdir}/php.ini
2689
2690 %triggerun xmlrpc -- %{name}-xmlrpc < 4:5.0.4-9.1
2691 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xmlrpc\.so/d' %{_sysconfdir}/php.ini
2692
2693 %triggerun xsl -- %{name}-xsl < 4:5.0.4-9.1
2694 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xsl\.so/d' %{_sysconfdir}/php.ini
2695
2696 %triggerun zlib -- %{name}-zlib < 4:5.0.4-9.1
2697 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*zlib\.so/d' %{_sysconfdir}/php.ini
2698
2699 %if %{with apache1}
2700 %files -n apache1-mod_php
2701 %defattr(644,root,root,755)
2702 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/apache/conf.d/*_mod_php.conf
2703 %dir %{_sysconfdir}/apache.d
2704 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache.ini
2705 %attr(755,root,root) %{_libdir}/apache1/libphp5.so
2706 %endif
2707
2708 %if %{with apache2}
2709 %files -n apache-mod_php
2710 %defattr(644,root,root,755)
2711 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/httpd/conf.d/*_mod_php.conf
2712 %dir %{_sysconfdir}/apache2handler.d
2713 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache2handler.ini
2714 %attr(755,root,root) %{_libdir}/apache/libphp5.so
2715 %endif
2716
2717 %if %{with litespeed}
2718 %files litespeed
2719 %defattr(644,root,root,755)
2720 %attr(755,root,root) %{_sbindir}/php.litespeed
2721 %endif
2722
2723 %if %{with cgi}
2724 %files cgi
2725 %defattr(644,root,root,755)
2726 %dir %{_sysconfdir}/cgi-fcgi.d
2727 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cgi-fcgi.ini
2728 %attr(755,root,root) %{_bindir}/php.cgi
2729 %attr(755,root,root) %{_bindir}/php.fcgi
2730 %endif
2731
2732 %if %{with embed}
2733 %files embedded
2734 %defattr(644,root,root,755)
2735 %attr(755,root,root) %{_libdir}/libphp5-%{version}.so
2736 %endif
2737
2738 %files cli
2739 %defattr(644,root,root,755)
2740 %dir %{_sysconfdir}/cli.d
2741 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cli.ini
2742 %attr(755,root,root) %{_bindir}/php.cli
2743 %{_mandir}/man1/php.1*
2744 %{_mandir}/man1/php.cli.1*
2745
2746 %files program
2747 %defattr(644,root,root,755)
2748 %attr(755,root,root) %{_bindir}/php
2749
2750 %if %{with fpm}
2751 %files fpm
2752 %defattr(644,root,root,755)
2753 %doc sapi/fpm/{CREDITS,LICENSE}
2754 %dir %{_sysconfdir}/fpm.d
2755 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-fpm.conf
2756 %attr(755,root,root) %{_sbindir}/php-fpm
2757 %{_mandir}/man8/php-fpm.8*
2758 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/php-fpm
2759 %attr(754,root,root) /etc/rc.d/init.d/php-fpm
2760 %endif
2761
2762 %files common
2763 %defattr(644,root,root,755)
2764 %doc CREDITS EXTENSIONS LICENSE NEWS README.{PHP4-TO-PHP5-THIN-CHANGES,namespaces} TODO* UPGRADING* Zend/{LICENSE.Zend,ZEND_CHANGES} php.ini-*
2765 %dir %{_sysconfdir}
2766 %dir %{_sysconfdir}/conf.d
2767 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.ini
2768 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/browscap.ini
2769 %attr(755,root,root) %{_libdir}/libphp_common-*.so
2770 %dir %{php_extensiondir}
2771
2772 %doc ext/session/mod_files.sh
2773
2774 %files devel
2775 %defattr(644,root,root,755)
2776 %doc CODING_STANDARDS README.{EXTENSIONS,EXT_SKEL,PARAMETER_PARSING_API,SELF-CONTAINED-EXTENSIONS,STREAMS,SUBMITTING_PATCH,TESTING,TESTING2,UNIX-BUILD-SYSTEM,input_filter}
2777 %attr(755,root,root) %{_bindir}/phpize
2778 %attr(755,root,root) %{_bindir}/php-config
2779 %attr(755,root,root) %{_libdir}/libphp_common.so
2780 %{_libdir}/libphp_common.la
2781 %{_includedir}/php
2782 %{_libdir}/php/build
2783 %{_mandir}/man1/php-config.1*
2784 %{_mandir}/man1/phpize.1*
2785 %if %{with embed}
2786 # embedded
2787 %{_libdir}/libphp5.so
2788 %{_libdir}/libphp5.la
2789 %endif
2790
2791 %files bcmath
2792 %defattr(644,root,root,755)
2793 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bcmath.ini
2794 %attr(755,root,root) %{php_extensiondir}/bcmath.so
2795
2796 %files bz2
2797 %defattr(644,root,root,755)
2798 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bz2.ini
2799 %attr(755,root,root) %{php_extensiondir}/bz2.so
2800
2801 %files calendar
2802 %defattr(644,root,root,755)
2803 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/calendar.ini
2804 %attr(755,root,root) %{php_extensiondir}/calendar.so
2805
2806 %files ctype
2807 %defattr(644,root,root,755)
2808 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ctype.ini
2809 %attr(755,root,root) %{php_extensiondir}/ctype.so
2810
2811 %if %{with curl}
2812 %files curl
2813 %defattr(644,root,root,755)
2814 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/curl.ini
2815 %attr(755,root,root) %{php_extensiondir}/curl.so
2816 %endif
2817
2818 %files dba
2819 %defattr(644,root,root,755)
2820 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dba.ini
2821 %attr(755,root,root) %{php_extensiondir}/dba.so
2822
2823 %files dom
2824 %defattr(644,root,root,755)
2825 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dom.ini
2826 %attr(755,root,root) %{php_extensiondir}/dom.so
2827
2828 %files exif
2829 %defattr(644,root,root,755)
2830 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/exif.ini
2831 %attr(755,root,root) %{php_extensiondir}/exif.so
2832
2833 %files fileinfo
2834 %defattr(644,root,root,755)
2835 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fileinfo.ini
2836 %attr(755,root,root) %{php_extensiondir}/fileinfo.so
2837
2838 %if %{with filter}
2839 %files filter
2840 %defattr(644,root,root,755)
2841 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/filter.ini
2842 %attr(755,root,root) %{php_extensiondir}/filter.so
2843 %endif
2844
2845 %files ftp
2846 %defattr(644,root,root,755)
2847 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ftp.ini
2848 %attr(755,root,root) %{php_extensiondir}/ftp.so
2849
2850 %files gd
2851 %defattr(644,root,root,755)
2852 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gd.ini
2853 %attr(755,root,root) %{php_extensiondir}/gd.so
2854
2855 %files gettext
2856 %defattr(644,root,root,755)
2857 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gettext.ini
2858 %attr(755,root,root) %{php_extensiondir}/gettext.so
2859
2860 %files gmp
2861 %defattr(644,root,root,755)
2862 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gmp.ini
2863 %attr(755,root,root) %{php_extensiondir}/gmp.so
2864
2865 %files hash
2866 %defattr(644,root,root,755)
2867 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/hash.ini
2868 %attr(755,root,root) %{php_extensiondir}/hash.so
2869
2870 %files iconv
2871 %defattr(644,root,root,755)
2872 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/iconv.ini
2873 %attr(755,root,root) %{php_extensiondir}/iconv.so
2874
2875 %if %{with imap}
2876 %files imap
2877 %defattr(644,root,root,755)
2878 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/imap.ini
2879 %attr(755,root,root) %{php_extensiondir}/imap.so
2880 %endif
2881
2882 %if %{with interbase}
2883 %files interbase
2884 %defattr(644,root,root,755)
2885 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/interbase.ini
2886 %attr(755,root,root) %{php_extensiondir}/interbase.so
2887 %endif
2888
2889 %files intl
2890 %defattr(644,root,root,755)
2891 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/intl.ini
2892 %attr(755,root,root) %{php_extensiondir}/intl.so
2893
2894 %files json
2895 %defattr(644,root,root,755)
2896 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/json.ini
2897 %attr(755,root,root) %{php_extensiondir}/json.so
2898
2899 %if %{with ldap}
2900 %files ldap
2901 %defattr(644,root,root,755)
2902 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ldap.ini
2903 %attr(755,root,root) %{php_extensiondir}/ldap.so
2904 %endif
2905
2906 %files mbstring
2907 %defattr(644,root,root,755)
2908 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mbstring.ini
2909 %attr(755,root,root) %{php_extensiondir}/mbstring.so
2910
2911 %files mcrypt
2912 %defattr(644,root,root,755)
2913 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mcrypt.ini
2914 %attr(755,root,root) %{php_extensiondir}/mcrypt.so
2915
2916 %if %{with mssql}
2917 %files mssql
2918 %defattr(644,root,root,755)
2919 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mssql.ini
2920 %attr(755,root,root) %{php_extensiondir}/mssql.so
2921 %endif
2922
2923 %files mysql
2924 %defattr(644,root,root,755)
2925 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysql.ini
2926 %attr(755,root,root) %{php_extensiondir}/mysql.so
2927
2928 %if %{with mysqli}
2929 %files mysqli
2930 %defattr(644,root,root,755)
2931 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysqli.ini
2932 %attr(755,root,root) %{php_extensiondir}/mysqli.so
2933 %endif
2934
2935 %if %{with mysqlnd}
2936 %files mysqlnd
2937 %defattr(644,root,root,755)
2938 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/MySQLND.ini
2939 %attr(755,root,root) %{php_extensiondir}/mysqlnd.so
2940 %endif
2941
2942 %if %{with oci8}
2943 %files oci8
2944 %defattr(644,root,root,755)
2945 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/oci8.ini
2946 %attr(755,root,root) %{php_extensiondir}/oci8.so
2947 %endif
2948
2949 %if %{with odbc}
2950 %files odbc
2951 %defattr(644,root,root,755)
2952 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/odbc.ini
2953 %attr(755,root,root) %{php_extensiondir}/odbc.so
2954 %endif
2955
2956 %if %{with openssl}
2957 %files openssl
2958 %defattr(644,root,root,755)
2959 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/openssl.ini
2960 %attr(755,root,root) %{php_extensiondir}/openssl.so
2961 %endif
2962
2963 %files pcntl
2964 %defattr(644,root,root,755)
2965 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pcntl.ini
2966 %attr(755,root,root) %{php_extensiondir}/pcntl.so
2967
2968 %if %{with pcre}
2969 %files pcre
2970 %defattr(644,root,root,755)
2971 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/PCRE.ini
2972 %attr(755,root,root) %{php_extensiondir}/pcre.so
2973 %endif
2974
2975 %files pdo
2976 %defattr(644,root,root,755)
2977 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo.ini
2978 %attr(755,root,root) %{php_extensiondir}/pdo.so
2979
2980 %if %{with mssql} || %{with sybase_ct}
2981 %files pdo-dblib
2982 %defattr(644,root,root,755)
2983 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_dblib.ini
2984 %attr(755,root,root) %{php_extensiondir}/pdo_dblib.so
2985 %endif
2986
2987 %if %{with interbase} && !%{with interbase_inst}
2988 %files pdo-firebird
2989 %defattr(644,root,root,755)
2990 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_firebird.ini
2991 %attr(755,root,root) %{php_extensiondir}/pdo_firebird.so
2992 %endif
2993
2994 %files pdo-mysql
2995 %defattr(644,root,root,755)
2996 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_mysql.ini
2997 %attr(755,root,root) %{php_extensiondir}/pdo_mysql.so
2998
2999 %if %{with oci8}
3000 %files pdo-oci
3001 %defattr(644,root,root,755)
3002 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_oci.ini
3003 %attr(755,root,root) %{php_extensiondir}/pdo_oci.so
3004 %endif
3005
3006 %if %{with odbc}
3007 %files pdo-odbc
3008 %defattr(644,root,root,755)
3009 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_odbc.ini
3010 %attr(755,root,root) %{php_extensiondir}/pdo_odbc.so
3011 %endif
3012
3013 %if %{with pgsql}
3014 %files pdo-pgsql
3015 %defattr(644,root,root,755)
3016 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_pgsql.ini
3017 %attr(755,root,root) %{php_extensiondir}/pdo_pgsql.so
3018 %endif
3019
3020 %if %{with pdo_sqlite}
3021 %files pdo-sqlite
3022 %defattr(644,root,root,755)
3023 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_sqlite.ini
3024 %attr(755,root,root) %{php_extensiondir}/pdo_sqlite.so
3025 %endif
3026
3027 %if %{with pgsql}
3028 %files pgsql
3029 %defattr(644,root,root,755)
3030 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pgsql.ini
3031 %attr(755,root,root) %{php_extensiondir}/pgsql.so
3032 %endif
3033
3034 %if %{with phar}
3035 %files phar
3036 %defattr(644,root,root,755)
3037 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/phar.ini
3038 %attr(755,root,root) %{php_extensiondir}/phar.so
3039 %attr(755,root,root) %{_bindir}/phar
3040 %attr(755,root,root) %{_bindir}/phar.phar
3041 %endif
3042
3043 %files posix
3044 %defattr(644,root,root,755)
3045 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/posix.ini
3046 %attr(755,root,root) %{php_extensiondir}/posix.so
3047
3048 %if %{with pspell}
3049 %files pspell
3050 %defattr(644,root,root,755)
3051 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pspell.ini
3052 %attr(755,root,root) %{php_extensiondir}/pspell.so
3053 %endif
3054
3055 %files readline
3056 %defattr(644,root,root,755)
3057 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/readline.ini
3058 %attr(755,root,root) %{php_extensiondir}/readline.so
3059
3060 %if %{with recode}
3061 %files recode
3062 %defattr(644,root,root,755)
3063 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/recode.ini
3064 %attr(755,root,root) %{php_extensiondir}/recode.so
3065 %endif
3066
3067 %files session
3068 %defattr(644,root,root,755)
3069 %doc ext/session/mod_files.sh
3070 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/Session.ini
3071 %attr(755,root,root) %{php_extensiondir}/session.so
3072
3073 %files shmop
3074 %defattr(644,root,root,755)
3075 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/shmop.ini
3076 %attr(755,root,root) %{php_extensiondir}/shmop.so
3077
3078 %files simplexml
3079 %defattr(644,root,root,755)
3080 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/simplexml.ini
3081 %attr(755,root,root) %{php_extensiondir}/simplexml.so
3082
3083 %if %{with snmp}
3084 %files snmp
3085 %defattr(644,root,root,755)
3086 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/snmp.ini
3087 %attr(755,root,root) %{php_extensiondir}/snmp.so
3088 %endif
3089
3090 %files soap
3091 %defattr(644,root,root,755)
3092 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/soap.ini
3093 %attr(755,root,root) %{php_extensiondir}/soap.so
3094
3095 %files sockets
3096 %defattr(644,root,root,755)
3097 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sockets.ini
3098 %attr(755,root,root) %{php_extensiondir}/sockets.so
3099
3100 %files spl
3101 %defattr(644,root,root,755)
3102 %doc ext/spl/{CREDITS,README,TODO,examples}
3103 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/SPL.ini
3104 %attr(755,root,root) %{php_extensiondir}/spl.so
3105
3106 %if %{with sqlite2}
3107 %files sqlite
3108 %defattr(644,root,root,755)
3109 %doc ext/sqlite/{README,TODO,CREDITS}
3110 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite.ini
3111 %attr(755,root,root) %{php_extensiondir}/sqlite.so
3112 %endif
3113
3114 %if %{with sqlite3}
3115 %files sqlite3
3116 %defattr(644,root,root,755)
3117 %doc ext/sqlite3/CREDITS
3118 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite3.ini
3119 %attr(755,root,root) %{php_extensiondir}/sqlite3.so
3120 %endif
3121
3122 %if %{with sybase_ct}
3123 %files sybase-ct
3124 %defattr(644,root,root,755)
3125 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sybase_ct.ini
3126 %attr(755,root,root) %{php_extensiondir}/sybase_ct.so
3127 %endif
3128
3129 %files sysvmsg
3130 %defattr(644,root,root,755)
3131 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvmsg.ini
3132 %attr(755,root,root) %{php_extensiondir}/sysvmsg.so
3133
3134 %files sysvsem
3135 %defattr(644,root,root,755)
3136 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvsem.ini
3137 %attr(755,root,root) %{php_extensiondir}/sysvsem.so
3138
3139 %files sysvshm
3140 %defattr(644,root,root,755)
3141 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvshm.ini
3142 %attr(755,root,root) %{php_extensiondir}/sysvshm.so
3143
3144 %files tests
3145 %defattr(644,root,root,755)
3146 %dir %{php_data_dir}/tests/php
3147 %{php_data_dir}/tests/php/basic
3148 %{php_data_dir}/tests/php/classes
3149 %{php_data_dir}/tests/php/func
3150 %{php_data_dir}/tests/php/lang
3151 %{php_data_dir}/tests/php/output
3152 %{php_data_dir}/tests/php/run-test
3153 %{php_data_dir}/tests/php/security
3154 %{php_data_dir}/tests/php/strings
3155 %{php_data_dir}/tests/php/quicktester.inc
3156 %attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php
3157
3158 %if %{with tidy}
3159 %files tidy
3160 %defattr(644,root,root,755)
3161 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tidy.ini
3162 %attr(755,root,root) %{php_extensiondir}/tidy.so
3163 %endif
3164
3165 %files tokenizer
3166 %defattr(644,root,root,755)
3167 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tokenizer.ini
3168 %attr(755,root,root) %{php_extensiondir}/tokenizer.so
3169
3170 %if %{with wddx}
3171 %files wddx
3172 %defattr(644,root,root,755)
3173 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*wddx.ini
3174 %attr(755,root,root) %{php_extensiondir}/wddx.so
3175 %endif
3176
3177 %files xml
3178 %defattr(644,root,root,755)
3179 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xml.ini
3180 %attr(755,root,root) %{php_extensiondir}/xml.so
3181
3182 %files xmlreader
3183 %defattr(644,root,root,755)
3184 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlreader.ini
3185 %attr(755,root,root) %{php_extensiondir}/xmlreader.so
3186
3187 %if %{with xmlrpc}
3188 %files xmlrpc
3189 %defattr(644,root,root,755)
3190 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlrpc.ini
3191 %attr(755,root,root) %{php_extensiondir}/xmlrpc.so
3192 %endif
3193
3194 %files xmlwriter
3195 %defattr(644,root,root,755)
3196 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlwriter.ini
3197 %attr(755,root,root) %{php_extensiondir}/xmlwriter.so
3198
3199 %files xsl
3200 %defattr(644,root,root,755)
3201 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xsl.ini
3202 %attr(755,root,root) %{php_extensiondir}/xsl.so
3203
3204 %files zip
3205 %defattr(644,root,root,755)
3206 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zip.ini
3207 %attr(755,root,root) %{php_extensiondir}/zip.so
3208
3209 %files zlib
3210 %defattr(644,root,root,755)
3211 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zlib.ini
3212 %attr(755,root,root) %{php_extensiondir}/zlib.so
This page took 0.242739 seconds and 4 git commands to generate.