]> git.pld-linux.org Git - packages/boa.git/blobdiff - boa.spec
- patch for 0.94.12pre1
[packages/boa.git] / boa.spec
index f4e820266252f4b206db7e92f44908e9f417e287..fff40e61636e0b6e22dc7944b2d1c04f3555fe74 100644 (file)
--- a/boa.spec
+++ b/boa.spec
@@ -1,12 +1,12 @@
 Summary:       Boa high speed HTTP server
 Summary(pl):   Boa - szybki serwer HTTP
 Name:          boa
-Version:       0.94.8.2
-Release:       1
+Version:       0.94.9
+Release:       2
 License:       GPL
 Group:         Networking/Daemons
-Group(pl):     Sieciowe/Serwery
 Group(de):     Netzwerkwesen/Server
+Group(pl):     Sieciowe/Serwery
 Source0:       http://www.boa.org/%{name}-%{version}.tar.gz
 Source1:       %{name}.init
 Patch0:                %{name}-PLD.patch
@@ -17,12 +17,16 @@ Prereq:             %{_sbindir}/groupadd
 Prereq:                %{_sbindir}/groupdel
 Prereq:                %{_sbindir}/useradd
 Prereq:                %{_sbindir}/userdel
+Prereq:                rc-scripts
+Prereq:                /sbin/chkconfig
 BuildRequires: flex
-Requires:      rc-scripts
+BuildRequires: sgml-tools
+BuildRequires: autoconf
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
-%define                _sysconfdir     /etc/httpd
 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
@@ -42,7 +46,8 @@ systemowych.
 
 %build
 cd src
-CFLAGS="$RPM_OPT_FLAGS -DINET6"
+CFLAGS="%{rpmcflags} -DINET6"
+autoconf
 %configure
 %{__make}
 (cd ../docs; make boa.html )
@@ -65,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.069466 seconds and 4 git commands to generate.