]> git.pld-linux.org Git - packages/boa.git/commitdiff
- 0.9.4
authorPaweł Gołaszewski <blues@pld-linux.org>
Mon, 30 Jul 2001 12:15:52 +0000 (12:15 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- ac 2.5 ready (autoconf to BuildRequires added)
NFY - misiek, look at that...

Changed files:
    boa.spec -> 1.37

boa.spec

index 19f398971b51abc3033232667e1d5440c038e468..473a987478fc1e122f2b8039361b5470f2c4b1d8 100644 (file)
--- a/boa.spec
+++ b/boa.spec
@@ -1,7 +1,7 @@
 Summary:       Boa high speed HTTP server
 Summary(pl):   Boa - szybki serwer HTTP
 Name:          boa
-Version:       0.94.8.3
+Version:       0.94.9
 Release:       2
 License:       GPL
 Group:         Networking/Daemons
@@ -19,6 +19,7 @@ Prereq:               %{_sbindir}/useradd
 Prereq:                %{_sbindir}/userdel
 BuildRequires: flex
 BuildRequires: sgml-tools
+BuildRequires: autoconf
 Prereq:                rc-scripts
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 Obsoletes:     apache
@@ -45,6 +46,7 @@ systemowych.
 %build
 cd src
 CFLAGS="%{rpmcflags} -DINET6"
+autoconf
 %configure
 %{__make}
 (cd ../docs; make boa.html )
@@ -79,6 +81,7 @@ if [ -n "`getgid http`" ]; then
                 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
@@ -87,13 +90,16 @@ if [ -n "`id -u http 2>/dev/null`" ]; then
                 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
+       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
 
This page took 0.060206 seconds and 4 git commands to generate.