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