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