]> git.pld-linux.org Git - packages/php-pecl-haru.git/commitdiff
- new auto/th/php-pecl-haru-1_0_0-1
authorAdam Gołębiowski <adamg@pld-linux.org>
Sat, 27 Dec 2008 02:41:43 +0000 (02:41 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    php-pecl-haru-pathfix.patch -> 1.1
    php-pecl-haru.spec -> 1.1

php-pecl-haru-pathfix.patch [new file with mode: 0644]
php-pecl-haru.spec [new file with mode: 0644]

diff --git a/php-pecl-haru-pathfix.patch b/php-pecl-haru-pathfix.patch
new file mode 100644 (file)
index 0000000..f984703
--- /dev/null
@@ -0,0 +1,11 @@
+--- php-pecl-haru-1.0.0/config.m4~     2008-11-19 09:48:57.000000000 +0100
++++ php-pecl-haru-1.0.0/config.m4      2008-12-27 03:16:27.259726875 +0100
+@@ -19,7 +19,7 @@
+   SEARCH_FOR="include/hpdf.h"
+   if test "$PHP_HARU" = "yes"; then
+       AC_MSG_CHECKING([for Haru in default path])
+-    for i in "$SEARCH_PATH"; do
++    for i in $SEARCH_PATH; do
+       if test -r "$i/$SEARCH_FOR"; then
+         HARU_DIR="$i"
+         AC_MSG_RESULT(found in $i)
diff --git a/php-pecl-haru.spec b/php-pecl-haru.spec
new file mode 100644 (file)
index 0000000..ff0690c
--- /dev/null
@@ -0,0 +1,70 @@
+%define                _modname        haru
+%define                _status         stable
+Summary:       %{_modname} - Haru PDF functions
+Summary(pl.UTF-8):     %{_modname} - funkcje PDF haru
+Name:          php-pecl-%{_modname}
+Version:       1.0.0
+Release:       1
+License:       PHP
+Group:         Development/Languages/PHP
+Source0:       http://pecl.php.net/get/%{_modname}-%{version}.tgz
+# Source0-md5: 967b9cf8394432547ce850ef6a3fb375
+Patch0:                %{name}-pathfix.patch
+URL:           http://pecl.php.net/package/haru/
+BuildRequires: libharu-devel >= 2.0.8-2
+BuildRequires: php-devel >= 3:5.0.0
+BuildRequires: rpmbuild(macros) >= 1.344
+%{?requires_php_extension}
+Requires:      php-common >= 4:5.0.4
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This extensions allows you to create PDF documents using the Haru Free
+PDF Library.
+
+In PECL status of this extension is: %{_status}.
+
+%description -l pl.UTF-8
+Rozszerzenie to pozwala na tworzenie dokumentów PDF przy użyciu
+biblioteki Haru.
+
+To rozszerzenie ma w PECL status: %{_status}.
+
+%prep
+%setup -q -c
+mv %{_modname}-%{version}/* .
+%patch0 -p1
+
+%build
+phpize
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+
+%{__make} install \
+       INSTALL_ROOT=$RPM_BUILD_ROOT \
+       EXTENSION_DIR=%{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
+%php_webserver_restart
+
+%postun
+if [ "$1" = 0 ]; then
+       %php_webserver_restart
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc CREDITS
+%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/conf.d/%{_modname}.ini
+%attr(755,root,root) %{php_extensiondir}/%{_modname}.so
This page took 0.03853 seconds and 4 git commands to generate.