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