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