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