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