]> git.pld-linux.org Git - packages/boa.git/blobdiff - boa.spec
- patch for 0.94.12pre1
[packages/boa.git] / boa.spec
index 59b352c762ef0886981ddae76746b3fdf8bfdb73..fff40e61636e0b6e22dc7944b2d1c04f3555fe74 100644 (file)
--- a/boa.spec
+++ b/boa.spec
@@ -1,14 +1,15 @@
 Summary:       Boa high speed HTTP server
 Summary(pl):   Boa - szybki serwer HTTP
 Name:          boa
-Version:       0.94.6
-Release:       1
+Version:       0.94.9
+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:       boa.init
-Patch0:                boa-PLD.patch
+Source1:       %{name}.init
+Patch0:                %{name}-PLD.patch
 Provides:      httpd                                                           
 Provides:      webserver                                                       
 Prereq:                sh-utils
@@ -16,8 +17,13 @@ Prereq:              %{_sbindir}/groupadd
 Prereq:                %{_sbindir}/groupdel
 Prereq:                %{_sbindir}/useradd
 Prereq:                %{_sbindir}/userdel
-Requires:      rc-scripts
+Prereq:                rc-scripts
+Prereq:                /sbin/chkconfig
+BuildRequires: flex
+BuildRequires: sgml-tools
+BuildRequires: autoconf
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+Obsoletes:     apache
 
 %define                _sysconfdir     /etc/httpd
 
@@ -40,8 +46,10 @@ systemowych.
 
 %build
 cd src
+CFLAGS="%{rpmcflags} -DINET6"
+autoconf
 %configure
-make
+%{__make}
 (cd ../docs; make boa.html )
 
 %install
@@ -50,8 +58,7 @@ 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 -s src/boa $RPM_BUILD_ROOT%{_sbindir}
-install -s src/boa_indexer $RPM_BUILD_ROOT%{_sbindir}
+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
@@ -63,23 +70,47 @@ 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 $RPM_BUILD_ROOT%{_mandir}/man*/*
+gzip -9nf README
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %pre
-%{_sbindir}/groupadd -g 51 -f http > /dev/null 2>&1
-%{_sbindir}/useradd -u 51 -f http -g http > /dev/null 2>&1
+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
+       echo "Creating group http GID=51"
+        /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
+       echo "Creating user http UID=51"
+        /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}/groupdel http > /dev/null 2>&1
+       echo "Removing user http UID=51"
        %{_sbindir}/userdel http > /dev/null 2>&1
+       echo "Removing group http GID=51"
+       %{_sbindir}/groupdel http > /dev/null 2>&1
 fi
 
 %post
-/sbin/chkconfig -add %{name}
+/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
This page took 0.073112 seconds and 4 git commands to generate.