]> git.pld-linux.org Git - packages/pound.git/blame - pound.spec
- BR: openssl-tools
[packages/pound.git] / pound.spec
CommitLineData
73807a5d 1Summary: Pound - reverse-proxy and load-balancer
7fbec31c 2Summary(pl.UTF-8): Pound - reverse-proxy i load-balancer
73807a5d 3Name: pound
fe6cfeb6
AM
4Version: 2.5
5Release: 1
73807a5d 6License: GPL
7Group: Networking/Daemons
73807a5d 8Source0: http://www.apsis.ch/pound/Pound-%{version}.tgz
fe6cfeb6 9# Source0-md5: 8a39f5902094619afcda7d12d9d8342c
487cceae
ER
10Patch0: %{name}-hash-UL.patch
11Patch1: %{name}-logfile.patch
12Patch2: %{name}-daemonize.patch
13Patch3: %{name}-log-notice.patch
14Patch4: %{name}-man.patch
fe6cfeb6 15Patch5: %{name}-openssl.patch
73807a5d 16Source1: %{name}.cfg
17Source2: %{name}.init
ef2dd428 18Source3: %{name}.sysconfig
6b1b2506 19Source4: %{name}.logrotate
73807a5d 20URL: http://www.apsis.ch/pound/
f8a55c4f 21BuildRequires: automake
18e83af5 22BuildRequires: openssl-devel >= 0.9.7d
335ccc63 23BuildRequires: openssl-tools
f8a55c4f 24BuildRequires: pcre-devel
5474a5a6 25BuildRequires: rpmbuild(macros) >= 1.202
6e57d9ed 26Requires(post,preun): /sbin/chkconfig
5474a5a6
ER
27Requires(postun): /usr/sbin/groupdel
28Requires(postun): /usr/sbin/userdel
29Requires(pre): /bin/id
30Requires(pre): /usr/bin/getgid
31Requires(pre): /usr/sbin/groupadd
32Requires(pre): /usr/sbin/useradd
767184e8 33Requires: pcre >= 7.8
2dbe9c52 34Requires: rc-scripts
5474a5a6
ER
35Provides: group(pound)
36Provides: user(pound)
6b1b2506 37Conflicts: logrotate < 3.7-4
73807a5d 38BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
39
9df600c4
ER
40%define _sysconfdir /etc/pound
41
73807a5d 42%description
43The Pound program is a reverse proxy, load balancer and HTTPS
44front-end for Web server(s). Pound was developped to enable
45distributing the load among several Web-servers and to allow for a
46convenient SSL wrapper for those Web servers that do not offer it
47natively. Pound is distributed under the GPL - no warranty, it's free
48to use, copy and give away.
49
ebd232a4 50%description -l pl.UTF-8
f8243939 51Program Pound jest odwrotnym proxy, load-balancerem i interfejsem
ebd232a4
JR
52HTTPS do serwera(ów) WWW. Pount został stworzony by pozwolić na
53rozdzielenie obciążenia na kilka serwerów WWW i pozwolić na wygodne
54opakowanie SSL-em tych serwerów, które same nie obsługują SSL. Pound
55jest rozpowszechniany na licencji GPL - bez gwarancji, z możliwością
56swobodnego używania, kopiowania i rozdawania.
f8243939 57
73807a5d 58%prep
fd0369ad 59%setup -q -n Pound-%{version}
9df600c4
ER
60%patch0 -p1
61%patch1 -p1
62%patch2 -p1
6b1b2506
ER
63%patch3 -p1
64%patch4 -p1
fe6cfeb6 65%patch5 -p1
73807a5d 66
67%build
f8a55c4f 68cp -f /usr/share/automake/config.sub .
9ea1ad0e 69%configure \
70 --with-maxbuf=2048
9df600c4 71%{__make}
73807a5d 72
73%install
74rm -rf $RPM_BUILD_ROOT
6b1b2506 75install -d $RPM_BUILD_ROOT{%{_sbindir},%{_mandir}/man8,%{_sysconfdir},/etc/{sysconfig,logrotate.d,rc.d/init.d}} \
9df600c4 76 $RPM_BUILD_ROOT{/var/log/{%{name},archive/%{name}},/var/run/%{name}}
73807a5d 77
49082852 78install pound $RPM_BUILD_ROOT%{_sbindir}
79install poundctl $RPM_BUILD_ROOT%{_sbindir}
80install pound.8 $RPM_BUILD_ROOT%{_mandir}/man8
81install poundctl.8 $RPM_BUILD_ROOT%{_mandir}/man8
9df600c4 82install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}
9a81a858 83install %{SOURCE2} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
ef2dd428 84install %{SOURCE3} $RPM_BUILD_ROOT/etc/sysconfig/%{name}
6b1b2506 85install %{SOURCE4} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
73807a5d 86
6e57d9ed
JB
87%clean
88rm -rf $RPM_BUILD_ROOT
89
5474a5a6
ER
90%pre
91%groupadd -g 200 %{name}
92%useradd -u 200 -d /var/lib/%{name} -g %{name} -c "Pound Daemon" %{name}
93
73807a5d 94%post
6b1b2506
ER
95for a in access.log pound.log; do
96 if [ ! -f /var/log/%{name}/$a ]; then
97 touch /var/log/%{name}/$a
98 chown pound:pound /var/log/%{name}/$a
99 chmod 644 /var/log/%{name}/$a
100 fi
101done
73807a5d 102/sbin/chkconfig --add %{name}
5474a5a6 103%service %{name} restart "Pound Daemon"
73807a5d 104
105%preun
cfc0cb59
ER
106if [ "$1" = "0" ]; then
107 %service %{name} stop
108 /sbin/chkconfig --del %{name}
73807a5d 109fi
73807a5d 110
5474a5a6
ER
111%postun
112if [ "$1" = "0" ]; then
113 %userremove %{name}
114 %groupremove %{name}
115fi
116
73807a5d 117%files
118%defattr(644,root,root,755)
35c6c398 119%doc README FAQ CHANGELOG z*.py
6b1b2506
ER
120%attr(755,root,root) %{_sbindir}/pound
121%attr(755,root,root) %{_sbindir}/poundctl
9df600c4
ER
122%dir %{_sysconfdir}
123%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pound.cfg
ef2dd428 124%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/%{name}
6b1b2506 125%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/logrotate.d/%{name}
9a81a858 126%attr(754,root,root) /etc/rc.d/init.d/%{name}
83dd8e4d 127%{_mandir}/man8/*
5474a5a6 128%dir /var/run/%{name}
9df600c4
ER
129%dir %attr(751,root,root) /var/log/%{name}
130%attr(750,root,root) %dir /var/log/archive/%{name}
This page took 0.048715 seconds and 4 git commands to generate.