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