]> git.pld-linux.org Git - packages/php.git/blob - php.spec
- enable tcadb in dba ext
[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.5
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:        http://downloads.php.net/stas/%{name}-%{version}RC2.tar.bz2
140 # Source0-md5:  7e5ad382db17a81f0cd3c092399cb4af
141 Source2:        %{name}-mod_%{name}.conf
142 Source3:        %{name}-cgi-fcgi.ini
143 Source4:        %{name}-apache.ini
144 Source5:        %{name}-cli.ini
145 # Taken from: http://browsers.garykeith.com/downloads.asp
146 Source9:        %{name}_browscap.ini
147 Source10:       %{name}-fpm.init
148 Source11:       %{name}-fpm.logrotate
149 Source12:       %{name}-branch.sh
150 Source13:       dep-tests.sh
151 Source14:       skip-tests.sh
152 # Source15Download: http://litespeedtech.com/lsapi-downloads.html
153 Source15:       http://litespeedtech.com/packages/lsapi/%{name}-litespeed-%{litespeed_version}.tgz
154 # Source15-md5: 9d58485d5fd6b5f5fefcec41b9ce283e
155 Patch0:         %{name}-shared.patch
156 Patch1:         %{name}-pldlogo.patch
157 Patch2:         %{name}-mail.patch
158 Patch3:         %{name}-link-libs.patch
159 Patch4:         %{name}-libpq_fs_h_path.patch
160 Patch5:         %{name}-filter-shared.patch
161 Patch6:         %{name}-build_modules.patch
162 Patch7:         %{name}-sapi-ini-file.patch
163 Patch8:         %{name}-config-file-scan-dir.patch
164 Patch9:         %{name}-sh.patch
165 Patch10:        %{name}-ini.patch
166 Patch11:        embed.patch
167 %if %{with type_hints}
168 Patch12:        http://ilia.ws/patch/type_hint_53_v2.txt
169 %endif
170 Patch14:        %{name}-no_pear_install.patch
171 #Patch15:       %{name}-zlib.patch # no longer needed?
172 Patch17:        %{name}-readline.patch
173 Patch18:        %{name}-nohttpd.patch
174 Patch19:        %{name}-gd_imagerotate_enable.patch
175 Patch20:        %{name}-uint32_t.patch
176 Patch21:        %{name}-dba-link.patch
177 Patch22:        %{name}-both-apxs.patch
178 Patch23:        %{name}-builddir.patch
179 Patch24:        %{name}-zlib-for-getimagesize.patch
180 Patch25:        %{name}-stupidapache_version.patch
181 Patch26:        %{name}-pear.patch
182 Patch27:        %{name}-config-dir.patch
183 Patch29:        %{name}-fcgi-graceful.patch
184 Patch31:        %{name}-fcgi-error_log-no-newlines.patch
185 #Patch32:       %{name}-curl-limit-speed.patch # applied upstream
186 Patch34:        %{name}-libtool.patch
187 Patch35:        %{name}-tds.patch
188 Patch36:        %{name}-mysql-charsetphpini.patch
189 Patch37:        %{name}-mysqli-charsetphpini.patch
190 Patch38:        %{name}-pdo_mysql-charsetphpini.patch
191 Patch39:        %{name}-use-prog_sendmail.patch
192 Patch41:        %{name}-fpm-config.patch
193 Patch42:        %{name}-fpm-shared.patch
194 Patch43:        %{name}-silent-session-cleanup.patch
195 Patch44:        %{name}-include_path.patch
196 Patch45:        %{name}-imap-annotations.patch
197 Patch46:        %{name}-imap-myrights.patch
198 Patch47:        suhosin.patch
199 #Patch49:       %{name}-m4-divert.patch # no longer needed, upstream supports new ac
200 Patch50:        extension-shared-optional-dep.patch
201 Patch51:        spl-shared.patch
202 Patch52:        pcre-shared.patch
203 Patch53:        fix-test-run.patch
204 #Patch54:       mysqlnd-shared.patch # shared build supported upstream
205 Patch55:        bug-52078-fileinode.patch
206 #Patch57:       bug-52448.patch # outdated
207 Patch59:        %{name}-systzdata.patch
208 Patch60:        %{name}-oracle-instantclient.patch
209 #Patch61:       %{name}-krb5-ac.patch # not needed on 5.4 anymore
210 Patch62:        mcrypt-libs.patch
211 Patch63:        %{name}-mysql-nowarning.patch
212 #Patch64:       %{name}-m4.patch # not needed on 5.4 branch
213 # http://spot.fedorapeople.org/php-5.3.6-libzip.patch
214 Patch65:        system-libzip.patch
215 URL:            http://www.php.net/
216 %{?with_interbase:%{!?with_interbase_inst:BuildRequires:        Firebird-devel >= 1.0.2.908-2}}
217 %{?with_pspell:BuildRequires:   aspell-devel >= 2:0.50.0}
218 BuildRequires:  autoconf >= 2.59
219 BuildRequires:  automake >= 1.4d
220 BuildRequires:  bison
221 BuildRequires:  bzip2-devel
222 %{?with_curl:BuildRequires:     curl-devel >= 7.12.0}
223 BuildRequires:  cyrus-sasl-devel
224 BuildRequires:  db-devel >= 4.0
225 BuildRequires:  elfutils-devel
226 %{?with_enchant:BuildRequires:  enchant-devel >= 1.1.3}
227 #BuildRequires: fcgi-devel
228 #BuildRequires: flex
229 %{?with_kerberos5:BuildRequires:        heimdal-devel}
230 %{?with_system_libzip:BuildRequires:    libzip-devel >= 0.10-3}
231 BuildRequires:  mysql-devel
232 BuildRequires:  pkgconfig
233 BuildRequires:  sed >= 4.0
234 %if %{with mssql} || %{with sybase_ct}
235 BuildRequires:  freetds-devel >= 0.82
236 %endif
237 BuildRequires:  freetype-devel >= 2.0
238 %if %{with system_gd}
239 BuildRequires:  gd-devel >= 2.0.28-4
240 BuildRequires:  gd-devel(imagerotate) = 5.2.0
241 %endif
242 BuildRequires:  gdbm-devel
243 BuildRequires:  gmp-devel
244 %{?with_imap:BuildRequires:     imap-devel >= 1:2007e-2}
245 BuildRequires:  libicu-devel
246 BuildRequires:  libjpeg-devel
247 BuildRequires:  libltdl-devel >= 1.4
248 BuildRequires:  libmcrypt-devel >= 2.4.4
249 BuildRequires:  libpng-devel >= 1.0.8
250 #BuildRequires: libtiff-devel
251 BuildRequires:  libvpx-devel
252 BuildRequires:  tokyocabinet-devel
253 %if "%{pld_release}" != "ac"
254 BuildRequires:  libtool >= 2:2.2
255 %else
256 BuildRequires:  libtool >= 1.4.3
257 %endif
258 #BuildRequires: libwrap-devel
259 BuildRequires:  libxml2-devel >= 1:2.7.6-4
260 BuildRequires:  libxslt-devel >= 1.1.0
261 %{?with_mm:BuildRequires:       mm-devel >= 1.3.0}
262 %{?with_ldap:BuildRequires:     openldap-devel >= 2.3.0}
263 %if %{with openssl} || %{with ldap}
264 BuildRequires:  openssl-devel >= 0.9.7d
265 %endif
266 %{?with_gcov:BuildRequires:     lcov}
267 %{?with_snmp:%{?with_tests:BuildRequires:       mibs-net-snmp}}
268 %{?with_snmp:BuildRequires:     net-snmp-devel >= 5.0.7}
269 %{?with_instantclient:BuildRequires:    oracle-instantclient-devel}
270 BuildRequires:  pam-devel
271 %{?with_pcre:BuildRequires:     pcre-devel >= 8.10}
272 BuildRequires:  pkgconfig
273 %{?with_pgsql:BuildRequires:    postgresql-backend-devel >= 7.2}
274 %{?with_pgsql:BuildRequires:    postgresql-devel}
275 BuildRequires:  readline-devel
276 %{?with_recode:BuildRequires:   recode-devel >= 3.5d-3}
277 BuildRequires:  rpm >= 4.4.9-56
278 BuildRequires:  rpm-build >= 4.4.0
279 BuildRequires:  rpmbuild(macros) >= 1.566
280 %if %{with sqlite3} || %{with pdo_sqlite}
281 BuildRequires:  sqlite3-devel >= 3.3.9
282 %endif
283 BuildRequires:  t1lib-devel
284 %{?with_tidy:BuildRequires:     tidy-devel}
285 %{?with_odbc:BuildRequires:     unixODBC-devel}
286 %{?with_xmlrpc:BuildRequires:   xmlrpc-epi-devel >= 0.54.1}
287 BuildRequires:  zlib-devel >= 1.0.9
288 %if %{with apache1}
289 BuildRequires:  apache1-devel
290 %endif
291 %if %{with apache2}
292 BuildRequires:  apache-devel >= 2.0.52-2
293 BuildRequires:  apr-devel >= 1:1.0.0
294 BuildRequires:  apr-util-devel >= 1:1.0.0
295 %endif
296 %if %{with fpm}
297 #BuildRequires: judy-devel
298 BuildRequires:  libevent-devel >= 1.4.7-3
299 %endif
300 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
301
302 %define         php_sysconfdir          /etc/php
303 %define         php_extensiondir        %{_libdir}/php
304 %define         _sysconfdir                     %{php_sysconfdir}
305
306 # must be in sync with source. extra check ensuring that it is so is done in %%build
307 %define         php_api_version         20100412
308 %define         zend_module_api         20100525
309 %define         zend_extension_api      220100525
310
311 # Extension versions
312 %define         bz2ver          1.0
313 %define         enchantver      1.1.0
314 %define         fileinfover     1.0.5-dev
315 %define         hashver         1.0
316 %define         intlver         1.1.0
317 %define         jsonver         1.2.1
318 %define         pharver         2.0.1
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)
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 -n %{name}-%{version}RC2
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_ZIP_VERSION_STRING /{s/.* "//;s/".*$//;p}' ext/zip/php_zip.h)
2001 if test "$ver" != "%{zipver}"; then
2002         : Error: Upstream ZIP version is now ${ver}, expecting %{zipver}.
2003         : Update the zipver macro and rebuild.
2004         exit 1
2005 fi
2006 ver=$(sed -n '/#define PHP_JSON_VERSION /{s/.* "//;s/".*$//;p}' ext/json/php_json.h)
2007 if test "$ver" != "%{jsonver}"; then
2008         : Error: Upstream JSON version is now ${ver}, expecting %{jsonver}.
2009         : Update the jsonver macro and rebuild.
2010         exit 1
2011 fi
2012 ver=$(sed -rne 's,.*<version>(.+)</version>,\1,p' ext/bz2/package.xml)
2013 if test "$ver" != "%{bz2ver}"; then
2014         : Error: Upstream BZIP2 version is now ${ver}, expecting %{bz2ver}.
2015         : Update the bz2ver macro and rebuild.
2016         exit 1
2017 fi
2018 ver=$(sed -n '/#define PHP_ENCHANT_VERSION /{s/.* "//;s/".*$//;p}' ext/enchant/php_enchant.h)
2019 if test "$ver" != "%{enchantver}"; then
2020         : Error: Upstream Enchant version is now ${ver}, expecting %{enchantver}.
2021         : Update the enchantver macro and rebuild.
2022         exit 1
2023 fi
2024 ver=$(awk '/#define PHP_HASH_EXTVER/ {print $3}' ext/hash/php_hash.h | xargs)
2025 if test "$ver" != "%{hashver}"; then
2026         : Error: Upstream HASH version is now ${ver}, expecting %{hashver}.
2027         : Update the hashver macro and rebuild.
2028         exit 1
2029 fi
2030 ver=$(sed -n '/#define PHP_INTL_VERSION /{s/.* "//;s/".*$//;p}' ext/intl/php_intl.h)
2031 if test "$ver" != "%{intlver}"; then
2032         : Error: Upstream Intl version is now ${ver}, expecting %{intlver}.
2033         : Update the intlver macro and rebuild.
2034         exit 1
2035 fi
2036
2037 export EXTENSION_DIR="%{php_extensiondir}"
2038 # configure once (for faster debugging purposes)
2039 if [ ! -f _built-conf ]; then
2040         # now remove Makefile copies
2041         rm -f Makefile.{cgi-fcgi,fpm,cli,apxs1,apxs2,litespeed}
2042         %{__libtoolize}
2043         %{__aclocal}
2044         cp -f /usr/share/automake/config.* .
2045         ./buildconf --force
2046         touch _built-conf
2047 fi
2048 export PROG_SENDMAIL="/usr/lib/sendmail"
2049 export CPPFLAGS="-DDEBUG_FASTCGI -DHAVE_STRNDUP %{rpmcppflags} \
2050         -I%{_includedir}/xmlrpc-epi"
2051
2052 sapis="
2053 cli
2054 %if %{with cgi}
2055 cgi-fcgi
2056 %endif
2057 %if %{with litespeed}
2058 litespeed
2059 %endif
2060 %if %{with fpm}
2061 fpm
2062 %endif
2063 %if %{with embed}
2064 embed
2065 %endif
2066 %if %{with apache1}
2067 apxs1
2068 %endif
2069 %if %{with apache2}
2070 apxs2
2071 %endif
2072 "
2073 for sapi in $sapis; do
2074         : SAPI $sapi
2075         # skip if already configured (for faster debugging purposes)
2076         [ -f Makefile.$sapi ] && continue
2077
2078         sapi_args=''
2079         case $sapi in
2080         cgi-fcgi)
2081                 sapi_args='--disable-cli'
2082         ;;
2083         cli)
2084                 sapi_args='--disable-cgi %{?with_gcov:--enable-gcov}'
2085         ;;
2086         fpm)
2087                 sapi_args='--disable-cli --enable-fpm'
2088                 ;;
2089         embed)
2090                 sapi_args='--disable-cli --enable-embed'
2091                 ;;
2092         apxs1)
2093                 ver=$(rpm -q --qf '%{V}' apache1-devel)
2094                 sapi_args="--disable-cli --with-apxs=%{apxs1} --with-apache-version=$ver"
2095         ;;
2096         apxs2)
2097                 ver=$(rpm -q --qf '%{V}' apache-devel)
2098                 sapi_args="--disable-cli --with-apxs2=%{apxs2} --with-apache-version=$ver"
2099         ;;
2100         litespeed)
2101                 sapi_args='--with-litespeed'
2102         ;;
2103         esac
2104
2105         %configure \
2106         $sapi_args \
2107 %if "%{!?configure_cache:0}%{?configure_cache}" == "0"
2108         --cache-file=config.cache \
2109 %endif
2110         --with-libdir=%{_lib} \
2111         --with-config-file-path=%{_sysconfdir} \
2112         --with-config-file-scan-dir=%{_sysconfdir}/conf.d \
2113         --with-system-tzdata \
2114         --%{!?debug:dis}%{?debug:en}able-debug \
2115         %{?with_zts:--enable-maintainer-zts} \
2116         --enable-inline-optimization \
2117         --enable-bcmath=shared \
2118         --enable-calendar=shared \
2119         --enable-ctype=shared \
2120         --enable-dba=shared \
2121         --enable-dom=shared \
2122         --enable-exif=shared \
2123         --enable-fileinfo=shared \
2124         --enable-ftp=shared \
2125         --enable-gd-native-ttf \
2126         --enable-intl=shared \
2127         --enable-libxml \
2128         --enable-mbstring=shared,all \
2129         --enable-mbregex \
2130         --enable-pcntl=shared \
2131         --enable-pdo=shared \
2132         --enable-json=shared \
2133         --enable-hash=shared \
2134         --enable-xmlwriter=shared \
2135 %if %{with fpm}
2136         --with-fpm-user=http \
2137         --with-fpm-group=http \
2138 %endif
2139 %if %{with mssql} || %{with sybase_ct}
2140         --with-pdo-dblib=shared \
2141 %endif
2142 %if %{with interbase} && %{without interbase_inst}
2143         --with-pdo-firebird=shared,/usr \
2144 %endif
2145         %{?with_mhash:--with-mhash=yes} \
2146         --with-mysql-sock=/var/lib/mysql/mysql.sock \
2147         --with-pdo-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2148         %{?with_oci8:--with-pdo-oci=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2149         %{?with_odbc:--with-pdo-odbc=shared,unixODBC,/usr} \
2150         %{?with_pgsql:--with-pdo-pgsql=shared} \
2151         %{?with_pdo_sqlite:--with-pdo-sqlite=shared,/usr} \
2152         --with-vpx-dir=/usr \
2153         --without-libexpat-dir \
2154         --enable-posix=shared \
2155         --enable-shared \
2156         --enable-session=shared \
2157         --enable-shmop=shared \
2158         --enable-simplexml=shared \
2159         --enable-sysvmsg=shared \
2160         --enable-sysvsem=shared \
2161         --enable-sysvshm=shared \
2162         --enable-soap=shared \
2163         --enable-sockets=shared \
2164         --enable-tokenizer=shared \
2165         %{?with_wddx:--enable-wddx=shared} \
2166         --enable-xml=shared \
2167         --enable-xmlreader=shared \
2168         --with-bz2=shared \
2169         %{__with_without curl curl shared} \
2170         --with-db4 \
2171         --with-iconv=shared \
2172         %{?with_enchant:--with-enchant=shared,/usr} \
2173         --with-freetype-dir=shared \
2174         --with-gettext=shared \
2175         --with-gd=shared%{?with_system_gd:,/usr} \
2176         --with-gdbm \
2177         --with-gmp=shared \
2178         %{?with_imap:--with-imap=shared --with-imap-ssl} \
2179         %{?with_interbase:--with-interbase=shared%{!?with_interbase_inst:,/usr}} \
2180         --with-jpeg-dir=/usr \
2181         %{?with_ldap:--with-ldap=shared --with-ldap-sasl} \
2182         --with-mcrypt=shared \
2183         %{?with_mm:--with-mm} \
2184         %{?with_mssql:--with-mssql=shared} \
2185         %{?with_mysqlnd:--with-mysqlnd=shared} \
2186         --with-mysql=shared%{?with_mysqlnd:,mysqlnd} \
2187         %{?with_mysqli:--with-mysqli=shared%{?with_mysqlnd:,mysqlnd}} \
2188         %{?with_oci8:--with-oci8=shared%{?with_instantclient:,instantclient,%{_libdir}}} \
2189         %{?with_openssl:--with-openssl=shared} \
2190         %{?with_kerberos5:--with-kerberos} \
2191         --with-tcadb=/usr \
2192         %{__with_without pcre pcre-regex /usr} \
2193         %{__enable_disable filter filter shared} \
2194         --with-pear=%{php_pear_dir} \
2195         %{__with_without pgsql pgsql shared,/usr} \
2196         %{__enable_disable phar phar shared} \
2197         --with-png-dir=/usr \
2198         %{?with_pspell:--with-pspell=shared} \
2199         --with-readline=shared \
2200         %{?with_recode:--with-recode=shared} \
2201         --with-regex=system \
2202         %{?with_snmp:--with-snmp=shared} \
2203         %{?with_sybase_ct:--with-sybase-ct=shared,/usr} \
2204         %{!?with_pdo_sqlite:--without-pdo-sqlite} \
2205         %{__with_without sqlite3 sqlite3 shared,/usr} \
2206         --with-t1lib=shared \
2207         %{?with_tidy:--with-tidy=shared} \
2208         %{?with_odbc:--with-unixODBC=shared,/usr} \
2209         %{__with_without xmlrpc xmlrpc shared,/usr} \
2210         --with-xsl=shared \
2211         --with-zlib=shared \
2212         --with-zlib-dir=shared,/usr \
2213         %{?with_system_libzip:--with-libzip} \
2214         --enable-zip=shared,/usr \
2215
2216         # save for debug
2217         cp -f Makefile Makefile.$sapi
2218         cp -f main/php_config.h php_config.h.$sapi
2219         cp -f config.log config.log.$sapi
2220 done
2221
2222 # as we build each SAPI in own make, adjust php-config.in forehead
2223 sapis=$(awk '/^PHP_SAPI = /{print $3}' Makefile.* | sort -u | xargs)
2224 sed -i -e "s,@PHP_INSTALLED_SAPIS@,$sapis," "scripts/php-config.in"
2225
2226 # must make libphp_common first, so modules can link against it.
2227 cp -af php_config.h.cli main/php_config.h
2228 cp -af Makefile.cli Makefile
2229 %{__make} libphp_common.la
2230 %{__make} build-modules
2231
2232 %if %{with apache1}
2233 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache/libphp5.la -f Makefile.apxs1
2234 %endif
2235
2236 %if %{with apache2}
2237 %{__make} libtool-sapi LIBTOOL_SAPI=sapi/apache2handler/libphp5.la -f Makefile.apxs2
2238 %endif
2239
2240 %if %{with litespeed}
2241 %{__make} -f Makefile.litespeed
2242 %endif
2243
2244 # CGI/FCGI
2245 %if %{with cgi}
2246 cp -pf php_config.h.cgi-fcgi main/php_config.h
2247 %{__make} -f Makefile.cgi-fcgi
2248 [ "$(echo '<?=php_sapi_name();' | ./sapi/cgi/php-cgi -qn)" = cgi-fcgi ] || exit 1
2249 %endif
2250
2251 # PHP FPM
2252 %if %{with fpm}
2253 cp -pf php_config.h.fpm main/php_config.h
2254 %{__make} -f Makefile.fpm
2255  ./sapi/fpm/php-fpm -qn -m > /dev/null
2256 %endif
2257
2258 # CLI
2259 cp -pf php_config.h.cli main/php_config.h
2260 %{__make} -f Makefile.cli
2261 [ "$(echo '<?=php_sapi_name();' | ./sapi/cli/php -qn)" = cli ] || exit 1
2262
2263 # check for stupid xml parse breakage where &lt; and &gt; just get lost in parse result
2264 ./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"]));'
2265
2266 # Generate stub .ini files for each extension
2267 rm -rf conf.d
2268 install -d conf.d
2269 generate_inifiles() {
2270         for so in modules/*.so; do
2271                 mod=$(basename $so .so)
2272                 conf="$mod.ini"
2273                 # xml needs to be loaded before wddx
2274                 [ "$mod" = "wddx" ] && conf="xml_$mod.ini"
2275                 # pre needs to be loaded before SPL
2276                 [ "$mod" = "pcre" ] && conf="PCRE.ini"
2277                 # spl needs to be loaded before mysqli
2278                 [ "$mod" = "spl" ] && conf="SPL.ini"
2279                 # session needs to be loaded before php-pecl-http, php-pecl-memcache, php-pecl-session_mysql
2280                 [ "$mod" = "session" ] && conf="Session.ini"
2281                 # mysqlnd needs to be loaded before mysql,mysqli,pdo_mysqli
2282                 [ "$mod" = "mysqlnd" ] && conf="MySQLND.ini"
2283                 echo "+ $conf"
2284                 cat > conf.d/$conf <<-EOF
2285                         ; Enable $mod extension module
2286                         extension=$mod.so
2287                 EOF
2288         done
2289 }
2290 generate_inifiles
2291
2292 # Check that the module inner-dependencies are intact
2293 PHP=./sapi/cli/php EXTENSION_DIR=modules CONFIG_DIR=conf.d ./dep-tests.sh > dep-tests.log
2294 if grep -v OK dep-tests.log; then
2295         echo >&2 "The results above were not expected"
2296         exit 1
2297 fi
2298
2299 %if %{with gcov}
2300 # Use CLI SAPI
2301 cp -pf php_config.h.cli main/php_config.h
2302 cp -pf Makefile.cli Makefile
2303 %{__make} lcov
2304 # you really don't want to package result of gcov build
2305 exit 1
2306 %endif
2307
2308 %if %{with tests}
2309 # Run tests, using the CLI SAPI
2310 cp -pf php_config.h.cli main/php_config.h
2311 cp -pf Makefile.cli Makefile
2312
2313 cat <<'EOF' > run-tests.sh
2314 #!/bin/sh
2315 export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
2316 unset TZ LANG LC_ALL || :
2317 %{__make} test \
2318         EXTENSION_DIR=modules \
2319         PHP_TEST_SHARED_SYSTEM_EXTENSIONS= \
2320         RUN_TESTS_SETTINGS="-q $*"
2321 EOF
2322 chmod +x run-tests.sh
2323 ./run-tests.sh -w failed.log -s test.log
2324
2325 # collect failed tests into cleanup script used in prep.
2326 sed -ne '/FAILED TEST SUMMARY/,/^===/p' test.log | sed -e '1,/^---/d;/^===/,$d' > tests-failed.log
2327 sed -ne '/\[.*\]/{s/\(.*\) \[\(.*\)\]/# \1\nmv \2{,.skip}/p}' tests-failed.log \
2328         >> %{_sourcedir}/skip-tests.sh
2329
2330 failed=$(wc -l < tests-failed.log)
2331 if [ "$failed" != 0 ]; then
2332         exit 1
2333 fi
2334 %endif
2335
2336 %install
2337 rm -rf $RPM_BUILD_ROOT
2338 install -d $RPM_BUILD_ROOT{%{_libdir}/{php,apache{,1}},%{_sysconfdir}/{apache,cgi}} \
2339         $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}} \
2340         $RPM_BUILD_ROOT/etc/{apache/conf.d,httpd/conf.d} \
2341         $RPM_BUILD_ROOT%{_mandir}/man{1,8} \
2342
2343 cp -pf php_config.h.cli main/php_config.h
2344 cp -pf Makefile.cli Makefile
2345 %{__make} install \
2346         INSTALL_ROOT=$RPM_BUILD_ROOT
2347
2348 # make link relative
2349 ln -sfn phar.phar $RPM_BUILD_ROOT%{_bindir}/phar
2350
2351 # install Apache1 DSO module
2352 %if %{with apache1}
2353 libtool --mode=install install -p sapi/apache/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache1
2354 %endif
2355
2356 # install Apache2 DSO module
2357 %if %{with apache2}
2358 libtool --mode=install install -p sapi/apache2handler/libphp5.la $RPM_BUILD_ROOT%{_libdir}/apache
2359 %endif
2360
2361 # install litespeed sapi
2362 %if %{with litespeed}
2363 libtool --mode=install install -p sapi/litespeed/php $RPM_BUILD_ROOT%{_sbindir}/php.litespeed
2364 %endif
2365
2366 libtool --mode=install install -p libphp_common.la $RPM_BUILD_ROOT%{_libdir}
2367
2368 # install CGI/FCGI
2369 %if %{with cgi}
2370 # install-cgi
2371 libtool --mode=install install -p sapi/cgi/php-cgi $RPM_BUILD_ROOT%{_bindir}/php.cgi
2372 ln -sf php.cgi $RPM_BUILD_ROOT%{_bindir}/php.fcgi
2373 cp -p %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/php-cgi-fcgi.ini
2374 %endif
2375
2376 # install FCGI PM
2377 %if %{with fpm}
2378 install -d $RPM_BUILD_ROOT{%{_sysconfdir}/fpm.d,%{_sbindir}}
2379 libtool --mode=install install -p sapi/fpm/php-fpm $RPM_BUILD_ROOT%{_sbindir}
2380 cp -p sapi/fpm/php-fpm.8 $RPM_BUILD_ROOT%{_mandir}/man8
2381 cp -p sapi/fpm/php-fpm.conf $RPM_BUILD_ROOT%{_sysconfdir}
2382 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
2383 install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/php-fpm
2384 install -d $RPM_BUILD_ROOT/etc/logrotate.d
2385 cp -p %{SOURCE11} $RPM_BUILD_ROOT/etc/logrotate.d/php-fpm
2386 %endif
2387
2388 # install Embedded API
2389 %if %{with embed}
2390 %{__make} -f Makefile.embed install-sapi INSTALL_ROOT=$RPM_BUILD_ROOT
2391 # we could use install-headers from Makefile.embed, but that would reinstall all headers
2392 install -d $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2393 cp -p sapi/embed/php_embed.h $RPM_BUILD_ROOT%{_includedir}/php/sapi/embed
2394 %endif
2395
2396 # install CLI
2397 libtool --mode=install install -p sapi/cli/php $RPM_BUILD_ROOT%{_bindir}/php.cli
2398 cp -p sapi/cli/php.1 $RPM_BUILD_ROOT%{_mandir}/man1/php.1
2399 echo ".so php.1" >$RPM_BUILD_ROOT%{_mandir}/man1/php.cli.1
2400 ln -sf php.cli $RPM_BUILD_ROOT%{_bindir}/php
2401
2402 sed -e 's#%{_prefix}/lib/php#%{_libdir}/php#g' php.ini > $RPM_BUILD_ROOT%{_sysconfdir}/php.ini
2403
2404 cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/php-cli.ini
2405 cp -p %{SOURCE9} $RPM_BUILD_ROOT%{_sysconfdir}/browscap.ini
2406
2407 %if %{with apache1}
2408 cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/apache/conf.d/70_mod_php.conf
2409 cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache.ini
2410 %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/apache1/libphp5.la
2411 %endif
2412
2413 %if %{with apache2}
2414 cp -p %{SOURCE2} $RPM_BUILD_ROOT/etc/httpd/conf.d/70_mod_php.conf
2415 cp -p %{SOURCE4} $RPM_BUILD_ROOT%{_sysconfdir}/php-apache2handler.ini
2416 %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/apache/libphp5.la
2417 %endif
2418
2419 install -d $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2420 cp -p conf.d/*.ini $RPM_BUILD_ROOT%{_sysconfdir}/conf.d
2421
2422 # per SAPI ini directories
2423 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{cgi-fcgi,cli,apache,apache2handler}.d
2424
2425 # for CLI SAPI only
2426 mv $RPM_BUILD_ROOT%{_sysconfdir}/{conf.d/readline.ini,cli.d}
2427
2428 # use system automake and {lib,sh}tool
2429 %if "%{pld_release}" != "ac"
2430         ln -snf /usr/share/automake/config.{guess,sub} $RPM_BUILD_ROOT%{_libdir}/php/build
2431         for i in libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4; do
2432                 ln -snf %{_aclocaldir}/${i} $RPM_BUILD_ROOT%{_libdir}/php/build
2433         done
2434         ln -snf %{_datadir}/libtool/config/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2435 %else
2436         ln -snf %{_aclocaldir}/libtool.m4 $RPM_BUILD_ROOT%{_libdir}/php/build
2437         ln -snf %{_datadir}/libtool/ltmain.sh $RPM_BUILD_ROOT%{_libdir}/php/build
2438 %endif
2439 ln -snf %{_bindir}/shtool $RPM_BUILD_ROOT%{_libdir}/php/build
2440
2441 # for php-pecl-mailparse
2442 install -d $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2443 cp -p ext/mbstring/libmbfl/mbfl/*.h $RPM_BUILD_ROOT%{_includedir}/php/ext/mbstring
2444
2445 # tests
2446 install -d $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2447 install -p run-tests.php $RPM_BUILD_ROOT%{php_data_dir}/tests/php/run-tests.php
2448 cp -a tests/* $RPM_BUILD_ROOT%{php_data_dir}/tests/php
2449
2450 # fix install paths, avoid evil rpaths
2451 sed -i -e "s|^libdir=.*|libdir='%{_libdir}'|" $RPM_BUILD_ROOT%{_libdir}/libphp_common.la
2452 %if %{with embed}
2453 # libphp5.la contains our buildroot in dependency_libs
2454 sed -i -e "/dependency_libs/ s,/[^ ]*/libs/libphp_common.la,%{_libdir}/libphp_common.la," $RPM_BUILD_ROOT%{_libdir}/libphp5.la
2455 %endif
2456 # better solution?
2457 sed -i -e 's|libphp_common.la|$(libdir)/libphp_common.la|' $RPM_BUILD_ROOT%{_libdir}/php/build/acinclude.m4
2458
2459 %clean
2460 rm -rf $RPM_BUILD_ROOT
2461
2462 %post -n apache1-mod_php
2463 if [ "$1" = "1" ]; then
2464         %service -q apache restart
2465 fi
2466
2467 %postun -n apache1-mod_php
2468 if [ "$1" = "0" ]; then
2469         %service -q apache restart
2470 fi
2471
2472 %post -n apache-mod_php
2473 if [ "$1" = "1" ]; then
2474         %service -q httpd restart
2475 fi
2476
2477 %postun -n apache-mod_php
2478 if [ "$1" = "0" ]; then
2479         %service -q httpd restart
2480 fi
2481
2482 %pre fpm
2483 %useradd -u 51 -r -s /bin/false -c "HTTP User" -g http http
2484
2485 %post fpm
2486 /sbin/chkconfig --add php-fpm
2487 %service php-fpm restart
2488
2489 %preun fpm
2490 if [ "$1" = 0 ]; then
2491         %service php-fpm stop
2492         /sbin/chkconfig --del php-fpm
2493 fi
2494
2495 %postun fpm
2496 if [ "$1" = "0" ]; then
2497         %userremove http
2498 fi
2499
2500 %post   embedded -p /sbin/ldconfig
2501 %postun embedded -p /sbin/ldconfig
2502
2503 %post common
2504 # PHP 5.3 requires timezone being setup, try setup it from tzdata
2505 if ! grep -q '^date.timezone[[:space:]]*=' %{_sysconfdir}/php.ini && [ -f /etc/sysconfig/timezone ]; then
2506         TIMEZONE=
2507         . /etc/sysconfig/timezone
2508         if [ "$TIMEZONE" ]; then
2509                 %{__sed} -i -e "s,^;date.timezone[[:space:]]*=.*,date.timezone = $TIMEZONE," %{_sysconfdir}/php.ini
2510         fi
2511 fi
2512
2513 %posttrans common
2514 # minimizing apache restarts logics. we restart webserver:
2515 #
2516 # 1. at the end of transaction. (posttrans, feature from rpm 4.4.2)
2517 # 2. first install of extension (post: $1 = 1)
2518 # 2. uninstall of extension (postun: $1 == 0)
2519 #
2520 # the strict internal deps between extensions (and apache modules) and
2521 # common package are very important for all this to work.
2522
2523 # restart webserver at the end of transaction
2524 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart
2525 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart
2526
2527 %if %{with apache1}
2528 %triggerpostun -n apache1-mod_php -- php < 4:5.0.4-9.11
2529 sed -i -e '
2530         /^AddType application\/x-httpd-php \.php/s,^,#,
2531         /^\(Add\|Load\)Module.*php5\.\(so\|c\)/d
2532 ' /etc/apache/apache.conf
2533 %service -q apache restart
2534 %endif
2535
2536 %if %{with apache2}
2537 %triggerpostun -n apache-mod_php -- php < 4:5.0.4-7.1
2538 # for fixed php-SAPI.ini, the poor php-apache.ini was never read for apache2
2539 if [ -f %{_sysconfdir}/php-apache.ini.rpmsave ]; then
2540         cp -f %{_sysconfdir}/php-apache2handler.ini{,.rpmnew}
2541         mv -f %{_sysconfdir}/php-apache.ini.rpmsave %{_sysconfdir}/php-apache2handler.ini
2542 fi
2543 %endif
2544
2545 # common macros called at extension post/postun scriptlet
2546 %define extension_scripts() \
2547 %post %1 \
2548 if [ "$1" = "1" ]; then \
2549         %php_webserver_restart \
2550 fi \
2551 \
2552 %postun %1 \
2553 if [ "$1" = "0" ]; then \
2554         %php_webserver_restart \
2555 fi
2556 %{nil}
2557
2558 # extension scripts defines
2559 %extension_scripts bcmath
2560 %extension_scripts bz2
2561 %extension_scripts calendar
2562 %extension_scripts ctype
2563 %extension_scripts curl
2564 %extension_scripts dba
2565 %extension_scripts dom
2566 %extension_scripts enchant
2567 %extension_scripts exif
2568 %extension_scripts fileinfo
2569 %extension_scripts filter
2570 %extension_scripts ftp
2571 %extension_scripts gd
2572 %extension_scripts gettext
2573 %extension_scripts gmp
2574 %extension_scripts hash
2575 %extension_scripts iconv
2576 %extension_scripts imap
2577 %extension_scripts interbase
2578 %extension_scripts intl
2579 %extension_scripts json
2580 %extension_scripts ldap
2581 %extension_scripts mbstring
2582 %extension_scripts mcrypt
2583 %extension_scripts mssql
2584 %extension_scripts mysql
2585 %extension_scripts mysqli
2586 %extension_scripts mysqlnd
2587 %extension_scripts oci8
2588 %extension_scripts odbc
2589 %extension_scripts openssl
2590 %extension_scripts pcre
2591 %extension_scripts pdo-dblib
2592 %extension_scripts pdo-firebird
2593 %extension_scripts pdo-mysql
2594 %extension_scripts pdo-odbc
2595 %extension_scripts pdo-pgsql
2596 %extension_scripts pdo-sqlite
2597 %extension_scripts pgsql
2598 %extension_scripts phar
2599 %extension_scripts posix
2600 %extension_scripts pspell
2601 %extension_scripts recode
2602 %extension_scripts session
2603 %extension_scripts shmop
2604 %extension_scripts snmp
2605 %extension_scripts soap
2606 %extension_scripts sockets
2607 %extension_scripts spl
2608 %extension_scripts sqlite3
2609 %extension_scripts sybase-ct
2610 %extension_scripts sysvmsg
2611 %extension_scripts sysvsem
2612 %extension_scripts sysvshm
2613 %extension_scripts tidy
2614 %extension_scripts tokenizer
2615 %extension_scripts wddx
2616 %extension_scripts xml
2617 %extension_scripts xmlreader
2618 %extension_scripts xmlrpc
2619 %extension_scripts xmlwriter
2620 %extension_scripts xsl
2621 %extension_scripts zip
2622 %extension_scripts zlib
2623
2624 %triggerun bcmath -- %{name}-bcmath < 4:5.0.4-9.1
2625 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*bcmath\.so/d' %{_sysconfdir}/php.ini
2626
2627 %triggerun calendar -- %{name}-calendar < 4:5.0.4-9.1
2628 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*calendar\.so/d' %{_sysconfdir}/php.ini
2629
2630 %triggerun ctype -- %{name}-ctype < 4:5.0.4-9.1
2631 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ctype\.so/d' %{_sysconfdir}/php.ini
2632
2633 %triggerun curl -- %{name}-curl < 4:5.0.4-9.1
2634 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*curl\.so/d' %{_sysconfdir}/php.ini
2635
2636 %triggerun dba -- %{name}-dba < 4:5.0.4-9.1
2637 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dba\.so/d' %{_sysconfdir}/php.ini
2638
2639 %triggerun dom -- %{name}-dom < 4:5.0.4-9.1
2640 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*dom\.so/d' %{_sysconfdir}/php.ini
2641
2642 %triggerun exif -- %{name}-exif < 4:5.0.4-9.1
2643 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*exif\.so/d' %{_sysconfdir}/php.ini
2644
2645 %triggerun ftp -- %{name}-ftp < 4:5.0.4-9.1
2646 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ftp\.so/d' %{_sysconfdir}/php.ini
2647
2648 %triggerun gd -- %{name}-gd < 4:5.0.4-9.1
2649 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gd\.so/d' %{_sysconfdir}/php.ini
2650
2651 %triggerun gettext -- %{name}-gettext < 4:5.0.4-9.1
2652 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gettext\.so/d' %{_sysconfdir}/php.ini
2653
2654 %triggerun gmp -- %{name}-gmp < 4:5.0.4-9.1
2655 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*gmp\.so/d' %{_sysconfdir}/php.ini
2656
2657 %triggerun iconv -- %{name}-iconv < 4:5.0.4-9.1
2658 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*iconv\.so/d' %{_sysconfdir}/php.ini
2659
2660 %triggerun imap -- %{name}-imap < 4:5.0.4-9.1
2661 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*imap\.so/d' %{_sysconfdir}/php.ini
2662
2663 %triggerun interbase -- %{name}-interbase < 4:5.0.4-9.1
2664 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*interbase\.so/d' %{_sysconfdir}/php.ini
2665
2666 %triggerun ldap -- %{name}-ldap < 4:5.0.4-9.1
2667 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*ldap\.so/d' %{_sysconfdir}/php.ini
2668
2669 %triggerun mbstring -- %{name}-mbstring < 4:5.0.4-9.1
2670 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mbstring\.so/d' %{_sysconfdir}/php.ini
2671
2672 %triggerun mcrypt -- %{name}-mcrypt < 4:5.0.4-9.1
2673 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mcrypt\.so/d' %{_sysconfdir}/php.ini
2674
2675 %triggerun mssql -- %{name}-mssql < 4:5.0.4-9.1
2676 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mssql\.so/d' %{_sysconfdir}/php.ini
2677
2678 %triggerun mysql -- %{name}-mysql < 4:5.0.4-9.1
2679 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysql\.so/d' %{_sysconfdir}/php.ini
2680
2681 %triggerun mysqli -- %{name}-mysqli < 4:5.0.4-9.1
2682 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*mysqli\.so/d' %{_sysconfdir}/php.ini
2683
2684 %triggerun oci8 -- %{name}-oci8 < 4:5.0.4-9.1
2685 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*oci8\.so/d' %{_sysconfdir}/php.ini
2686
2687 %triggerun odbc -- %{name}-odbc < 4:5.0.4-9.1
2688 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*odbc\.so/d' %{_sysconfdir}/php.ini
2689
2690 %triggerun openssl -- %{name}-openssl < 4:5.0.4-9.1
2691 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*openssl\.so/d' %{_sysconfdir}/php.ini
2692
2693 %triggerun pcntl -- %{name}-pcntl < 4:5.1.2-9.5
2694 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2695         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cgi.ini
2696 fi
2697 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2698         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcntl\.so/d' %{_sysconfdir}/php-cli.ini
2699 fi
2700
2701 %triggerun pcre -- %{name}-pcre < 4:5.0.4-9.1
2702 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pcre\.so/d' %{_sysconfdir}/php.ini
2703
2704 %triggerun pgsql -- %{name}-pgsql < 4:5.0.4-9.1
2705 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pgsql\.so/d' %{_sysconfdir}/php.ini
2706
2707 %triggerun posix -- %{name}-posix < 4:5.0.4-9.1
2708 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*posix\.so/d' %{_sysconfdir}/php.ini
2709
2710 %triggerun pspell -- %{name}-pspell < 4:5.0.4-9.1
2711 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*pspell\.so/d' %{_sysconfdir}/php.ini
2712
2713 %triggerun readline -- %{name}-readline < 4:5.1.2-9.5
2714 if [ -f %{_sysconfdir}/php-cgi.ini ]; then
2715         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cgi.ini
2716 fi
2717 if [ -f %{_sysconfdir}/php-cli.ini ]; then
2718         %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*readline\.so/d' %{_sysconfdir}/php-cli.ini
2719 fi
2720
2721 %triggerun recode -- %{name}-recode < 4:5.0.4-9.1
2722 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*recode\.so/d' %{_sysconfdir}/php.ini
2723
2724 %triggerun session -- %{name}-session < 4:5.0.4-9.1
2725 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*session\.so/d' %{_sysconfdir}/php.ini
2726
2727 %triggerun shmop -- %{name}-shmop < 4:5.0.4-9.1
2728 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*shmop\.so/d' %{_sysconfdir}/php.ini
2729
2730 %triggerun snmp -- %{name}-snmp < 4:5.0.4-9.1
2731 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*snmp\.so/d' %{_sysconfdir}/php.ini
2732
2733 %triggerun soap -- %{name}-soap < 4:5.0.4-9.1
2734 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*soap\.so/d' %{_sysconfdir}/php.ini
2735
2736 %triggerun sockets -- %{name}-sockets < 4:5.0.4-9.1
2737 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sockets\.so/d' %{_sysconfdir}/php.ini
2738
2739 %triggerun sybase-ct -- %{name}-sybase-ct < 4:5.0.4-9.1
2740 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sybase-ct\.so/d' %{_sysconfdir}/php.ini
2741
2742 %triggerun sysvmsg -- %{name}-sysvmsg < 4:5.0.4-9.1
2743 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvmsg\.so/d' %{_sysconfdir}/php.ini
2744
2745 %triggerun sysvsem -- %{name}-sysvsem < 4:5.0.4-9.1
2746 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvsem\.so/d' %{_sysconfdir}/php.ini
2747
2748 %triggerun sysvshm -- %{name}-sysvshm < 4:5.0.4-9.1
2749 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*sysvshm\.so/d' %{_sysconfdir}/php.ini
2750
2751 %triggerun tidy -- %{name}-tidy < 4:5.0.4-9.1
2752 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*tidy\.so/d' %{_sysconfdir}/php.ini
2753
2754 %triggerun wddx -- %{name}-wddx < 4:5.0.4-9.1
2755 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*wddx\.so/d' %{_sysconfdir}/php.ini
2756
2757 %triggerun xml -- %{name}-xml < 4:5.0.4-9.1
2758 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xml\.so/d' %{_sysconfdir}/php.ini
2759
2760 %triggerun xmlrpc -- %{name}-xmlrpc < 4:5.0.4-9.1
2761 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xmlrpc\.so/d' %{_sysconfdir}/php.ini
2762
2763 %triggerun xsl -- %{name}-xsl < 4:5.0.4-9.1
2764 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*xsl\.so/d' %{_sysconfdir}/php.ini
2765
2766 %triggerun zlib -- %{name}-zlib < 4:5.0.4-9.1
2767 %{__sed} -i -e '/^extension[[:space:]]*=[[:space:]]*zlib\.so/d' %{_sysconfdir}/php.ini
2768
2769 %if %{with apache1}
2770 %files -n apache1-mod_php
2771 %defattr(644,root,root,755)
2772 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/apache/conf.d/*_mod_php.conf
2773 %dir %{_sysconfdir}/apache.d
2774 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache.ini
2775 %attr(755,root,root) %{_libdir}/apache1/libphp5.so
2776 %endif
2777
2778 %if %{with apache2}
2779 %files -n apache-mod_php
2780 %defattr(644,root,root,755)
2781 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/httpd/conf.d/*_mod_php.conf
2782 %dir %{_sysconfdir}/apache2handler.d
2783 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-apache2handler.ini
2784 %attr(755,root,root) %{_libdir}/apache/libphp5.so
2785 %endif
2786
2787 %if %{with litespeed}
2788 %files litespeed
2789 %defattr(644,root,root,755)
2790 %attr(755,root,root) %{_sbindir}/php.litespeed
2791 %endif
2792
2793 %if %{with cgi}
2794 %files cgi
2795 %defattr(644,root,root,755)
2796 %dir %{_sysconfdir}/cgi-fcgi.d
2797 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cgi-fcgi.ini
2798 %attr(755,root,root) %{_bindir}/php.cgi
2799 %attr(755,root,root) %{_bindir}/php.fcgi
2800 %endif
2801
2802 %if %{with embed}
2803 %files embedded
2804 %defattr(644,root,root,755)
2805 %attr(755,root,root) %{_libdir}/libphp5-%{version}.so
2806 %endif
2807
2808 %files cli
2809 %defattr(644,root,root,755)
2810 %dir %{_sysconfdir}/cli.d
2811 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-cli.ini
2812 %attr(755,root,root) %{_bindir}/php.cli
2813 %{_mandir}/man1/php.1*
2814 %{_mandir}/man1/php.cli.1*
2815
2816 %files program
2817 %defattr(644,root,root,755)
2818 %attr(755,root,root) %{_bindir}/php
2819
2820 %if %{with fpm}
2821 %files fpm
2822 %defattr(644,root,root,755)
2823 %doc sapi/fpm/{CREDITS,LICENSE}
2824 %dir %{_sysconfdir}/fpm.d
2825 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php-fpm.conf
2826 %attr(755,root,root) %{_sbindir}/php-fpm
2827 %{_mandir}/man8/php-fpm.8*
2828 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/php-fpm
2829 %attr(754,root,root) /etc/rc.d/init.d/php-fpm
2830 %endif
2831
2832 %files common
2833 %defattr(644,root,root,755)
2834 %doc CREDITS EXTENSIONS LICENSE NEWS README.{PHP4-TO-PHP5-THIN-CHANGES,namespaces} UPGRADING* Zend/{LICENSE.Zend,ZEND_CHANGES} php.ini-*
2835 %dir %{_sysconfdir}
2836 %dir %{_sysconfdir}/conf.d
2837 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/php.ini
2838 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/browscap.ini
2839 %attr(755,root,root) %{_libdir}/libphp_common-*.so
2840 %dir %{php_extensiondir}
2841
2842 %doc ext/session/mod_files.sh
2843
2844 %files devel
2845 %defattr(644,root,root,755)
2846 %doc CODING_STANDARDS README.{EXTENSIONS,EXT_SKEL,PARAMETER_PARSING_API,SELF-CONTAINED-EXTENSIONS,STREAMS,SUBMITTING_PATCH,TESTING,TESTING2,UNIX-BUILD-SYSTEM,input_filter}
2847 %attr(755,root,root) %{_bindir}/phpize
2848 %attr(755,root,root) %{_bindir}/php-config
2849 %attr(755,root,root) %{_libdir}/libphp_common.so
2850 %{_libdir}/libphp_common.la
2851 %{_includedir}/php
2852 %{_libdir}/php/build
2853 %{_mandir}/man1/php-config.1*
2854 %{_mandir}/man1/phpize.1*
2855 %if %{with embed}
2856 # embedded
2857 %{_libdir}/libphp5.so
2858 %{_libdir}/libphp5.la
2859 %endif
2860
2861 %files bcmath
2862 %defattr(644,root,root,755)
2863 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bcmath.ini
2864 %attr(755,root,root) %{php_extensiondir}/bcmath.so
2865
2866 %files bz2
2867 %defattr(644,root,root,755)
2868 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/bz2.ini
2869 %attr(755,root,root) %{php_extensiondir}/bz2.so
2870
2871 %files calendar
2872 %defattr(644,root,root,755)
2873 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/calendar.ini
2874 %attr(755,root,root) %{php_extensiondir}/calendar.so
2875
2876 %files ctype
2877 %defattr(644,root,root,755)
2878 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ctype.ini
2879 %attr(755,root,root) %{php_extensiondir}/ctype.so
2880
2881 %if %{with curl}
2882 %files curl
2883 %defattr(644,root,root,755)
2884 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/curl.ini
2885 %attr(755,root,root) %{php_extensiondir}/curl.so
2886 %endif
2887
2888 %files dba
2889 %defattr(644,root,root,755)
2890 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dba.ini
2891 %attr(755,root,root) %{php_extensiondir}/dba.so
2892
2893 %files dom
2894 %defattr(644,root,root,755)
2895 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/dom.ini
2896 %attr(755,root,root) %{php_extensiondir}/dom.so
2897
2898 %files enchant
2899 %defattr(644,root,root,755)
2900 %doc ext/enchant/{CREDITS,docs/examples}
2901 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/enchant.ini
2902 %attr(755,root,root) %{php_extensiondir}/enchant.so
2903
2904 %files exif
2905 %defattr(644,root,root,755)
2906 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/exif.ini
2907 %attr(755,root,root) %{php_extensiondir}/exif.so
2908
2909 %files fileinfo
2910 %defattr(644,root,root,755)
2911 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/fileinfo.ini
2912 %attr(755,root,root) %{php_extensiondir}/fileinfo.so
2913
2914 %if %{with filter}
2915 %files filter
2916 %defattr(644,root,root,755)
2917 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/filter.ini
2918 %attr(755,root,root) %{php_extensiondir}/filter.so
2919 %endif
2920
2921 %files ftp
2922 %defattr(644,root,root,755)
2923 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ftp.ini
2924 %attr(755,root,root) %{php_extensiondir}/ftp.so
2925
2926 %files gd
2927 %defattr(644,root,root,755)
2928 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gd.ini
2929 %attr(755,root,root) %{php_extensiondir}/gd.so
2930
2931 %files gettext
2932 %defattr(644,root,root,755)
2933 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gettext.ini
2934 %attr(755,root,root) %{php_extensiondir}/gettext.so
2935
2936 %files gmp
2937 %defattr(644,root,root,755)
2938 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/gmp.ini
2939 %attr(755,root,root) %{php_extensiondir}/gmp.so
2940
2941 %files hash
2942 %defattr(644,root,root,755)
2943 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/hash.ini
2944 %attr(755,root,root) %{php_extensiondir}/hash.so
2945
2946 %files iconv
2947 %defattr(644,root,root,755)
2948 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/iconv.ini
2949 %attr(755,root,root) %{php_extensiondir}/iconv.so
2950
2951 %if %{with imap}
2952 %files imap
2953 %defattr(644,root,root,755)
2954 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/imap.ini
2955 %attr(755,root,root) %{php_extensiondir}/imap.so
2956 %endif
2957
2958 %if %{with interbase}
2959 %files interbase
2960 %defattr(644,root,root,755)
2961 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/interbase.ini
2962 %attr(755,root,root) %{php_extensiondir}/interbase.so
2963 %endif
2964
2965 %files intl
2966 %defattr(644,root,root,755)
2967 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/intl.ini
2968 %attr(755,root,root) %{php_extensiondir}/intl.so
2969
2970 %files json
2971 %defattr(644,root,root,755)
2972 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/json.ini
2973 %attr(755,root,root) %{php_extensiondir}/json.so
2974
2975 %if %{with ldap}
2976 %files ldap
2977 %defattr(644,root,root,755)
2978 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/ldap.ini
2979 %attr(755,root,root) %{php_extensiondir}/ldap.so
2980 %endif
2981
2982 %files mbstring
2983 %defattr(644,root,root,755)
2984 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mbstring.ini
2985 %attr(755,root,root) %{php_extensiondir}/mbstring.so
2986
2987 %files mcrypt
2988 %defattr(644,root,root,755)
2989 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mcrypt.ini
2990 %attr(755,root,root) %{php_extensiondir}/mcrypt.so
2991
2992 %if %{with mssql}
2993 %files mssql
2994 %defattr(644,root,root,755)
2995 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mssql.ini
2996 %attr(755,root,root) %{php_extensiondir}/mssql.so
2997 %endif
2998
2999 %files mysql
3000 %defattr(644,root,root,755)
3001 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysql.ini
3002 %attr(755,root,root) %{php_extensiondir}/mysql.so
3003
3004 %if %{with mysqli}
3005 %files mysqli
3006 %defattr(644,root,root,755)
3007 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/mysqli.ini
3008 %attr(755,root,root) %{php_extensiondir}/mysqli.so
3009 %endif
3010
3011 %if %{with mysqlnd}
3012 %files mysqlnd
3013 %defattr(644,root,root,755)
3014 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/MySQLND.ini
3015 %attr(755,root,root) %{php_extensiondir}/mysqlnd.so
3016 %endif
3017
3018 %if %{with oci8}
3019 %files oci8
3020 %defattr(644,root,root,755)
3021 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/oci8.ini
3022 %attr(755,root,root) %{php_extensiondir}/oci8.so
3023 %endif
3024
3025 %if %{with odbc}
3026 %files odbc
3027 %defattr(644,root,root,755)
3028 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/odbc.ini
3029 %attr(755,root,root) %{php_extensiondir}/odbc.so
3030 %endif
3031
3032 %if %{with openssl}
3033 %files openssl
3034 %defattr(644,root,root,755)
3035 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/openssl.ini
3036 %attr(755,root,root) %{php_extensiondir}/openssl.so
3037 %endif
3038
3039 %files pcntl
3040 %defattr(644,root,root,755)
3041 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pcntl.ini
3042 %attr(755,root,root) %{php_extensiondir}/pcntl.so
3043
3044 %if %{with pcre}
3045 %files pcre
3046 %defattr(644,root,root,755)
3047 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/PCRE.ini
3048 %attr(755,root,root) %{php_extensiondir}/pcre.so
3049 %endif
3050
3051 %files pdo
3052 %defattr(644,root,root,755)
3053 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo.ini
3054 %attr(755,root,root) %{php_extensiondir}/pdo.so
3055
3056 %if %{with mssql} || %{with sybase_ct}
3057 %files pdo-dblib
3058 %defattr(644,root,root,755)
3059 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_dblib.ini
3060 %attr(755,root,root) %{php_extensiondir}/pdo_dblib.so
3061 %endif
3062
3063 %if %{with interbase} && !%{with interbase_inst}
3064 %files pdo-firebird
3065 %defattr(644,root,root,755)
3066 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_firebird.ini
3067 %attr(755,root,root) %{php_extensiondir}/pdo_firebird.so
3068 %endif
3069
3070 %files pdo-mysql
3071 %defattr(644,root,root,755)
3072 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_mysql.ini
3073 %attr(755,root,root) %{php_extensiondir}/pdo_mysql.so
3074
3075 %if %{with oci8}
3076 %files pdo-oci
3077 %defattr(644,root,root,755)
3078 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_oci.ini
3079 %attr(755,root,root) %{php_extensiondir}/pdo_oci.so
3080 %endif
3081
3082 %if %{with odbc}
3083 %files pdo-odbc
3084 %defattr(644,root,root,755)
3085 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_odbc.ini
3086 %attr(755,root,root) %{php_extensiondir}/pdo_odbc.so
3087 %endif
3088
3089 %if %{with pgsql}
3090 %files pdo-pgsql
3091 %defattr(644,root,root,755)
3092 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_pgsql.ini
3093 %attr(755,root,root) %{php_extensiondir}/pdo_pgsql.so
3094 %endif
3095
3096 %if %{with pdo_sqlite}
3097 %files pdo-sqlite
3098 %defattr(644,root,root,755)
3099 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pdo_sqlite.ini
3100 %attr(755,root,root) %{php_extensiondir}/pdo_sqlite.so
3101 %endif
3102
3103 %if %{with pgsql}
3104 %files pgsql
3105 %defattr(644,root,root,755)
3106 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pgsql.ini
3107 %attr(755,root,root) %{php_extensiondir}/pgsql.so
3108 %endif
3109
3110 %if %{with phar}
3111 %files phar
3112 %defattr(644,root,root,755)
3113 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/phar.ini
3114 %attr(755,root,root) %{php_extensiondir}/phar.so
3115 %attr(755,root,root) %{_bindir}/phar
3116 %attr(755,root,root) %{_bindir}/phar.phar
3117 %endif
3118
3119 %files posix
3120 %defattr(644,root,root,755)
3121 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/posix.ini
3122 %attr(755,root,root) %{php_extensiondir}/posix.so
3123
3124 %if %{with pspell}
3125 %files pspell
3126 %defattr(644,root,root,755)
3127 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/pspell.ini
3128 %attr(755,root,root) %{php_extensiondir}/pspell.so
3129 %endif
3130
3131 %files readline
3132 %defattr(644,root,root,755)
3133 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/cli.d/readline.ini
3134 %attr(755,root,root) %{php_extensiondir}/readline.so
3135
3136 %if %{with recode}
3137 %files recode
3138 %defattr(644,root,root,755)
3139 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/recode.ini
3140 %attr(755,root,root) %{php_extensiondir}/recode.so
3141 %endif
3142
3143 %files session
3144 %defattr(644,root,root,755)
3145 %doc ext/session/mod_files.sh
3146 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/Session.ini
3147 %attr(755,root,root) %{php_extensiondir}/session.so
3148
3149 %files shmop
3150 %defattr(644,root,root,755)
3151 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/shmop.ini
3152 %attr(755,root,root) %{php_extensiondir}/shmop.so
3153
3154 %files simplexml
3155 %defattr(644,root,root,755)
3156 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/simplexml.ini
3157 %attr(755,root,root) %{php_extensiondir}/simplexml.so
3158
3159 %if %{with snmp}
3160 %files snmp
3161 %defattr(644,root,root,755)
3162 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/snmp.ini
3163 %attr(755,root,root) %{php_extensiondir}/snmp.so
3164 %endif
3165
3166 %files soap
3167 %defattr(644,root,root,755)
3168 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/soap.ini
3169 %attr(755,root,root) %{php_extensiondir}/soap.so
3170
3171 %files sockets
3172 %defattr(644,root,root,755)
3173 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sockets.ini
3174 %attr(755,root,root) %{php_extensiondir}/sockets.so
3175
3176 %files spl
3177 %defattr(644,root,root,755)
3178 %doc ext/spl/{CREDITS,README,TODO,examples}
3179 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/SPL.ini
3180 %attr(755,root,root) %{php_extensiondir}/spl.so
3181
3182 %if %{with sqlite3}
3183 %files sqlite3
3184 %defattr(644,root,root,755)
3185 %doc ext/sqlite3/CREDITS
3186 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sqlite3.ini
3187 %attr(755,root,root) %{php_extensiondir}/sqlite3.so
3188 %endif
3189
3190 %if %{with sybase_ct}
3191 %files sybase-ct
3192 %defattr(644,root,root,755)
3193 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sybase_ct.ini
3194 %attr(755,root,root) %{php_extensiondir}/sybase_ct.so
3195 %endif
3196
3197 %files sysvmsg
3198 %defattr(644,root,root,755)
3199 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvmsg.ini
3200 %attr(755,root,root) %{php_extensiondir}/sysvmsg.so
3201
3202 %files sysvsem
3203 %defattr(644,root,root,755)
3204 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvsem.ini
3205 %attr(755,root,root) %{php_extensiondir}/sysvsem.so
3206
3207 %files sysvshm
3208 %defattr(644,root,root,755)
3209 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/sysvshm.ini
3210 %attr(755,root,root) %{php_extensiondir}/sysvshm.so
3211
3212 %files tests
3213 %defattr(644,root,root,755)
3214 %dir %{php_data_dir}/tests/php
3215 %{php_data_dir}/tests/php/basic
3216 %{php_data_dir}/tests/php/classes
3217 %{php_data_dir}/tests/php/func
3218 %{php_data_dir}/tests/php/lang
3219 %{php_data_dir}/tests/php/output
3220 %{php_data_dir}/tests/php/run-test
3221 %{php_data_dir}/tests/php/security
3222 %{php_data_dir}/tests/php/strings
3223 %{php_data_dir}/tests/php/quicktester.inc
3224 %attr(755,root,root) %{php_data_dir}/tests/php/run-tests.php
3225
3226 %if %{with tidy}
3227 %files tidy
3228 %defattr(644,root,root,755)
3229 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tidy.ini
3230 %attr(755,root,root) %{php_extensiondir}/tidy.so
3231 %endif
3232
3233 %files tokenizer
3234 %defattr(644,root,root,755)
3235 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/tokenizer.ini
3236 %attr(755,root,root) %{php_extensiondir}/tokenizer.so
3237
3238 %if %{with wddx}
3239 %files wddx
3240 %defattr(644,root,root,755)
3241 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*wddx.ini
3242 %attr(755,root,root) %{php_extensiondir}/wddx.so
3243 %endif
3244
3245 %files xml
3246 %defattr(644,root,root,755)
3247 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xml.ini
3248 %attr(755,root,root) %{php_extensiondir}/xml.so
3249
3250 %files xmlreader
3251 %defattr(644,root,root,755)
3252 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlreader.ini
3253 %attr(755,root,root) %{php_extensiondir}/xmlreader.so
3254
3255 %if %{with xmlrpc}
3256 %files xmlrpc
3257 %defattr(644,root,root,755)
3258 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlrpc.ini
3259 %attr(755,root,root) %{php_extensiondir}/xmlrpc.so
3260 %endif
3261
3262 %files xmlwriter
3263 %defattr(644,root,root,755)
3264 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xmlwriter.ini
3265 %attr(755,root,root) %{php_extensiondir}/xmlwriter.so
3266
3267 %files xsl
3268 %defattr(644,root,root,755)
3269 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/xsl.ini
3270 %attr(755,root,root) %{php_extensiondir}/xsl.so
3271
3272 %files zip
3273 %defattr(644,root,root,755)
3274 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zip.ini
3275 %attr(755,root,root) %{php_extensiondir}/zip.so
3276
3277 %files zlib
3278 %defattr(644,root,root,755)
3279 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/zlib.ini
3280 %attr(755,root,root) %{php_extensiondir}/zlib.so
This page took 2.048544 seconds and 3 git commands to generate.