wok rev 24914

updated modsecurity-apache (2.9.3 -> 2.9.5)
author Hans-G?nter Theisgen
date Sat Apr 09 16:23:30 2022 +0100 (2022-04-09)
parents 2827ccaf9f63
children e45212bb7544
files modsecurity-apache/description.txt modsecurity-apache/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/modsecurity-apache/description.txt	Sat Apr 09 16:23:30 2022 +0100
     1.3 @@ -0,0 +1,7 @@
     1.4 +ModSecurity is an open source, cross platform web application firewall (WAF)
     1.5 +developed by Trustwave's SpiderLabs.
     1.6 +It has a robust event-based programming language which provides protection
     1.7 +from a range of attacks against web applications and allows for HTTP traffic
     1.8 +monitoring, logging and real-time analysis.
     1.9 +With over 10,000 deployments world-wide, ModSecurity is the most widely
    1.10 +deployed WAF in existence.
     2.1 --- a/modsecurity-apache/receipt	Sat Apr 09 15:53:04 2022 +0100
     2.2 +++ b/modsecurity-apache/receipt	Sat Apr 09 16:23:30 2022 +0100
     2.3 @@ -1,20 +1,21 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="modsecurity-apache"
     2.7 -VERSION="2.9.3"
     2.8 +VERSION="2.9.5"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="Web application firewall engine."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="Apache"
    2.13  WEB_SITE="https://www.modsecurity.org/"
    2.14 +REPOLOGY="modsecurity"
    2.15  
    2.16  SOURCE="modsecurity"
    2.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.18 -WGET_URL="${WEB_SITE}tarball/$VERSION/$TARBALL"
    2.19 +WGET_URL="https://github.com/SpiderLabs/ModSecurity/archive/refs/tags/v$VERSION.tar.gz"
    2.20  
    2.21  DEPENDS="apache apr apr-util curl libssl pcre util-linux-uuid zlib"
    2.22 -BUILD_DEPENDS="apache-dev apr-dev apr-util-dev curl-dev libxml2-dev \
    2.23 -	pcre-dev util-linux-uuid-dev"
    2.24 +BUILD_DEPENDS="apache-dev apr-dev apr-util-dev automake curl-dev libtool
    2.25 +	libxml2-dev pcre-dev util-linux-uuid-dev"
    2.26  
    2.27  # What is the latest version available today?
    2.28  current_version()
    2.29 @@ -26,13 +27,16 @@
    2.30  # Rules to configure and make the package.
    2.31  compile_rules()
    2.32  {
    2.33 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    2.34 -	make -j 1 &&
    2.35 -	make DESTDIR=$DESTDIR install
    2.36 +	./autogen.sh &&
    2.37 +	./configure		\
    2.38 +		--prefix=/usr	\
    2.39 +		$CONFIGURE_ARGS &&
    2.40 +	make &&
    2.41 +	make install DESTDIR=$DESTDIR
    2.42  }
    2.43  
    2.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.45  genpkg_rules()
    2.46  {
    2.47 -	cp -a $install/* $fs
    2.48 +	cp -a $install/*	$fs
    2.49  }