summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-09-03 15:26:16 +0200
committerRemi Collet <fedora@famillecollet.com>2012-09-03 15:26:16 +0200
commit2943b77be25deb1c7f49071fb112797dfd42812d (patch)
treed6fb1beedfed25818b6224df8db61c31dfa69e8e
rename php-gettext to php-php-gettext
-rw-r--r--Makefile4
-rw-r--r--php-gettext.spec49
2 files changed, 53 insertions, 0 deletions
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 <RPMS@FamilleCollet.com> 1.0.11-1
+- rebuild for remi repository
+
+* Sun Jul 31 2011 Robert Scheck <robert@fedoraproject.org> 1.0.11-1
+- Upgrade to 1.0.11
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.9-3
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Sun Dec 06 2009 David Nalley <david@gnsa.us> 1.0.9-2
+- corrected license field
+
+* Sun Dec 06 2009 David Nalley <david@gnsa.us> 1.0.9-1
+- Initial Packaging