Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
php5
:
extensions
>
php5-pdflib
> Changes
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
Changes of Revision 3
[-]
[+]
Added
php5-pdflib.spec
@@ -0,0 +1,76 @@ +# norootforbuild +%define pkg_name pdflib +%define pkg_version 2.1.4 +%define php_version %(php-config --version 2>/dev/null) +# +Name: php5-pdflib +Version: %{pkg_version} +Release: 0 +# +License: PHP +Group: Productivity/Networking/Web/Servers +# +BuildRoot: %{_tmppath}/%{pkg_name}-%{version}-build +BuildRequires: php5-devel PDFlib-Lite-devel gcc gcc-c++ +Requires: php5 = %{php_version} +# +URL: http://pecl.php.net/ +Source: http://pecl.php.net/package/%{pkg_name}/%{pkg_name}-%{version}.tgz +#make sure the extension understands lib64, most dont. +Patch0: php5-pdflib-lib64.patch +Summary: Creating PDF on the fly with the PDFlib library + +%description + + +Authors: +--------- + + Rainer Schaaf <rjs@pdflib.com> + Uwe Steinmann <uwe@steinmann.cx> + +%debug_package + +%prep +%setup -n %{pkg_name}-%{version} +%patch0 + +%{__mkdir} %{name} + +%build +/usr/bin/phpize +pushd %{name} + +CFLAGS="%{optflags} -fno-strict-aliasing" +CXXFLAGS="%{optflags} -fno-strict-aliasing" +%if 0%{?suse_version} > 1000 +CFLAGS="$CFLAGS -fstack-protector" +CXXFLAGS="$CXXFLAGS -fstack-protector" +%endif + +export CFLAGS +export CXXFLAGS + +../configure --with-pdflib=%{_usr} --with-libdir=%{_lib} + +%{__make} %{?jobs:-j%jobs} +popd + +%install +%makeinstall -C %{name} INSTALL_ROOT=%{buildroot} +%{__mkdir} -p %{buildroot}%{_sysconfdir}/php5/conf.d +echo "; comment out next line to disable pdf extension in php" > %{buildroot}%{_sysconfdir}/php5/conf.d/pdf.ini +echo "extension = pdf.so" >> %{buildroot}%{_sysconfdir}/php5/conf.d/pdf.ini + + +%clean +%{__rm} -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%{_libdir}/php5/extensions/pdf.so +%config(noreplace) %{_sysconfdir}/php5/conf.d/pdf.ini + +%doc CREDITS + +%changelog