wok-current rev 25336
updated suricata (5.0.2 -> 6.0.6)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jul 23 17:54:01 2022 +0100 (2022-07-23) |
parents | 77f76ba66e45 |
children | b8412c979a49 |
files | suricata/description.txt suricata/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/suricata/description.txt Sat Jul 23 17:54:01 2022 +0100 1.3 @@ -0,0 +1,6 @@ 1.4 +Suricata is the leading independent open source threat 1.5 +detection engine. 1.6 +By combining intrusion detection (IDS), intrusion 1.7 +prevention (IPS), network security monitoring (NSM) and 1.8 +PCAP processing, Suricata can quickly identify, stop, 1.9 +and assess even the most sophisticated attacks.
2.1 --- a/suricata/receipt Sat Jul 23 17:39:36 2022 +0100 2.2 +++ b/suricata/receipt Sat Jul 23 17:54:01 2022 +0100 2.3 @@ -1,21 +1,22 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="suricata" 2.7 -VERSION="5.0.2" 2.8 +VERSION="6.0.6" 2.9 CATEGORY="security" 2.10 SHORT_DESC="Next Generation Intrusion Detection and Prevention Engine." 2.11 MAINTAINER="erjo@slitaz.org" 2.12 LICENSE="GPL2" 2.13 -WEB_SITE="https://suricata-ids.org/" 2.14 +WEB_SITE="https://suricata.io/" 2.15 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 WGET_URL="https://www.openinfosecfoundation.org/download/$TARBALL" 2.18 2.19 -DEPENDS="jansson libcap-ng libhtp libnetfilter_queue libnfnetlink 2.20 - libpcap pcre yaml lz4-lib" 2.21 -BUILD_DEPENDS="jansson-dev libcap-ng-dev libhtp-dev libmnl libnet-dev 2.22 - libnfnetlink-dev libnetfilter_queue libnetfilter_queue-dev 2.23 - libpcap-dev rust-cargo yaml-dev zlib-dev lz4-dev" 2.24 +DEPENDS="gcc83-lib-base jansson libatomic libcap-ng libhtp libnet 2.25 + libnetfilter_queue libnfnetlink libpcap lz4-lib pcre yaml" 2.26 +BUILD_DEPENDS="gcc83 jansson-dev libatomic libcap-ng-dev libhtp-dev libmnl 2.27 + libnet-dev libnetfilter_queue libnetfilter_queue-dev 2.28 + libnfnetlink-dev libpcap-dev lz4-dev rust-cargo yaml-dev 2.29 + zlib-dev" 2.30 2.31 # What is the latest version available today? 2.32 current_version() 2.33 @@ -28,11 +29,13 @@ 2.34 compile_rules() 2.35 { 2.36 rm -f config.h 2.37 - 2.38 - ./configure $CONFIGURE_ARGS \ 2.39 + ./configure \ 2.40 + CC=gcc-83 \ 2.41 + CXX=g++-83 \ 2.42 --enable-non-bundled-htp \ 2.43 --enable-nfqueue \ 2.44 - --enable-af-packet && 2.45 + --enable-af-packet \ 2.46 + $CONFIGURE_ARGS && 2.47 make && 2.48 make install 2.49 } 2.50 @@ -40,6 +43,5 @@ 2.51 # Rules to gen a SliTaz package suitable for Tazpkg. 2.52 genpkg_rules() 2.53 { 2.54 - mkdir -p $fs/usr 2.55 - cp -a $install/usr/bin $fs/usr 2.56 + cook_copy_folders bin 2.57 }