source: projects/specs/tags/6_0_REL/m/mod_gzip/mod_gzip-vl.spec @ 521

Revision 521, 1.9 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Summary: an Internet Content Accelerator module for Apache
2Name: mod_gzip
3Version: 1.3.26.1a
4Release: 0vl2
5License: Apache Software License
6Group: System Environment/Daemons
7URL: http://sourceforge.net/projects/mod-gzip/
8Source0: http://keihanna.dl.sourceforge.net/sourceforge/mod-gzip/%{name}-%{version}.tgz
9PreReq: apache-devel < 2
10BuildPreReq: apache-devel
11Buildroot: %{_tmppath}/%{name}-%{version}-root
12Vendor: Project Vine
13Distribution: Vine Linux
14
15%description
16mod_gzip is an Internet Content Acceleration module for the popular
17Apache Web Server.
18
19mod_gzip does NOT require ANY 'extra' software to be installed on the
20Client side. There is no 'Plug-in' or 'Client Proxy' of any kind. All
21you need is your current HTTP 1.1 compliant browser. All modern
22browsers released sinced early 1999 are already capable of receiving
23compressed Internet content via standard IETF Content Encoding if they
24are HTTP 1.1 compliant.
25
26%prep
27%setup -q
28
29%build
30make APXS=/usr/sbin/apxs
31
32%install
33rm -rf %{buildroot}
34mkdir -p %{buildroot}/usr/lib/apache
35install -s mod_gzip.so %{buildroot}/usr/lib/apache
36
37%clean
38rm -rf %{buildroot}
39
40%post
41/usr/sbin/apxs -e -S LIBEXECDIR=modules -a -n gzip mod_gzip.so 2> /dev/null
42
43%postun
44/usr/sbin/apxs -e -S LIBEXECDIR=modules -A -n gzip mod_gzip.so 2> /dev/null
45
46%files
47%defattr(-,root,root)
48%doc docs/manual docs/mod_gzip.conf.sample
49/usr/lib/apache/*
50
51%changelog
52* Wed May  5 2004 Nobuyuki Tsuchimura <tutimura@nn.iij4u.or.jp> 1.3.26.1a-0vl2
53- changed License to Apache Software License
54- added Apache version check (PreReq: apache-devel < 2)
55  (Apache 2 includes mod_deflate)
56
57* Tue May  4 2004 Nobuyuki Tsuchimura <tutimura@nn.iij4u.or.jp> 1.3.26.1a-0vl1
58- updated to 1.3.26.1a
59
60* Thu Sep 06 2001 Toru Sagami <sagami@vinelinux.org>
61- 1.3.19.1a-0vl2: was ported to VineSeedPlus with minor spec fixes
62
63* Thu Jun  7 2001 Nobuyuki Tsuchimura <tutimura@nn.iij4u.or.jp>
64- 1st release
Note: See TracBrowser for help on using the repository browser.