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