X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=php-pecl-sasl.spec;h=cc7c5c2346664f07f2568d1bd42fcad3c82eb749;hb=HEAD;hp=2c38b8ab48db37985d3d9f799b32c0336b8061e6;hpb=510a0212f2b346e22d6ae0c0ceaae5a1d8c45f2b;p=packages%2Fphp-pecl-sasl.git diff --git a/php-pecl-sasl.spec b/php-pecl-sasl.spec index 2c38b8a..cc7c5c2 100644 --- a/php-pecl-sasl.spec +++ b/php-pecl-sasl.spec @@ -1,28 +1,32 @@ -%define _modname sasl -%define _status alpha +# +# Conditional build: +%bcond_without tests # build without tests -Summary: %{_modname} - Cyrus SASL extension -Summary(pl): %{_modname} - rozszerzenie Cyrus SASL -Name: php-pecl-%{_modname} -Version: 0.1.0 -Release: 2 -License: PHP 2.02 +%define php_name php%{?php_suffix} +%define modname sasl +%define status alpha +Summary: %{modname} - Cyrus SASL extension +Summary(pl.UTF-8): %{modname} - rozszerzenie Cyrus SASL +Name: %{php_name}-pecl-%{modname} +Version: 0.2.0 +Release: 1 +License: PHP 3.01 Group: Development/Languages/PHP -Source0: http://pecl.php.net/get/%{_modname}-%{version}.tgz +Source0: http://pecl.php.net/get/%{modname}-0.1.0.tgz # Source0-md5: 8431731cc8a7921a2922af23a57a572f -Patch0: %{name}-lib_fix.patch -Patch1: %{name}-lib64_fix.patch +Patch99: prepatch.patch +Patch100: branch.diff +Patch1: php-pecl-%{modname}-lib64_fix.patch URL: http://pecl.php.net/package/sasl/ +BuildRequires: %{php_name}-devel >= 3:5.0.4 BuildRequires: cyrus-sasl-devel -BuildRequires: libtool -BuildRequires: php-devel -Requires: php-common -Obsoletes: php-pear-%{_modname} +BuildRequires: rpmbuild(macros) >= 1.650 +%{?with_tests:BuildRequires: %{php_name}-cli} +%{?requires_php_extension} +Provides: php(%{modname}) = %{version} +Obsoletes: php-pecl-sasl < 0.1.0-14 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) -%define _sysconfdir /etc/php -%define extensionsdir %{_libdir}/php - %description SASL is the Simple Authentication and Security Layer (as defined by RFC 2222). It provides a system for adding plugable authenticating @@ -33,45 +37,66 @@ greatest amount of implementation flexibility. To that end, it is possible to build both a client-side and server-side SASL implementation entirely in PHP. -In PECL status of this extension is: %{_status}. +In PECL status of this extension is: %{status}. -#%description -l pl -# -#To rozszerzenie ma w PECL status: %{_status}. +%description -l pl.UTF-8 +SASL to warstwa prostego uwierzytelnienia i bezpieczeństwa (Simple +Authentication and Security Layer) zdefiniowana w RFC 2222. Dostarcza +system do dodawania wtyczek obsługujących uwierzytelnianie do +protokołów opartych na połączeniach. Rozszerzenie SASL dla PHP +udostępnia w PHP funkcje biblioteki Cyrus SASL. Celem jest +dostarczenie obudowania 1-do-1 biblioteki SASL, aby udostępnić jak +największą elastyczność implementacji. W tym celu możliwe jest +zbudowanie zarówno klienckiej jak i serwerowej implementacji SASL +całkowicie w PHP. + +To rozszerzenie ma w PECL status: %{status}. %prep -%setup -q -c -# Ugly, could be done somehow prettier (one combined patch?) -%ifnarch amd64 -%patch0 -p1 -%else +%setup -qc +mv %{modname}-*/* . +%patch99 -p1 +%patch100 -p0 +%if "%{_lib}" == "lib64" %patch1 -p1 %endif %build -cd %{_modname}-%{version} phpize %configure %{__make} +%if %{with tests} +# simple module load test +%{__php} -n \ + -dextension_dir=modules \ + -dextension=%{modname}.so \ + -m > modules.log +grep %{modname} modules.log +%endif + %install rm -rf $RPM_BUILD_ROOT -install -d $RPM_BUILD_ROOT%{extensionsdir} - -install %{_modname}-%{version}/modules/%{_modname}.so $RPM_BUILD_ROOT%{extensionsdir} +install -d $RPM_BUILD_ROOT{%{php_sysconfdir}/conf.d,%{php_extensiondir}} +install -p modules/%{modname}.so $RPM_BUILD_ROOT%{php_extensiondir} +cat <<'EOF' > $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d/%{modname}.ini +; Enable %{modname} extension module +extension=%{modname}.so +EOF %clean rm -rf $RPM_BUILD_ROOT %post -%{_sbindir}/php-module-install install %{_modname} %{_sysconfdir}/php-cgi.ini +%php_webserver_restart -%preun -if [ "$1" = "0" ]; then - %{_sbindir}/php-module-install remove %{_modname} %{_sysconfdir}/php-cgi.ini +%postun +if [ "$1" = 0 ]; then + %php_webserver_restart fi %files %defattr(644,root,root,755) -%doc %{_modname}-%{version}/docs/TODO -%attr(755,root,root) %{extensionsdir}/%{_modname}.so +%doc docs/TODO docs/guide.txt +%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/conf.d/%{modname}.ini +%attr(755,root,root) %{php_extensiondir}/%{modname}.so