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