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