]> git.pld-linux.org Git - packages/php-pecl-ncurses.git/commitdiff
- replaces old php-ncurses module auto/ti/php-pecl-ncurses-1_0_1-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sat, 30 Oct 2010 05:47:31 +0000 (05:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- added php52 patch to build correctly with php 5.2.x too

Changed files:
    php-pecl-ncurses-php52.patch -> 1.1
    php-pecl-ncurses.spec -> 1.1

php-pecl-ncurses-php52.patch [new file with mode: 0644]
php-pecl-ncurses.spec [new file with mode: 0644]

diff --git a/php-pecl-ncurses-php52.patch b/php-pecl-ncurses-php52.patch
new file mode 100644 (file)
index 0000000..ca1a36f
--- /dev/null
@@ -0,0 +1,11 @@
+--- ncurses-1.0.1/ncurses_fe.c.orig    1970-01-01 10:13:08.000000000 +0100
++++ ncurses-1.0.1/ncurses_fe.c 2010-10-30 07:34:35.511734339 +0200
+@@ -25,7 +25,7 @@
+ #include "php_ini.h"
+ #include "php_ncurses.h"
+-#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION > 2) || PHP_MAJOR_VERSION > 5
++#if (PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION >= 2) || PHP_MAJOR_VERSION > 5
+ # define NCURSES_ARGINFO
+ #else
+ # define NCURSES_ARGINFO static
diff --git a/php-pecl-ncurses.spec b/php-pecl-ncurses.spec
new file mode 100644 (file)
index 0000000..58f8829
--- /dev/null
@@ -0,0 +1,60 @@
+%define                _modname        ncurses
+%define                _status         stable
+Summary:       %{_modname} - Terminal screen handling and optimization package
+Summary(pl.UTF-8):     %{_modname} - pakiet obsługi i optymalizacji terminala
+Name:          php-pecl-%{_modname}
+Version:       1.0.1
+Release:       1
+License:       PHP 3.01
+Group:         Development/Languages/PHP
+Source0:       http://pecl.php.net/get/%{_modname}-%{version}.tgz
+# Source0-md5: a2ec4437449f9b36bf3cba7a59a37654
+Patch0:                %{name}-php52.patch
+URL:           http://pecl.php.net/package/ncurses/
+BuildRequires: ncurses-ext-devel
+BuildRequires: php-devel >= 3:5.0.0
+BuildRequires: rpmbuild(macros) >= 1.344
+%{?requires_php_extension}
+Requires:      php-common >= 4:5.0.4
+Obsoletes:     php-ncurses
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This module adds support for ncurses functions (only for cli SAPI).
+
+In PECL status of this extension is: %{_status}.
+
+%description -l pl.UTF-8
+Ten moduł dodaje obsługę funkcji ncurses (tylko do SAPI cli).
+
+To rozszerzenie ma w PECL status: %{_status}.
+
+%prep
+%setup -q -c
+%patch -p0
+
+%build
+cd %{_modname}-%{version}
+phpize
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/cli.d
+
+%{__make} -C %{_modname}-%{version} install \
+       INSTALL_ROOT=$RPM_BUILD_ROOT \
+       EXTENSION_DIR=%{php_extensiondir}
+cat <<'EOF' > $RPM_BUILD_ROOT%{php_sysconfdir}/cli.d/%{_modname}.ini
+; Enable %{_modname} extension module
+extension=%{_modname}.so
+EOF
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/cli.d/%{_modname}.ini
+%attr(755,root,root) %{php_extensiondir}/%{_modname}.so
This page took 0.141437 seconds and 4 git commands to generate.