Changes of Revision 3
[-] | Added | php5-pam.spec |
x 1
2 +# norootforbuild 3 +%define pkg_name pam 4 +%define php_version %(php-config --version 2>/dev/null || echo PHPCONFIG_NOT_FOUND) 5 +# 6 +Name: php5-pam 7 +Version: 1.0.2 8 +Release: 0 9 +# 10 +License: PHP 11 +Group: Productivity/Networking/Web/Servers 12 +# 13 +BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-build 14 +BuildRequires: php5-devel pam-devel 15 +Requires: php5 = %{php_version} 16 +# 17 +URL: http://pecl.php.net/pam 18 +Source: http://pecl.php.net/package/pam/%{pkg_name}-%{version}.tgz 19 +Summary: PHP PAM integration 20 +%description 21 + 22 +This extension provides PAM (Pluggable Authentication Modules) integration. 23 +PAM is a system of libraries that handle the authentication tasks of applications and services. 24 +The library provides a stable API for applications to defer to for authentication tasks. 25 + 26 +Authors: 27 +--------- 28 + Mikael Johansson 29 + 30 +%debug_package 31 +%prep 32 +%setup -q -n %{pkg_name}-%{version} 33 + 34 +%{__mkdir} %{name} 35 + 36 +%build 37 +/usr/bin/phpize 38 +pushd %{name} 39 + 40 +CFLAGS="%{optflags} -fno-strict-aliasing" 41 +CXXFLAGS="%{optflags} -fno-strict-aliasing" 42 +%if 0%{?suse_version} > 1000 43 +CFLAGS="$CFLAGS -fstack-protector" 44 +CXXFLAGS="$CXXFLAGS -fstack-protector" 45 +%endif 46 + 47 +export CFLAGS 48 +export CXXFLAGS 49 + 50 +../configure \ 51 +--with-pam=%{_usr} \ 52 +--with-libdir=%{_lib} 53 + 54 +%{__make} %{?jobs:-j%jobs} 55 +popd 56 + 57 +%install 58 +%makeinstall -C %{name} INSTALL_ROOT=%{buildroot} 59 +%{__mkdir} -p %{buildroot}%{_sysconfdir}/php5/conf.d 60 +echo "; comment out next line to disable pam extension in php" > %{buildroot}%{_sysconfdir}/php5/conf.d/pam.ini 61 +echo 'extension = pam.so' >> %{buildroot}%{_sysconfdir}/php5/conf.d/pam.ini 62 + 63 + 64 +%clean 65 +%{__rm} -rf %{buildroot} 66 + 67 +%files 68 +%defattr(-,root,root,-) 69 +%{_libdir}/php5/extensions/pam.so 70 +%config(noreplace) %{_sysconfdir}/php5/conf.d/pam.ini 71 + 72 +%doc CREDITS README 73 + 74 +%changelog -n php5-pam 75 +* Thu Nov 16 2006 - soporte@onfocus.cl 76 +- very first build 77 |