]> git.pld-linux.org Git - packages/apache-mod_gzip.git/blame - apache-mod_gzip.spec
- up to 2.1.0
[packages/apache-mod_gzip.git] / apache-mod_gzip.spec
CommitLineData
7dec7f39
PG
1%define mod_name gzip
2%define apxs /usr/sbin/apxs
3Summary: Apache module: On-the-fly compression of HTML documents
e58eb5a2 4Summary(pl.UTF-8): Moduł do apache: kompresuje dokumenty HTML w locie
7dec7f39 5Name: apache-mod_%{mod_name}
4f43cf11 6Version: 2.1.0
7dec7f39
PG
7Release: 0.1
8License: Apache
17f06578 9Group: Networking/Daemons/HTTP
cd589e65 10Source0: http://www.gknw.net/development/apache/httpd-2.0/unix/modules/mod_%{mod_name}-%{version}.tar.gz
4f43cf11 11# Source0-md5: 9011aa2dc4701c0301e6c608269f8835
7dec7f39
PG
12Source1: %{name}.conf
13Source2: %{name}.logrotate
cd589e65 14URL: http://www.gknw.net/development/apache/
d9ac8fcf 15BuildRequires: %{apxs}
7dec7f39 16BuildRequires: apache-devel >= 2.0.40
afcc8317 17BuildRequires: rpmbuild(macros) >= 1.268
7dec7f39 18BuildRequires: zlib-devel
5d8b93c0 19Requires: apache(modules-api) = %apache_modules_api
7dec7f39
PG
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%define _pkglibdir %(%{apxs} -q LIBEXECDIR 2>/dev/null)
23%define _sysconfdir %(%{apxs} -q SYSCONFDIR 2>/dev/null)
7dec7f39
PG
24
25%description
26Apache module: On-the-fly compression of HTML documents. Browser will
27transparently decompress and display such documents.
28
4326f310
JR
29%description -l pl.UTF-8
30Moduł do apache: kompresuje dokumenty HTML w locie. Przeglądarki w
31sposób przezroczysty dekompresują i wyświetlają takie dokumenty.
7dec7f39
PG
32
33%prep
4f43cf11 34%setup -q -n mod_%{mod_name}-%{version}
7dec7f39
PG
35
36%build
4f43cf11 37%{apxs} -c mod_%{mod_name}.c -o mod_%{mod_name}.la
7dec7f39
PG
38
39%install
40rm -rf $RPM_BUILD_ROOT
4f43cf11 41install -d $RPM_BUILD_ROOT{%{_pkglibdir},%{_sysconfdir}/httpd.conf,/etc/logrotate.d,/var/log/httpd}
7dec7f39 42
5d8b93c0 43install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/httpd.conf/90_mod_%{mod_name}.conf
7dec7f39
PG
44install %{SOURCE2} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
45
4f43cf11 46touch $RPM_BUILD_ROOT/var/log/httpd/mod_gzip_log
47
48install .libs/mod_%{mod_name}.so $RPM_BUILD_ROOT%{_pkglibdir}
7dec7f39
PG
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%post
afcc8317 54%service -q httpd restart
4f43cf11 55touch /var/log/httpd/mod_gzip_log && chown root:http /var/log/httpd/mod_gzip_log && chmod 620 /var/log/httpd/mod_gzip_log
7dec7f39
PG
56
57%postun
58if [ "$1" = "0" ]; then
afcc8317 59 %service -q httpd restart
7dec7f39
PG
60fi
61
62%files
63%defattr(644,root,root,755)
64%doc *.txt logos/*
5d8b93c0
ER
65%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/httpd.conf/*_mod_%{mod_name}.conf
66%attr(755,root,root) %{_pkglibdir}/*.so
7dec7f39 67%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/*
4f43cf11 68# append by webserver
69%attr(620,root,http) %ghost /var/log/httpd/mod_gzip_log
This page took 0.105977 seconds and 4 git commands to generate.