# HG changeset patch # User Hans-G?nter Theisgen # Date 1649517810 -3600 # Node ID 526dda97861f66faacd0f39f3ceca9af7748b516 # Parent 2827ccaf9f6389f40a66a6e2c31090403e0ba05a updated modsecurity-apache (2.9.3 -> 2.9.5) diff -r 2827ccaf9f63 -r 526dda97861f modsecurity-apache/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modsecurity-apache/description.txt Sat Apr 09 16:23:30 2022 +0100 @@ -0,0 +1,7 @@ +ModSecurity is an open source, cross platform web application firewall (WAF) +developed by Trustwave's SpiderLabs. +It has a robust event-based programming language which provides protection +from a range of attacks against web applications and allows for HTTP traffic +monitoring, logging and real-time analysis. +With over 10,000 deployments world-wide, ModSecurity is the most widely +deployed WAF in existence. diff -r 2827ccaf9f63 -r 526dda97861f modsecurity-apache/receipt --- a/modsecurity-apache/receipt Sat Apr 09 15:53:04 2022 +0100 +++ b/modsecurity-apache/receipt Sat Apr 09 16:23:30 2022 +0100 @@ -1,20 +1,21 @@ # SliTaz package receipt. PACKAGE="modsecurity-apache" -VERSION="2.9.3" +VERSION="2.9.5" CATEGORY="network" SHORT_DESC="Web application firewall engine." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="Apache" WEB_SITE="https://www.modsecurity.org/" +REPOLOGY="modsecurity" SOURCE="modsecurity" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="${WEB_SITE}tarball/$VERSION/$TARBALL" +WGET_URL="https://github.com/SpiderLabs/ModSecurity/archive/refs/tags/v$VERSION.tar.gz" DEPENDS="apache apr apr-util curl libssl pcre util-linux-uuid zlib" -BUILD_DEPENDS="apache-dev apr-dev apr-util-dev curl-dev libxml2-dev \ - pcre-dev util-linux-uuid-dev" +BUILD_DEPENDS="apache-dev apr-dev apr-util-dev automake curl-dev libtool + libxml2-dev pcre-dev util-linux-uuid-dev" # What is the latest version available today? current_version() @@ -26,13 +27,16 @@ # Rules to configure and make the package. compile_rules() { - ./configure --prefix=/usr $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + ./autogen.sh && + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs + cp -a $install/* $fs }