From 2943b77be25deb1c7f49071fb112797dfd42812d Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 3 Sep 2012 15:26:16 +0200 Subject: rename php-gettext to php-php-gettext --- Makefile | 4 ++++ php-gettext.spec | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 Makefile create mode 100644 php-gettext.spec diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e65467 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +SRCDIR := $(shell pwd) +NAME := $(shell basename $(SRCDIR)) +include ../common/Makefile + diff --git a/php-gettext.spec b/php-gettext.spec new file mode 100644 index 0000000..d02ef58 --- /dev/null +++ b/php-gettext.spec @@ -0,0 +1,49 @@ +Name: php-gettext +Version: 1.0.11 +Release: 1%{?dist} +License: GPLv2+ +Summary: Gettext emulation in PHP +Group: Development/Libraries +URL: https://launchpad.net/php-gettext +Source: http://launchpad.net/%{name}/trunk/%{version}/+download/%{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Requires: php-common +BuildArch: noarch + +%description +This library provides PHP functions to read MO files even when gettext is +not compiled in or when appropriate locale is not present on the system. + +%prep +%setup -q +chmod -x *.php +%build +%install +rm -rf %{buildroot} + +mkdir -p %{buildroot}%{_datadir}/php/%{name} +cp -a *.php gettext.inc %{buildroot}%{_datadir}/php/%{name} + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc README AUTHORS COPYING +%{_datadir}/php/%{name} + +%changelog +* Sun Aug 21 2011 Remi Collet 1.0.11-1 +- rebuild for remi repository + +* Sun Jul 31 2011 Robert Scheck 1.0.11-1 +- Upgrade to 1.0.11 + +* Wed Feb 09 2011 Fedora Release Engineering - 1.0.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Dec 06 2009 David Nalley 1.0.9-2 +- corrected license field + +* Sun Dec 06 2009 David Nalley 1.0.9-1 +- Initial Packaging -- cgit