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