diff options
Diffstat (limited to 'extra/apache/Pkgfile')
-rw-r--r-- | extra/apache/Pkgfile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/extra/apache/Pkgfile b/extra/apache/Pkgfile index 7036ce61d..a480203b9 100644 --- a/extra/apache/Pkgfile +++ b/extra/apache/Pkgfile @@ -6,24 +6,23 @@ # Run on: apr,sqlite3,libpostgresql name=apache -version=2.2.17 +version=2.2.20 release=1 source=(http://archive.apache.org/dist/httpd/httpd-$version.tar.bz2 \ - http://www.linuxfromscratch.org/patches/blfs/svn/httpd-2.2.15-config-1.patch - apache ) + http://www.linuxfromscratch.org/patches/blfs/svn/httpd-2.2.17-bdb51-1.patch \ + http://www.linuxfromscratch.org/patches/blfs/svn/httpd-2.2.17-config-1.patch ) build(){ source /etc/blfs-bootscripts wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2 tar xvf $scripts-$scriptsversion.tar.bz2 cd httpd-$version - patch -Np1 -i ../httpd-2.2.15-config-1.patch + patch -Np1 -i ../httpd-2.2.17-config-1.patch ./configure --enable-layout=FHS --enable-mods-shared=all make make DESTDIR=$PKG install mkdir -p $PKG/etc/ssl/{keys,certs} # Installation - install -D -m 755 $SRC/apache $PKG/etc/rc.d/apache chown -R root:root $PKG sed -i "s/^LoadModule isapi_module/# &/" \ $PKG/etc/apache/httpd.conf @@ -35,6 +34,5 @@ build(){ # Installation of the script cd ../$scripts-$scriptsversion make DESTDIR=$PKG install-apache - install -m755 ../apache $PKG/etc/rc.d/init.d/ } |