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