]> git.pld-linux.org Git - packages/boa.git/blobdiff - boa.spec
- reverting last change: removing new macros from %p{re,ost}{,un}
[packages/boa.git] / boa.spec
index 50746cc9e4292402d30e0512c8b0b7371f4dc615..19f398971b51abc3033232667e1d5440c038e468 100644 (file)
--- a/boa.spec
+++ b/boa.spec
-Summary:     Boa high speed HTTP server
-Summary(pl): Boa - szyki serwer HTTP
-Name:        boa
-Version:     0.92
-Release:     1
-Copyright:   GPL
-Group:       Networking/Daemons
-Source:      %{name}-%{version}.tar.gz
-Patch:       PLD-boa.diff
-BuildRoot:     /tmp/%{name}-%{version}-root
+Summary:       Boa high speed HTTP server
+Summary(pl):   Boa - szybki serwer HTTP
+Name:          boa
+Version:       0.94.8.3
+Release:       2
+License:       GPL
+Group:         Networking/Daemons
+Group(de):     Netzwerkwesen/Server
+Group(pl):     Sieciowe/Serwery
+Source0:       http://www.boa.org/%{name}-%{version}.tar.gz
+Source1:       %{name}.init
+Patch0:                %{name}-PLD.patch
+Provides:      httpd                                                           
+Provides:      webserver                                                       
+Prereq:                sh-utils
+Prereq:                %{_sbindir}/groupadd
+Prereq:                %{_sbindir}/groupdel
+Prereq:                %{_sbindir}/useradd
+Prereq:                %{_sbindir}/userdel
+BuildRequires: flex
+BuildRequires: sgml-tools
+Prereq:                rc-scripts
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+Obsoletes:     apache
+
+%define                _sysconfdir     /etc/httpd
 
 %description
-A high speed, lightweight web server (HTTP protocol).
-Based on direct use of the select(2) system call, it internally multiplexes 
-all connections without forking, for maximum speed and minimum system 
+A high speed, lightweight web server (HTTP protocol). Based on direct
+use of the select(2) system call, it internally multiplexes all
+connections without forking, for maximum speed and minimum system
 resource use.
 
 %description -l pl
-Szybki serwer HTTP, byæ mo¿e alternatywa dla Apache HTTP Server.
-Nie korzystaj±cy z funkcji fork().
+Niezwykle szybki i wysoko wydajny serwer WWW (protokó³ HTTP). Bazuje
+na bezpo¶rednim u¿yciu funkcji systemowej select(2) dziêki czemu mo¿e
+obs³ugiwaæ wiele po³±czeñ równocze¶nie bez fork()owania co w efekcie
+znacznie zwiêksza szybko¶æ dzia³ania oraz zmniejsza zu¿ycie zasobów
+systemowych.
 
 %prep
 %setup -q
-%patch 
+%patch0 -p1
 
 %build
 cd src
-make
+CFLAGS="%{rpmcflags} -DINET6"
+%configure
+%{__make}
+(cd ../docs; make boa.html )
 
 %install
-install -d $RPM_BUILD_ROOT/home/httpd/{conf,logs,util,html}
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{/etc/rc.d/init.d/,/var/log/httpd} \
+       $RPM_BUILD_ROOT/home/httpd/{cgi-bin,html} \
+       $RPM_BUILD_ROOT{%{_sbindir},%{_sysconfdir}/conf,%{_mandir}/man8}
+
+install src/{boa,boa_indexer} $RPM_BUILD_ROOT%{_sbindir}
+
+install src/*.pl $RPM_BUILD_ROOT/home/httpd/cgi-bin
+install examples/resolver.pl $RPM_BUILD_ROOT/home/httpd/cgi-bin
+install        %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
 
-install -s src/boa $RPM_BUILD_ROOT/home/httpd/
+install boa.conf $RPM_BUILD_ROOT%{_sysconfdir}/%{name}.conf
 
-install conf/* $RPM_BUILD_ROOT/etc/httpd/conf/
-install docs/* $RPM_BUILD_ROOT/home/boa/docs/
-install util/* $RPM_BUILD_ROOT/home/boa/util/
+install docs/boa.8 $RPM_BUILD_ROOT%{_mandir}/man8/
+
+touch $RPM_BUILD_ROOT/var/log/httpd/{access_log,agent_log,error_log,referer_log}
+
+gzip -9nf README
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%pre
+if [ -n "`getgid http`" ]; then
+        if [ "`getgid http`" != "51" ]; then
+                echo "Warning:group http haven't gid=51. Correct this before install boa" 1>&2
+                exit 1
+        fi
+else
+        /usr/sbin/groupadd -g 51 -r -f http
+fi
+if [ -n "`id -u http 2>/dev/null`" ]; then
+        if [ "`id -u http`" != "51" ]; then
+                echo "Warning:user http haven't uid=51. Correct this before install boa" 1>&2
+                exit 1
+        fi
+else
+        /usr/sbin/useradd -u 51 -r -d /home/httpd -s /bin/false -c "HTTP User" -g http http 1>&2
+fi
+
+
+%postun
+if [ "$1" = "0" ]; then
+       %{_sbindir}/userdel http > /dev/null 2>&1
+       %{_sbindir}/groupdel http > /dev/null 2>&1
+fi
+
+%post
+/sbin/chkconfig --add %{name}
+
+if [ -f /var/lock/subsys/httpd ]; then
+        /etc/rc.d/init.d/httpd restart 1>&2
+else
+        echo "Run \"/etc/rc.d/init.d/boa start\" to start boa http daemon."
+fi
+
+
+%preun
+if [ "$1" = "0" ]; then
+        if [ -f /var/lock/subsys/boa ]; then
+                /etc/rc.d/init.d/boa stop 1>&2
+        fi
+        /sbin/chkconfig --del boa
+fi
+
 %files
 %defattr(644,root,root,755)
-%doc README docs
-%attr(750, http, www) %dir /etc/httpd/conf
-%attr(750, http, www) %config /etc/httpd/conf/*
-%attr(755, http, www) /home/httpd/util
-%attr(755, http, www) /home/httpd/html
-%attr(750, http, www) /var/log/httpd/
+%doc README.gz docs/*.html docs/*.png docs/boa.{ps,sgml}
+%attr(750, root,http) %dir %{_sysconfdir}
+%attr(640, root,http) %config %{_sysconfdir}/*
+%attr(755, root,http) /home/httpd/html
+%attr(755, root,http) /home/httpd/cgi-bin
+%attr(750, root,http) %dir /var/log/httpd/
+%attr(640, root,http) %ghost /var/log/httpd/*
+%attr(755, root,root) %{_sbindir}/*
+%attr(754, root,root) /etc/rc.d/init.d/%{name}
+%{_mandir}/man8/*
This page took 0.03158 seconds and 4 git commands to generate.