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